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