ufomarketplace-sdk
Version:
SDK to interact with set ufo marketplace contracts
16 lines (15 loc) • 719 B
TypeScript
import { Signer, ContractFactory, Overrides } from "ethers";
import { Provider, TransactionRequest } from "@ethersproject/providers";
import type { SuperGalatic } from "../SuperGalatic";
export declare class SuperGalatic__factory extends ContractFactory {
constructor(signer?: Signer);
deploy(overrides?: Overrides & {
from?: string | Promise<string>;
}): Promise<SuperGalatic>;
getDeployTransaction(overrides?: Overrides & {
from?: string | Promise<string>;
}): TransactionRequest;
attach(address: string): SuperGalatic;
connect(signer: Signer): SuperGalatic__factory;
static connect(address: string, signerOrProvider: Signer | Provider): SuperGalatic;
}