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