UNPKG

ufomarketplace-sdk-new

Version:

SDK to interact with set ufo marketplace contracts

23 lines (22 loc) 849 B
import { Signer } from "ethers"; import type { Provider } from "@ethersproject/providers"; import type { IRootToken, IRootTokenInterface } from "../IRootToken"; export declare class IRootToken__factory { static readonly abi: readonly [{ readonly type: "function"; readonly name: "publicMint"; readonly inputs: readonly [{ readonly name: "user"; readonly type: "address"; readonly internalType: "address"; }, { readonly name: "amount"; readonly type: "uint256"; readonly internalType: "uint256"; }]; readonly outputs: readonly []; readonly stateMutability: "nonpayable"; }]; static createInterface(): IRootTokenInterface; static connect(address: string, signerOrProvider: Signer | Provider): IRootToken; }