Skip to content

AssetID

An Algorand Standard Asset (ASA). asset ABI type when used as an argument or return type in a method, uint64 when in an array or state.

Extended by

Constructors

new AssetID()

new AssetID(): AssetID

Returns

AssetID

Properties

clawback

readonly clawback: Address

The clawback account that can take assets from any account

Source

types/global.d.ts:424


creator

readonly creator: Address

The creator of the asset

Source

types/global.d.ts:427


decimals

readonly decimals: uint64

The number of decimal places to use when displaying the asset

Source

types/global.d.ts:397


defaultFrozen

readonly defaultFrozen: boolean

Whether the asset is frozen by default when created

Source

types/global.d.ts:400


freeze

readonly freeze: Address

The freeze account that can freeze or unfreeze other accounts holdings the asset

Source

types/global.d.ts:421


id

readonly id: uint64

The asset index

Source

types/global.d.ts:391


manager

readonly manager: Address

The manager that can update the maanger, freeze, and reserve accounts

Source

types/global.d.ts:415


metadataHash

readonly metadataHash: StaticBytes<32>

The hash of the assets metadata

Source

types/global.d.ts:412


name

readonly name: string

The name of the asset. Must be 32 bytes or less.

Source

types/global.d.ts:403


reserve

readonly reserve: Address

The reserve account that holds the assets that are not in circulation

Source

types/global.d.ts:418


total

readonly total: uint64

The total number of units of the asset

Source

types/global.d.ts:394


unitName

readonly unitName: string

The short (ticker) name of the asset (ie. USDC)

Source

types/global.d.ts:406


url

readonly url: string

The URL of the assets metadata

Source

types/global.d.ts:409


zeroIndex

static readonly zeroIndex: AssetID

Asset index 0. Only useful for input validation.

Source

types/global.d.ts:388

Methods

fromUint64()

static fromUint64(index): AssetID

Get an Asset instance for the ASA with the given asset index

Parameters

index: uint64

Returns

AssetID

Source

types/global.d.ts:385