aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contract-wrappers/src/schemas/tx_opts_schema.ts
blob: bddc33b6c877432dc3402e2a4a684b001bda4073 (plain) (blame)
1
2
3
4
5
6
7
8
export const txOptsSchema = {
    id: '/TxOpts',
    properties: {
        gasPrice: { $ref: '/Number' },
        gasLimit: { type: 'number' },
    },
    type: 'object',
};