UNPKG

@enclaved/encli

Version:

CLI utilities for working with enclaved application server for TEEs

20 lines (19 loc) 543 B
/** * Wallet Balance command implementation */ import { Command } from "commander"; /** * Run the balance command * @param name Optional name of the wallet (uses default wallet if not provided) * @returns Result of the balance operation */ export declare function runBalanceCommand(name?: string): Promise<{ success: boolean; name: any; balance: any; }>; /** * Register the balance command with the CLI * @param program Commander program instance */ export declare function registerBalanceCommand(program: Command): void;