@lightprotocol/stateless.js - v0.22.1-alpha.1
    Preparing search index...

    Type Alias CompressedAccount

    CompressedAccount: {
        owner: PublicKey;
        lamports: BN;
        address: number[] | null;
        data: CompressedAccountData | null;
    } & MerkleContext & { readOnly: boolean }

    Compressed account + metadata about the state tree in which the account is stored.

    Type Declaration

    • owner: PublicKey

      Public key of program or user owning the account.

    • lamports: BN

      Lamports attached to the account.

    • address: number[] | null

      Optional unique account ID that is persistent across transactions.

    • data: CompressedAccountData | null

      Optional data attached to the account.

    • readOnly: boolean

      Read only.