UNPKG

bitverse-atomicals-js

Version:

Atomicals Javascript Library and CLI - atomicals.xyz

11 lines (10 loc) 424 B
import { CommandResultInterface } from "./command-result.interface"; import { CommandInterface } from "./command.interface"; export declare class WalletInitCommand implements CommandInterface { private phrase; private path; private n?; constructor(phrase: string | undefined, path: string, n?: number | undefined); run(): Promise<CommandResultInterface>; walletExists(): Promise<true | undefined>; }