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