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

    Interface CompressedAccount

    A compressed account entry.

    interface CompressedAccount {
        address?: string;
        data?: AccountData;
        hash: string;
        lamports: number;
        leafIndex: number;
        owner: string;
        seq: number;
        slotCreated: number;
        tree: string;
    }
    Index

    Properties

    address?: string

    Base58-encoded account address; only present for PDAs and explicitly addressed accounts.

    Application data stored in this account, if any.

    hash: string

    Base58-encoded hash of the compressed account's leaf node in the Merkle tree.

    lamports: number

    Lamport balance of the account.

    leafIndex: number

    Zero-based index of the leaf in the Merkle tree.

    owner: string

    Base58-encoded public key of the program that owns this account.

    seq: number

    Sequence number that increments on each state change; used to order updates.

    slotCreated: number

    Slot in which this account was created.

    tree: string

    Base58-encoded public key of the state Merkle tree storing this account.