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

    Interface GetCompressedTokenAccountsByOwnerResponse

    Response from getCompressedTokenAccountsByOwner.

    interface GetCompressedTokenAccountsByOwnerResponse {
        context: { slot: number };
        value: {
            cursor?: string;
            items: {
                account: CompressedAccount;
                tokenData: {
                    amount: number;
                    delegate?: string;
                    mint: string;
                    owner: string;
                    state: "initialized" | "frozen";
                    tlv?: string;
                };
            }[];
        };
    }
    Index

    Properties

    Properties

    context: { slot: number }

    Slot context at the time of the request.

    value: {
        cursor?: string;
        items: {
            account: CompressedAccount;
            tokenData: {
                amount: number;
                delegate?: string;
                mint: string;
                owner: string;
                state: "initialized" | "frozen";
                tlv?: string;
            };
        }[];
    }

    Type Declaration

    • Optionalcursor?: string

      Base58-encoded cursor to fetch the next page; omitted when no more results exist.

    • items: {
          account: CompressedAccount;
          tokenData: {
              amount: number;
              delegate?: string;
              mint: string;
              owner: string;
              state: "initialized" | "frozen";
              tlv?: string;
          };
      }[]

      Array of compressed token accounts owned by the specified wallet.