bitverse-atomicals-js
Version:
Atomicals Javascript Library and CLI - atomicals.xyz
18 lines (17 loc) • 975 B
TypeScript
import { ElectrumApiInterface } from "../api/electrum-api.interface";
import { CommandInterface } from "./command.interface";
import { AtomicalStatus } from "../interfaces/atomical-status.interface";
import { BaseRequestOptions } from "../interfaces/api.interface";
export declare class TransferInteractiveNftCommand implements CommandInterface {
private electrumApi;
private options;
private atomicalAliasOrId;
private currentOwnerAtomicalWIF;
private receiveAddress;
private fundingWIF;
private satsbyte;
private satsoutput;
constructor(electrumApi: ElectrumApiInterface, options: BaseRequestOptions, atomicalAliasOrId: string, currentOwnerAtomicalWIF: string, receiveAddress: string, fundingWIF: string, satsbyte: number, satsoutput: number);
run(): Promise<any>;
performTransfer(atomical: AtomicalStatus, atomicalKeypair: any, fundingKeypair: any, satsbyte: number, satsoutput: number, receiveAddress: string): Promise<any>;
}