Interface EthereumOptions

interface EthereumOptions {
    abi?: InterfaceAbi | ContractAbi;
    address?: string;
    client?: Provider | Web3<RegisteredSubscription>;
    console?: Debugger;
    contract?: string;
    emitter?: EventEmitter<DefaultEventMap>;
    env?: string;
    lib?: "web3" | "ethers";
    phrases?: string[];
    private?: string;
    url?: string;
}

Hierarchy (view full)

Properties

abi?: InterfaceAbi | ContractAbi
address?: string
client?: Provider | Web3<RegisteredSubscription>
console?: Debugger
contract?: string
emitter?: EventEmitter<DefaultEventMap>
env?: string
lib?: "web3" | "ethers"
phrases?: string[]
private?: string
url?: string