atomicals-js
Version:
Atomicals JavaScript SDK and CLI
10 lines (9 loc) • 391 B
TypeScript
import { CommandResultInterface } from "./command-result.interface";
import { CommandInterface } from "./command.interface";
export declare class WalletPhraseDecodeCommand implements CommandInterface {
private phrase;
private path;
private passphrase?;
constructor(phrase: string, path: string, passphrase?: string | undefined);
run(): Promise<CommandResultInterface>;
}