atomicals-js
Version:
Atomicals JavaScript SDK and CLI
14 lines (13 loc) • 600 B
TypeScript
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>;
}