Name | Lookup | Parameters | |
---|---|---|---|
create | 3500 | 3 | |
force_create | 3501 | 4 | |
start_destroy | 3502 | 1 | |
destroy_accounts | 3503 | 1 | |
destroy_approvals | 3504 | 1 | |
finish_destroy | 3505 | 1 | |
mint | 3506 | 3 | |
burn | 3507 | 3 | |
transfer | 3508 | 3 | |
transfer_keep_alive | 3509 | 3 | |
force_transfer | 350a | 4 | |
freeze | 350b | 2 | |
thaw | 350c | 2 | |
freeze_asset | 350d | 1 | |
thaw_asset | 350e | 1 | |
transfer_ownership | 350f | 2 | |
set_team | 3510 | 4 | |
set_metadata | 3511 | 4 | |
clear_metadata | 3512 | 1 | |
force_set_metadata | 3513 | 5 | |
force_clear_metadata | 3514 | 1 | |
force_asset_status | 3515 | 8 | |
approve_transfer | 3516 | 3 | |
cancel_approval | 3517 | 2 | |
force_cancel_approval | 3518 | 3 | |
transfer_approved | 3519 | 4 | |
touch | 351a | 1 | |
refund | 351b | 2 | |
set_min_balance | 351c | 2 | |
touch_other | 351d | 2 | |
refund_other | 351e | 2 | |
block | 351f | 2 |
Name | Lookup | Attributes | |
---|---|---|---|
Created | 3500 | ["AssetId","AccountId","AccountId"] | |
Issued | 3501 | ["AssetId","AccountId","Balance"] | |
Transferred | 3502 | ["AssetId","AccountId","AccountId","Balance"] | |
Burned | 3503 | ["AssetId","AccountId","Balance"] | |
TeamChanged | 3504 | ["AssetId","AccountId","AccountId","AccountId"] | |
OwnerChanged | 3505 | ["AssetId","AccountId"] | |
Frozen | 3506 | ["AssetId","AccountId"] | |
Thawed | 3507 | ["AssetId","AccountId"] | |
AssetFrozen | 3508 | ["AssetId"] | |
AssetThawed | 3509 | ["AssetId"] | |
AccountsDestroyed | 350a | ["AssetId","u32","u32"] | |
ApprovalsDestroyed | 350b | ["AssetId","u32","u32"] | |
DestructionStarted | 350c | ["AssetId"] | |
Destroyed | 350d | ["AssetId"] | |
ForceCreated | 350e | ["AssetId","AccountId"] | |
MetadataSet | 350f | ["AssetId","Bytes","Bytes","u8","bool"] | |
MetadataCleared | 3510 | ["AssetId"] | |
ApprovedTransfer | 3511 | ["AssetId","AccountId","AccountId","Balance"] | |
ApprovalCancelled | 3512 | ["AssetId","AccountId","AccountId"] | |
TransferredApproved | 3513 | ["AssetId","AccountId","AccountId","AccountId","Balance"] | |
AssetStatusChanged | 3514 | ["AssetId"] | |
AssetMinBalanceChanged | 3515 | ["AssetId","Balance"] | |
Touched | 3516 | ["AssetId","AccountId","AccountId"] | |
Blocked | 3517 | ["AssetId","AccountId"] |
Name | Type | |
---|---|---|
Asset | {"origin":"Map","n_map_type":{"hashers":["Blake2_128Concat"],"key_vec":["staging_xcm:v3:multilocation:MultiLocation"],"value":"pallet_assets:types:AssetDetails","keys_id":37,"value_id":403}} | |
Account | {"origin":"Map","n_map_type":{"hashers":["Blake2_128Concat","Blake2_128Concat"],"key_vec":["staging_xcm:v3:multilocation:MultiLocation","AccountId"],"value":"pallet_assets:types:AssetAccount","keys_id":445,"value_id":406}} | |
Approvals | {"origin":"Map","n_map_type":{"hashers":["Blake2_128Concat","Blake2_128Concat","Blake2_128Concat"],"key_vec":["staging_xcm:v3:multilocation:MultiLocation","AccountId","AccountId"],"value":"pallet_assets:types:Approval","keys_id":446,"value_id":410}} | |
Metadata | {"origin":"Map","n_map_type":{"hashers":["Blake2_128Concat"],"key_vec":["staging_xcm:v3:multilocation:MultiLocation"],"value":"pallet_assets:types:AssetMetadata@447","keys_id":37,"value_id":447}} |
Name | Type | Value | |
---|---|---|---|
RemoveItemsLimit | U32 | e8030000 | |
AssetDeposit | U128 | c07e5778000000000000000000000000 | |
AssetAccountDeposit | U128 | 00fe4d77000000000000000000000000 | |
MetadataDepositBase | U128 | 80569d77000000000000000000000000 | |
MetadataDepositPerByte | U128 | a0860100000000000000000000000000 | |
ApprovalDeposit | U128 | 00e1f505000000000000000000000000 | |
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 |