@enclaved/encli
Version:
CLI utilities for working with enclaved application server for TEEs
21 lines (20 loc) • 535 B
TypeScript
/**
* Wallet Add command implementation
*/
import { Command } from 'commander';
/**
* Run the add command
* @param name Name of the wallet
* @param nwcString NWC connection string
* @returns Result of the add operation
*/
export declare function runAddCommand(name: string, nwcString: string): Promise<{
success: boolean;
name: string;
balance: any;
}>;
/**
* Register the add command with the CLI
* @param program Commander program instance
*/
export declare function registerAddCommand(program: Command): void;