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
15 lines (14 loc) • 398 B
TypeScript
/**
* Snapshot Commands for Caravan-X
*/
import { SnapshotService } from "../core/snapshot";
export declare class SnapshotCommands {
private snapshotService;
constructor(snapshotService: SnapshotService);
showSnapshotMenu(): Promise<void>;
private createSnapshot;
private listSnapshots;
private restoreSnapshot;
private compareSnapshots;
private deleteSnapshot;
}