UNPKG

ufomarketplace-sdk-new

Version:

SDK to interact with set ufo marketplace contracts

23 lines (22 loc) 850 B
import { Signer } from "ethers"; import type { Provider } from "@ethersproject/providers"; import type { IEscrow, IEscrowInterface } from "../../Escrow.sol/IEscrow"; export declare class IEscrow__factory { static readonly abi: readonly [{ readonly type: "function"; readonly name: "transferUAP"; readonly inputs: readonly [{ readonly name: "receiver"; readonly type: "address"; readonly internalType: "address"; }, { readonly name: "amount"; readonly type: "uint256"; readonly internalType: "uint256"; }]; readonly outputs: readonly []; readonly stateMutability: "nonpayable"; }]; static createInterface(): IEscrowInterface; static connect(address: string, signerOrProvider: Signer | Provider): IEscrow; }