import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers"; import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener, TypedContractMethod } from "./common"; export interface ITestnetERC20TokenInterface extends Interface { getFunction(nameOrSignature: "decimals" | "mint"): FunctionFragment; encodeFunctionData(functionFragment: "decimals", values?: undefined): string; encodeFunctionData(functionFragment: "mint", values: [AddressLike, BigNumberish]): string; decodeFunctionResult(functionFragment: "decimals", data: BytesLike): Result; decodeFunctionResult(functionFragment: "mint", data: BytesLike): Result; } export interface ITestnetERC20Token extends BaseContract { connect(runner?: ContractRunner | null): ITestnetERC20Token; waitForDeployment(): Promise; interface: ITestnetERC20TokenInterface; queryFilter(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise>>; queryFilter(filter: TypedDeferredTopicFilter, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise>>; on(event: TCEvent, listener: TypedListener): Promise; on(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise; once(event: TCEvent, listener: TypedListener): Promise; once(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise; listeners(event: TCEvent): Promise>>; listeners(eventName?: string): Promise>; removeAllListeners(event?: TCEvent): Promise; decimals: TypedContractMethod<[], [bigint], "nonpayable">; mint: TypedContractMethod<[ _to: AddressLike, _amount: BigNumberish ], [ boolean ], "nonpayable">; getFunction(key: string | FunctionFragment): T; getFunction(nameOrSignature: "decimals"): TypedContractMethod<[], [bigint], "nonpayable">; getFunction(nameOrSignature: "mint"): TypedContractMethod<[ _to: AddressLike, _amount: BigNumberish ], [ boolean ], "nonpayable">; filters: {}; }