UNPKG

@pod-protocol/cli

Version:
16 lines 606 B
/** * ZK Compression Commands and Utilities * Handles compressed NFT operations and Merkle tree management */ import { Command } from "commander"; export interface DepthSizePair { maxDepth: number; maxBufferSize: number; description: string; capacity: number; estimatedCost: number; } export declare const ALL_DEPTH_SIZE_PAIRS: DepthSizePair[]; export declare function getConcurrentMerkleTreeAccountSize(maxDepth: number, maxBufferSize: number, canopyDepth: number): number; export declare function createZKCompressionCommands(): Command; //# sourceMappingURL=zk-compression.d.ts.map