mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-25 13:54:05 -06:00
42 lines
2.1 KiB
TypeScript
42 lines
2.1 KiB
TypeScript
import { BaseContract, BigNumber, BytesLike, CallOverrides, PopulatedTransaction, Signer, utils } from "ethers";
|
|
import { FunctionFragment, Result } from "@ethersproject/abi";
|
|
import { Listener, Provider } from "@ethersproject/providers";
|
|
import { TypedEventFilter, TypedEvent, TypedListener, OnEvent } from "./common";
|
|
export interface IERC165Interface extends utils.Interface {
|
|
functions: {
|
|
"supportsInterface(bytes4)": FunctionFragment;
|
|
};
|
|
encodeFunctionData(functionFragment: "supportsInterface", values: [BytesLike]): string;
|
|
decodeFunctionResult(functionFragment: "supportsInterface", data: BytesLike): Result;
|
|
events: {};
|
|
}
|
|
export interface IERC165 extends BaseContract {
|
|
connect(signerOrProvider: Signer | Provider | string): this;
|
|
attach(addressOrName: string): this;
|
|
deployed(): Promise<this>;
|
|
interface: IERC165Interface;
|
|
queryFilter<TEvent extends TypedEvent>(event: TypedEventFilter<TEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TEvent>>;
|
|
listeners<TEvent extends TypedEvent>(eventFilter?: TypedEventFilter<TEvent>): Array<TypedListener<TEvent>>;
|
|
listeners(eventName?: string): Array<Listener>;
|
|
removeAllListeners<TEvent extends TypedEvent>(eventFilter: TypedEventFilter<TEvent>): this;
|
|
removeAllListeners(eventName?: string): this;
|
|
off: OnEvent<this>;
|
|
on: OnEvent<this>;
|
|
once: OnEvent<this>;
|
|
removeListener: OnEvent<this>;
|
|
functions: {
|
|
supportsInterface(interfaceId: BytesLike, overrides?: CallOverrides): Promise<[boolean]>;
|
|
};
|
|
supportsInterface(interfaceId: BytesLike, overrides?: CallOverrides): Promise<boolean>;
|
|
callStatic: {
|
|
supportsInterface(interfaceId: BytesLike, overrides?: CallOverrides): Promise<boolean>;
|
|
};
|
|
filters: {};
|
|
estimateGas: {
|
|
supportsInterface(interfaceId: BytesLike, overrides?: CallOverrides): Promise<BigNumber>;
|
|
};
|
|
populateTransaction: {
|
|
supportsInterface(interfaceId: BytesLike, overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
};
|
|
}
|