aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contract-wrappers/src/schemas/order_tx_opts_schema.ts
blob: 31ad759d5d8dc466d5f35927a47317292ae50a82 (plain) (blame)
1
2
3
4
5
6
7
8
export const orderTxOptsSchema = {
    id: '/OrderTxOpts',
    allOf: [{ $ref: '/TxOpts' }],
    properties: {
        shouldValidate: { type: 'boolean' },
    },
    type: 'object',
};