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

    Interface Asset

    A Solana digital asset returned by the DAS API.

    interface Asset {
        authorities?: Authorities[];
        burnt: boolean;
        compression?: Compression;
        content?: Content;
        creators?: Creators[];
        grouping?: Grouping[];
        id: string;
        inscription?: Inscription;
        interface: string;
        last_indexed_slot?: number;
        mint_extensions?: MintExtensions;
        mutable: boolean;
        ownership: Ownership;
        royalty?: Royalty;
        spl20?: Record<string, unknown>;
        supply?: Supply;
        token_info?: TokenInfo;
        uses?: Uses;
    }
    Index

    Properties

    authorities?: Authorities[]

    Authorities and their scopes for this asset.

    burnt: boolean

    Whether the asset has been burnt.

    compression?: Compression

    Compression details of the asset, indicating if it's a compressed NFT (cNFT) using Solana state compression.

    content?: Content

    Content information including metadata, files, and links.

    creators?: Creators[]

    Verified and unverified creators with share percentages.

    grouping?: Grouping[]

    Collection or other group memberships.

    id: string

    The asset's mint address.

    inscription?: Inscription

    On-chain inscription data. Present when showInscription: true is passed.

    interface: string

    The interface type of the asset, indicating its token standard and implementation (e.g. V1_NFT, FungibleToken).

    last_indexed_slot?: number

    All on-chain data up to and including this slot is guaranteed to have been indexed.

    mint_extensions?: MintExtensions

    Token-2022 mint extension data, if any.

    mutable: boolean

    Whether the asset's metadata is mutable.

    ownership: Ownership

    Ownership details including current owner, delegation status, and freezing information.

    royalty?: Royalty

    Royalty information used for marketplace fee calculations and creator payments.

    spl20?: Record<string, unknown>

    SPL-20 token data associated with this asset's inscription.

    supply?: Supply

    Print supply information for master editions.

    token_info?: TokenInfo

    SPL token metadata (symbol, balance, price).

    uses?: Uses

    Use / consumption restrictions.