9 lines
174 B
TypeScript
9 lines
174 B
TypeScript
export const txOptsSchema = {
|
|
id: '/TxOpts',
|
|
properties: {
|
|
gasPrice: { $ref: '/Number' },
|
|
gasLimit: { type: 'number' },
|
|
},
|
|
type: 'object',
|
|
};
|