1 2 3 4 5 6 7 8 9 10 11 12
export const tokenSchema = { id: '/token', properties: { name: {type: 'string'}, symbol: {type: 'string'}, decimals: {type: 'number'}, address: {type: 'string'}, url: {type: 'string'}, }, required: ['name', 'symbol', 'decimals', 'address', 'url'], type: 'object', };