ethers-tools
Version:
Contains tools for work with web3 contracts.
10 lines (8 loc) • 300 B
TypeScript
import { Interface, InterfaceAbi, Provider, Signer } from 'ethers';
import { Address, ContractOptions } from '../entities';
export interface DynamicContractConstructorArgs {
abi?: Interface | InterfaceAbi;
address?: string | Address;
driver?: Provider | Signer;
options?: ContractOptions;
}