UNPKG

chittycan

Version:

Your completely autonomous network that grows with you - DNA ownership platform with encrypted vaults, PDX portability, and ChittyFoundation governance

33 lines 821 B
/** * Export DNA to PDX format */ export declare function exportDNACommand(options: { privacy: 'full' | 'hash-only'; output: string; }): Promise<void>; /** * Import DNA from PDX file */ export declare function importDNACommand(options: { file: string; conflictResolution: 'merge' | 'replace' | 'rename' | 'skip'; }): Promise<void>; /** * Show DNA status and statistics */ export declare function dnaStatusCommand(): Promise<void>; /** * Show DNA evolution history (snapshots) */ export declare function dnaHistoryCommand(options: { limit?: number; }): Promise<void>; /** * Revoke DNA (ethical exit) */ export declare function revokeDNACommand(): Promise<void>; /** * Restore DNA from snapshot */ export declare function restoreDNACommand(): Promise<void>; //# sourceMappingURL=dna.d.ts.map