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