Helius SDK - v2.2.2
    Preparing search index...

    Interface Compression

    Compression details for a compressed NFT (cNFT).

    interface Compression {
        asset_hash: string;
        compressed: boolean;
        creator_hash: string;
        data_hash: string;
        eligible: boolean;
        leaf_id: number;
        seq: number;
        tree: string;
    }
    Index

    Properties

    asset_hash: string

    Combined asset hash.

    compressed: boolean

    Whether this asset is currently compressed using Solana's state compression technology, which reduces storage costs.

    creator_hash: string

    Hash of the creator array.

    data_hash: string

    Hash of the asset's data.

    eligible: boolean

    Whether this asset is eligible for compression.

    leaf_id: number

    Leaf index within the Merkle tree.

    seq: number

    Sequence number of the last update.

    tree: string

    Merkle tree address holding this leaf.