UNPKG

atomicals-js

Version:
14 lines (13 loc) 600 B
import { ElectrumApiInterface } from "../api/electrum-api.interface"; import { CommandInterface } from "./command.interface"; import { BaseRequestOptions } from "../interfaces/api.interface"; export declare class MintInteractiveNftCommand implements CommandInterface { private electrumApi; private options; private filename; private address; private fundingWIF; private jsonOnly?; constructor(electrumApi: ElectrumApiInterface, options: BaseRequestOptions, filename: string, address: string, fundingWIF: string, jsonOnly?: boolean | undefined); run(): Promise<any>; }