aboutsummaryrefslogtreecommitdiffstats
path: root/packages/json-schemas/schemas/relayer_api_order_config_response_schema.ts
blob: 390d0b2621ac875a0ef3a359342dabe9d742b106 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
export const relayerApiOrderConfigResponseSchema = {
    id: '/relayerApiOrderConfigResponseSchema',
    type: 'object',
    properties: {
        makerFee: { $ref: '/numberSchema' },
        takerFee: { $ref: '/numberSchema' },
        feeRecipientAddress: { $ref: '/addressSchema' },
        senderAddress: { $ref: '/addressSchema' },
    },
    required: ['makerFee', 'takerFee', 'feeRecipientAddress', 'senderAddress'],
};