atomicals-js
Version:
Atomicals JavaScript SDK and CLI
10 lines (9 loc) • 370 B
TypeScript
import { CommandResultInterface } from "./command-result.interface";
import { CommandInterface } from "./command.interface";
export declare class WalletImportCommand implements CommandInterface {
private wif;
private alias;
constructor(wif: string, alias: string);
run(): Promise<CommandResultInterface>;
walletExists(): Promise<true | undefined>;
}