utils.ts 207 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 import { BigNumber } from 'ethers' export const defaultTransactionFactory = () => { return { to: '0x' + '1234'.repeat(10), gasLimit: 8_000_000, data: '0x', value: BigNumber.from(0), } }