blob: 34cd6f67610586109c1b849ba311ef4746cbf30d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
export const tokenSchema = {
id: '/Token',
properties: {
name: { type: 'string' },
symbol: { type: 'string' },
decimals: { type: 'number' },
},
required: ['name', 'symbol', 'decimals'],
type: 'object',
};
|