UNPKG

ethers-tools

Version:

Contains tools for work with web3 contracts.

10 lines (8 loc) 281 B
import { Interface, InterfaceAbi, Provider, Signer } from 'ethers'; import { ContractOptions } from '../entities'; export interface DynamicContractConstructorArgs { abi?: Interface | InterfaceAbi; address?: string; driver?: Provider | Signer; options?: ContractOptions; }