@pod-protocol/cli
Version:
Official CLI for the PoD Protocol
16 lines • 606 B
TypeScript
/**
* 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