aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/schemas/order_taker_schema.ts
blob: c784c29c5c346226332fd9b9db85f5429e7d45ed (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',
};