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