UNPKG

@enclaved/encli

Version:

CLI utilities for working with enclaved application server for TEEs

21 lines (20 loc) 515 B
/** * Wallet Create command implementation */ import { Command } from 'commander'; /** * Run the create command * @param name Name of the wallet * @returns Result of the create operation */ export declare function runCreateCommand(name: string): Promise<{ success: boolean; name: string; balance: any; nwcString: string; }>; /** * Register the create command with the CLI * @param program Commander program instance */ export declare function registerCreateCommand(program: Command): void;