aboutsummaryrefslogtreecommitdiffstats
path: root/packages/json-schemas/schemas/token_schema.ts
blob: d2bb10f0908019766fbe05754a8ee8c27a76e9ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
export const tokenSchema = {
    id: '/Token',
    properties: {
        name: { type: 'string' },
        symbol: { type: 'string' },
        decimals: { type: 'number' },
        address: { $ref: '/Address' },
    },
    required: ['name', 'symbol', 'decimals', 'address'],
    type: 'object',
};