@arkade-os/sdk Documentation - v0.4.36
    Preparing search index...

    Type Alias AssetDetails

    Asset details returned by IAssetManager.getAssetDetails.

    • IAssetManager.getAssetDetails
    • AssetMetadata
    type AssetDetails = {
        assetId: string;
        controlAssetId?: string;
        metadata?: AssetMetadata;
        supply: bigint;
    }
    Index

    Properties

    assetId: string

    Asset identifier.

    controlAssetId?: string

    Optional control asset id required for future reissuance.

    metadata?: AssetMetadata

    Optional immutable metadata associated with the asset.

    supply: bigint

    Total issued supply in base units. Typed as bigint for the same reason as Asset.amount — supplies often exceed Number.MAX_SAFE_INTEGER.