import type { BaseContract, BytesLike, FunctionFragment, Result, Interface, ContractRunner, ContractMethod, Listener } from "ethers"; import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener, TypedContractMethod } from "../../common"; export interface IHRCInterface extends Interface { getFunction(nameOrSignature: "associate" | "dissociate" | "isAssociated"): FunctionFragment; encodeFunctionData(functionFragment: "associate", values?: undefined): string; encodeFunctionData(functionFragment: "dissociate", values?: undefined): string; encodeFunctionData(functionFragment: "isAssociated", values?: undefined): string; decodeFunctionResult(functionFragment: "associate", data: BytesLike): Result; decodeFunctionResult(functionFragment: "dissociate", data: BytesLike): Result; decodeFunctionResult(functionFragment: "isAssociated", data: BytesLike): Result; } export interface IHRC extends BaseContract { connect(runner?: ContractRunner | null): IHRC; waitForDeployment(): Promise; interface: IHRCInterface; 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; associate: TypedContractMethod<[], [bigint], "nonpayable">; dissociate: TypedContractMethod<[], [bigint], "nonpayable">; isAssociated: TypedContractMethod<[], [boolean], "view">; getFunction(key: string | FunctionFragment): T; getFunction(nameOrSignature: "associate"): TypedContractMethod<[], [bigint], "nonpayable">; getFunction(nameOrSignature: "dissociate"): TypedContractMethod<[], [bigint], "nonpayable">; getFunction(nameOrSignature: "isAssociated"): TypedContractMethod<[], [boolean], "view">; filters: {}; }