atomicals-js
Version:
Atomicals JavaScript SDK and CLI
14 lines (13 loc) • 614 B
TypeScript
import { ElectrumApiInterface } from "../api/electrum-api.interface";
import { CommandInterface } from "./command.interface";
import { BaseRequestOptions } from "../interfaces/api.interface";
export declare class MintInteractiveDftCommand implements CommandInterface {
private electrumApi;
private options;
private address;
private ticker;
private fundingWIF;
private useCurrentBitwork?;
constructor(electrumApi: ElectrumApiInterface, options: BaseRequestOptions, address: string, ticker: string, fundingWIF: string, useCurrentBitwork?: boolean | undefined);
run(): Promise<any>;
}