aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/schemas/order_taker_schema.ts
blob: bce71f74b6b5d0c4cf4411f0412dd90d9a5fc950 (plain) (blame)
1
2
3
4
5
6
7
8
9
export const orderTakerSchema = {
    id: '/OrderTaker',
    properties: {
        address: { type: 'string' },
        token: { $ref: '/Token' },
    },
    required: ['address', 'token'],
    type: 'object',
};