@enclaved/encli
Version:
CLI utilities for working with enclaved application server for TEEs
17 lines (16 loc) • 515 B
TypeScript
/**
* NWC Get Info command implementation
*/
import { Command } from 'commander';
/**
* Run the get_info command
* @param pubkey Public key of the wallet service
* @param relay Relay URL of the service
* @returns Result of the get_info operation
*/
export declare function runGetInfoCommand(pubkey: string, relay: string): Promise<any>;
/**
* Register the get_info command with the CLI
* @param program Commander program instance
*/
export declare function registerGetInfoCommand(program: Command): void;