aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/schemas/token_schema.ts
blob: c15f57429b73c26328ca44ca82e89676cbfc56b7 (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: {type: 'string'},
    },
    required: ['name', 'symbol', 'decimals', 'address'],
    type: 'object',
};