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