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