UNPKG

@biconomy-devx/ethers-lib

Version:

Ethers library adapter to be used by Biconomy SDK

12 lines (11 loc) 426 B
import { ContractTransaction } from '@ethersproject/contracts'; import { IBaseTransactionResult } from '@biconomy-devx/core-types'; export interface IEthersTransactionOptions { from?: string; gasLimit?: number | string; gasPrice?: number | string; } export interface IEthersTransactionResult extends IBaseTransactionResult { transactionResponse: ContractTransaction; options?: IEthersTransactionOptions; }