aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/schemas/portal_token_metadata.ts
blob: 0455c2ac105c6ae03067afbf9bd6394a153c93bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
export const portalTokenMetadataSchema = {
    id: '/PortalTokenMetadata',
    properties: {
        name: { type: 'string' },
        symbol: { type: 'string' },
        decimals: { type: 'number' },
    },
    required: ['name', 'symbol', 'decimals'],
    type: 'object',
};