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