AssetFreezeTransactionFields
AssetFreezeTransactionFields =
object
Defined in: packages/transact/src/transactions/asset-freeze.ts:10
Represents an asset freeze transaction that freezes or unfreezes asset holdings.
Asset freeze transactions are used by the asset freeze account to control whether a specific account can transfer a particular asset.
Properties
Section titled “Properties”assetId
Section titled “assetId”assetId:
bigint
Defined in: packages/transact/src/transactions/asset-freeze.ts:14
The ID of the asset being frozen/unfrozen.
freezeTarget
Section titled “freezeTarget”freezeTarget:
Address
Defined in: packages/transact/src/transactions/asset-freeze.ts:19
The target account whose asset holdings will be affected.
frozen
Section titled “frozen”frozen:
boolean
Defined in: packages/transact/src/transactions/asset-freeze.ts:27
The new freeze status.
true to freeze the asset holdings (prevent transfers),
false to unfreeze the asset holdings (allow transfers).