Name | Lookup | Parameters | |
---|---|---|---|
create | 0e00 | 3 | |
force_create | 0e01 | 4 | |
start_destroy | 0e02 | 1 | |
destroy_accounts | 0e03 | 1 | |
destroy_approvals | 0e04 | 1 | |
finish_destroy | 0e05 | 1 | |
mint | 0e06 | 3 | |
burn | 0e07 | 3 | |
transfer | 0e08 | 3 | |
transfer_keep_alive | 0e09 | 3 | |
force_transfer | 0e0a | 4 | |
freeze | 0e0b | 2 | |
thaw | 0e0c | 2 | |
freeze_asset | 0e0d | 1 | |
thaw_asset | 0e0e | 1 | |
transfer_ownership | 0e0f | 2 | |
set_team | 0e10 | 4 | |
set_metadata | 0e11 | 4 | |
clear_metadata | 0e12 | 1 | |
force_set_metadata | 0e13 | 5 | |
force_clear_metadata | 0e14 | 1 | |
force_asset_status | 0e15 | 8 | |
approve_transfer | 0e16 | 3 | |
cancel_approval | 0e17 | 2 | |
force_cancel_approval | 0e18 | 3 | |
transfer_approved | 0e19 | 4 | |
touch | 0e1a | 1 | |
refund | 0e1b | 2 | |
set_min_balance | 0e1c | 2 | |
touch_other | 0e1d | 2 | |
refund_other | 0e1e | 2 | |
block | 0e1f | 2 |
Name | Lookup | Attributes | |
---|---|---|---|
Created | 0e00 | ["AssetId","AccountId","AccountId"] | |
Issued | 0e01 | ["AssetId","AccountId","Balance"] | |
Transferred | 0e02 | ["AssetId","AccountId","AccountId","Balance"] | |
Burned | 0e03 | ["AssetId","AccountId","Balance"] | |
TeamChanged | 0e04 | ["AssetId","AccountId","AccountId","AccountId"] | |
OwnerChanged | 0e05 | ["AssetId","AccountId"] | |
Frozen | 0e06 | ["AssetId","AccountId"] | |
Thawed | 0e07 | ["AssetId","AccountId"] | |
AssetFrozen | 0e08 | ["AssetId"] | |
AssetThawed | 0e09 | ["AssetId"] | |
AccountsDestroyed | 0e0a | ["AssetId","u32","u32"] | |
ApprovalsDestroyed | 0e0b | ["AssetId","u32","u32"] | |
DestructionStarted | 0e0c | ["AssetId"] | |
Destroyed | 0e0d | ["AssetId"] | |
ForceCreated | 0e0e | ["AssetId","AccountId"] | |
MetadataSet | 0e0f | ["AssetId","Bytes","Bytes","u8","bool"] | |
MetadataCleared | 0e10 | ["AssetId"] | |
ApprovedTransfer | 0e11 | ["AssetId","AccountId","AccountId","Balance"] | |
ApprovalCancelled | 0e12 | ["AssetId","AccountId","AccountId"] | |
TransferredApproved | 0e13 | ["AssetId","AccountId","AccountId","AccountId","Balance"] | |
AssetStatusChanged | 0e14 | ["AssetId"] | |
AssetMinBalanceChanged | 0e15 | ["AssetId","Balance"] | |
Touched | 0e16 | ["AssetId","AccountId","AccountId"] | |
Blocked | 0e17 | ["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":403}} | |
Account | {"origin":"Map","n_map_type":{"hashers":["Blake2_128Concat","Blake2_128Concat"],"key_vec":["U128","AccountId"],"value":"pallet_assets:types:AssetAccount","keys_id":405,"value_id":406}} | |
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":409,"value_id":410}} | |
Metadata | {"origin":"Map","n_map_type":{"hashers":["Blake2_128Concat"],"key_vec":["U128"],"value":"pallet_assets:types:AssetMetadata","keys_id":6,"value_id":411}} |
Name | Type | Value | |
---|---|---|---|
RemoveItemsLimit | U32 | 90020000 | |
AssetDeposit | U128 | 00407a10f35a00000000000000000000 | |
AssetAccountDeposit | U128 | 0010a5d4e80000000000000000000000 | |
MetadataDepositBase | U128 | 00a0724e180900000000000000000000 | |
MetadataDepositPerByte | U128 | 0010a5d4e80000000000000000000000 | |
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 |