Name | Lookup | Parameters | |
---|---|---|---|
create | 2d00 | 3 | |
force_create | 2d01 | 4 | |
start_destroy | 2d02 | 1 | |
destroy_accounts | 2d03 | 1 | |
destroy_approvals | 2d04 | 1 | |
finish_destroy | 2d05 | 1 | |
mint | 2d06 | 3 | |
burn | 2d07 | 3 | |
transfer | 2d08 | 3 | |
transfer_keep_alive | 2d09 | 3 | |
force_transfer | 2d0a | 4 | |
freeze | 2d0b | 2 | |
thaw | 2d0c | 2 | |
freeze_asset | 2d0d | 1 | |
thaw_asset | 2d0e | 1 | |
transfer_ownership | 2d0f | 2 | |
set_team | 2d10 | 4 | |
set_metadata | 2d11 | 4 | |
clear_metadata | 2d12 | 1 | |
force_set_metadata | 2d13 | 5 | |
force_clear_metadata | 2d14 | 1 | |
force_asset_status | 2d15 | 8 | |
approve_transfer | 2d16 | 3 | |
cancel_approval | 2d17 | 2 | |
force_cancel_approval | 2d18 | 3 | |
transfer_approved | 2d19 | 4 | |
touch | 2d1a | 1 | |
refund | 2d1b | 2 | |
set_min_balance | 2d1c | 2 | |
touch_other | 2d1d | 2 | |
refund_other | 2d1e | 2 | |
block | 2d1f | 2 |
Name | Lookup | Attributes | |
---|---|---|---|
Created | 2d00 | ["AssetId","AccountId","AccountId"] | |
Issued | 2d01 | ["AssetId","AccountId","Balance"] | |
Transferred | 2d02 | ["AssetId","AccountId","AccountId","Balance"] | |
Burned | 2d03 | ["AssetId","AccountId","Balance"] | |
TeamChanged | 2d04 | ["AssetId","AccountId","AccountId","AccountId"] | |
OwnerChanged | 2d05 | ["AssetId","AccountId"] | |
Frozen | 2d06 | ["AssetId","AccountId"] | |
Thawed | 2d07 | ["AssetId","AccountId"] | |
AssetFrozen | 2d08 | ["AssetId"] | |
AssetThawed | 2d09 | ["AssetId"] | |
AccountsDestroyed | 2d0a | ["AssetId","u32","u32"] | |
ApprovalsDestroyed | 2d0b | ["AssetId","u32","u32"] | |
DestructionStarted | 2d0c | ["AssetId"] | |
Destroyed | 2d0d | ["AssetId"] | |
ForceCreated | 2d0e | ["AssetId","AccountId"] | |
MetadataSet | 2d0f | ["AssetId","Bytes","Bytes","u8","bool"] | |
MetadataCleared | 2d10 | ["AssetId"] | |
ApprovedTransfer | 2d11 | ["AssetId","AccountId","AccountId","Balance"] | |
ApprovalCancelled | 2d12 | ["AssetId","AccountId","AccountId"] | |
TransferredApproved | 2d13 | ["AssetId","AccountId","AccountId","AccountId","Balance"] | |
AssetStatusChanged | 2d14 | ["AssetId"] | |
AssetMinBalanceChanged | 2d15 | ["AssetId","Balance"] | |
Touched | 2d16 | ["AssetId","AccountId","AccountId"] | |
Blocked | 2d17 | ["AssetId","AccountId"] |
Name | Type | |
---|---|---|
Asset | {"origin":"Map","n_map_type":{"hashers":["Blake2_128Concat"],"key_vec":["U128"],"value":"pallet_assets:types:AssetDetails","keys_id":6,"value_id":481}} | |
Account | {"origin":"Map","n_map_type":{"hashers":["Blake2_128Concat","Blake2_128Concat"],"key_vec":["U128","AccountId"],"value":"pallet_assets:types:AssetAccount","keys_id":483,"value_id":484}} | |
Approvals | {"origin":"Map","n_map_type":{"hashers":["Blake2_128Concat","Blake2_128Concat","Blake2_128Concat"],"key_vec":["U128","AccountId","AccountId"],"value":"pallet_assets:types:Approval","keys_id":487,"value_id":488}} | |
Metadata | {"origin":"Map","n_map_type":{"hashers":["Blake2_128Concat"],"key_vec":["U128"],"value":"pallet_assets:types:AssetMetadata","keys_id":6,"value_id":489}} |
Name | Type | Value | |
---|---|---|---|
RemoveItemsLimit | U32 | e8030000 | |
AssetDeposit | U128 | 00000000000000000000000000000000 | |
AssetAccountDeposit | U128 | 01000000000000000000000000000000 | |
MetadataDepositBase | U128 | 00000000000000000000000000000000 | |
MetadataDepositPerByte | U128 | 00000000000000000000000000000000 | |
ApprovalDeposit | U128 | 00000000000000000000000000000000 | |
StringLimit | U32 | 32000000 |
Name | Docs |
---|---|
BalanceLow | Account balance must be greater than or equal to the transfer amount. |
NoAccount | The account to alter does not exist. |
NoPermission | The signing account has no permission to do the operation. |
Unknown | The given asset ID is unknown. |
Frozen | The origin account is frozen. |
InUse | The asset ID is already taken. |
BadWitness | Invalid witness data given. |
MinBalanceZero | Minimum balance should be non-zero. |
UnavailableConsumer | Unable to increment the consumer reference counters on the account. Either no providerreference exists to allow a non-zero balance of a non-self-sufficient asset, or onefewer then the maximum number of consumers has been reached. |
BadMetadata | Invalid metadata given. |
Unapproved | No approval exists that would allow the transfer. |
WouldDie | The source account would not survive the transfer and it needs to stay alive. |
AlreadyExists | The asset-account already exists. |
NoDeposit | The asset-account doesn't have an associated deposit. |
WouldBurn | The operation would result in funds being burned. |
LiveAsset | The asset is a live asset and is actively being used. Usually emit for operations suchas `start_destroy` which require the asset to be in a destroying state. |
AssetNotLive | The asset is not live, and likely being destroyed. |
IncorrectStatus | The asset status is not the expected status. |
NotFrozen | The asset should be frozen before the given operation. |
CallbackFailed | Callback action resulted in error |