tornado-contracts/dist/@openzeppelin/contracts/utils/introspection/IERC165.d.ts

30 lines
2.2 KiB
TypeScript
Raw Permalink Normal View History

2024-12-26 02:18:47 +00:00
import type { BaseContract, BytesLike, FunctionFragment, Result, Interface, ContractRunner, ContractMethod, Listener } from "ethers";
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener, TypedContractMethod } from "../../../../common";
export interface IERC165Interface extends Interface {
getFunction(nameOrSignature: "supportsInterface"): FunctionFragment;
encodeFunctionData(functionFragment: "supportsInterface", values: [BytesLike]): string;
decodeFunctionResult(functionFragment: "supportsInterface", data: BytesLike): Result;
2024-10-22 11:37:10 +00:00
}
2024-12-26 02:18:47 +00:00
export interface IERC165 extends BaseContract {
connect(runner?: ContractRunner | null): IERC165;
2024-10-22 11:37:10 +00:00
waitForDeployment(): Promise<this>;
2024-12-26 02:18:47 +00:00
interface: IERC165Interface;
2024-10-22 11:37:10 +00:00
queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
listeners(eventName?: string): Promise<Array<Listener>>;
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
2024-12-26 02:18:47 +00:00
supportsInterface: TypedContractMethod<[
interfaceId: BytesLike
], [
boolean
], "view">;
2024-10-22 11:37:10 +00:00
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
2024-12-26 02:18:47 +00:00
getFunction(nameOrSignature: "supportsInterface"): TypedContractMethod<[interfaceId: BytesLike], [boolean], "view">;
2024-10-22 11:37:10 +00:00
filters: {};
}