ufomarketplace-sdk-new
Version:
SDK to interact with set ufo marketplace contracts
19 lines (18 loc) • 715 B
TypeScript
import { Signer } from "ethers";
import type { Provider } from "@ethersproject/providers";
import type { Initializable, InitializableInterface } from "../Initializable";
export declare class Initializable__factory {
static readonly abi: readonly [{
readonly type: "event";
readonly name: "Initialized";
readonly inputs: readonly [{
readonly name: "version";
readonly type: "uint8";
readonly indexed: false;
readonly internalType: "uint8";
}];
readonly anonymous: false;
}];
static createInterface(): InitializableInterface;
static connect(address: string, signerOrProvider: Signer | Provider): Initializable;
}