protocol/packages/website/ts/schemas/portal_token_metadata.ts
2018-02-08 18:14:52 +01:00

11 lines
277 B
TypeScript

export const portalTokenMetadataSchema = {
id: '/PortalTokenMetadata',
properties: {
name: { type: 'string' },
symbol: { type: 'string' },
decimals: { type: 'number' },
},
required: ['name', 'symbol', 'decimals'],
type: 'object',
};