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

    Interface CompressedAccountLegacy

    Use CompressedAccount instead.

    Describe the generic compressed account details applicable to every compressed account.

    interface CompressedAccountLegacy {
        owner: PublicKey;
        lamports: BN;
        address: number[] | null;
        data: CompressedAccountData | null;
    }
    Index

    Properties

    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.

    Optional data attached to the account.