caravan-x
Version:
A terminal-based utility for managing Caravan multisig wallets in regtest mode. This tool simplifies development and testing with Caravan by providing an easy-to-use interface
37 lines (36 loc) • 778 B
TypeScript
export declare class SettingsCommands {
private appDir;
private configPath;
private profileManager;
constructor(appDir: string);
showSettingsMenu(): Promise<void>;
/**
* View all configurations (Docker + Manual)
*/
private viewAllConfigurations;
/**
* Format profiles list
*/
private formatProfilesList;
/**
* Format config details
*/
private formatConfigDetails;
/**
* Switch between modes
*/
private switchMode;
/**
* Create new config and switch to it
*/
private createAndSwitchToNew;
/**
* Edit current configuration
*/
private editCurrentConfig;
/**
* Manage saved profiles
*/
private manageProfiles;
private pressEnter;
}