UNPKG

ethers-tools

Version:

Contains tools for work with web3 contracts.

12 lines (10 loc) 279 B
import { Interface } from 'ethers'; import type { StateMutability } from './state-mutability'; export interface ContractCall { method: string; target: string; allowFailure: boolean; callData: string; stateMutability: StateMutability; contractInterface: Interface; }