import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, ContractRunner, ContractMethod, Listener } from "ethers"; import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener, TypedContractMethod } from "../common"; export interface IAddressReaderInterface extends Interface { getFunction(nameOrSignature: "getAddress" | "getAddressKey" | "getAddressKeys"): FunctionFragment; encodeFunctionData(functionFragment: "getAddress", values: [string, string, BigNumberish]): string; encodeFunctionData(functionFragment: "getAddressKey", values: [string, string, BigNumberish]): string; encodeFunctionData(functionFragment: "getAddressKeys", values: [string, string]): string; decodeFunctionResult(functionFragment: "getAddress", data: BytesLike): Result; decodeFunctionResult(functionFragment: "getAddressKey", data: BytesLike): Result; decodeFunctionResult(functionFragment: "getAddressKeys", data: BytesLike): Result; } export interface IAddressReader extends BaseContract { connect(runner?: ContractRunner | null): IAddressReader; waitForDeployment(): Promise; interface: IAddressReaderInterface; 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; getAddress: TypedContractMethod<[ network: string, token: string, tokenId: BigNumberish ], [ string ], "view">; getAddressKey: TypedContractMethod<[ network: string, token: string, tokenId: BigNumberish ], [ string ], "view">; getAddressKeys: TypedContractMethod<[ network: string, token: string ], [ string[] ], "view">; getFunction(key: string | FunctionFragment): T; getFunction(nameOrSignature: "getAddress"): TypedContractMethod<[ network: string, token: string, tokenId: BigNumberish ], [ string ], "view">; getFunction(nameOrSignature: "getAddressKey"): TypedContractMethod<[ network: string, token: string, tokenId: BigNumberish ], [ string ], "view">; getFunction(nameOrSignature: "getAddressKeys"): TypedContractMethod<[network: string, token: string], [string[]], "view">; filters: {}; } //# sourceMappingURL=IAddressReader.d.ts.map