atomicals-js
Version:
Atomicals JavaScript SDK and CLI
9 lines (8 loc) • 323 B
TypeScript
import { ElectrumApiInterface } from "../api/electrum-api.interface";
import { CommandInterface } from "./command.interface";
export declare class TxCommand implements CommandInterface {
private electrumApi;
private txid;
constructor(electrumApi: ElectrumApiInterface, txid: string);
run(): Promise<any>;
}