@q-dev/gdk-sdk
Version:
Typescript Library to interact with GDK Contracts
23 lines (22 loc) • 823 B
TypeScript
import { Signer } from "ethers";
import type { Provider } from "@ethersproject/providers";
import type { IERC165, IERC165Interface } from "../IERC165";
export declare class IERC165__factory {
static readonly abi: readonly [{
readonly inputs: readonly [{
readonly internalType: "bytes4";
readonly name: "interfaceId";
readonly type: "bytes4";
}];
readonly name: "supportsInterface";
readonly outputs: readonly [{
readonly internalType: "bool";
readonly name: "";
readonly type: "bool";
}];
readonly stateMutability: "view";
readonly type: "function";
}];
static createInterface(): IERC165Interface;
static connect(address: string, signerOrProvider: Signer | Provider): IERC165;
}