Interface AssetParameterData

Interface for asset parameter data. Contains the actual parameter values retrieved from an asset.

interface AssetParameterData {
    assetname?: string;
    clawback?: string;
    decimals?: number;
    freeze?: string;
    frozen?: boolean;
    manager?: string;
    metadatahash?: string;
    reserve?: string;
    total?: number;
    unitname?: string;
    url?: string;
}

Properties

assetname?: string

Full name of the asset

clawback?: string

Clawback address (can revoke asset holdings)

decimals?: number

Number of decimal places

freeze?: string

Freeze address (can freeze/unfreeze asset holdings)

frozen?: boolean

Default frozen status for new holdings

manager?: string

Manager address (can modify asset configuration)

metadatahash?: string

Metadata hash as base64-encoded string

reserve?: string

Reserve address (receives unclaimed assets)

total?: number

Total supply of the asset

unitname?: string

Unit name/symbol of the asset

url?: string

URL associated with the asset