Files
protocol/packages/contract-wrappers/src/schemas/order_tx_opts_schema.ts
2018-07-05 15:05:57 +02:00

9 lines
186 B
TypeScript

export const orderTxOptsSchema = {
id: '/OrderTxOpts',
allOf: [{ $ref: '/TxOpts' }],
properties: {
shouldValidate: { type: 'boolean' },
},
type: 'object',
};