Name | Lookup | Parameters | |
---|---|---|---|
create | 3600 | 3 | |
force_create | 3601 | 4 | |
start_destroy | 3602 | 1 | |
destroy_accounts | 3603 | 1 | |
destroy_approvals | 3604 | 1 | |
finish_destroy | 3605 | 1 | |
mint | 3606 | 3 | |
burn | 3607 | 3 | |
transfer | 3608 | 3 | |
transfer_keep_alive | 3609 | 3 | |
force_transfer | 360a | 4 | |
freeze | 360b | 2 | |
thaw | 360c | 2 | |
freeze_asset | 360d | 1 | |
thaw_asset | 360e | 1 | |
transfer_ownership | 360f | 2 | |
set_team | 3610 | 4 | |
set_metadata | 3611 | 4 | |
clear_metadata | 3612 | 1 | |
force_set_metadata | 3613 | 5 | |
force_clear_metadata | 3614 | 1 | |
force_asset_status | 3615 | 8 | |
approve_transfer | 3616 | 3 | |
cancel_approval | 3617 | 2 | |
force_cancel_approval | 3618 | 3 | |
transfer_approved | 3619 | 4 | |
touch | 361a | 1 | |
refund | 361b | 2 | |
set_min_balance | 361c | 2 | |
touch_other | 361d | 2 | |
refund_other | 361e | 2 | |
block | 361f | 2 |
Name | Lookup | Attributes | |
---|---|---|---|
Created | 3600 | ["AssetId","AccountId","AccountId"] | |
Issued | 3601 | ["AssetId","AccountId","Balance"] | |
Transferred | 3602 | ["AssetId","AccountId","AccountId","Balance"] | |
Burned | 3603 | ["AssetId","AccountId","Balance"] | |
TeamChanged | 3604 | ["AssetId","AccountId","AccountId","AccountId"] | |
OwnerChanged | 3605 | ["AssetId","AccountId"] | |
Frozen | 3606 | ["AssetId","AccountId"] | |
Thawed | 3607 | ["AssetId","AccountId"] | |
AssetFrozen | 3608 | ["AssetId"] | |
AssetThawed | 3609 | ["AssetId"] | |
AccountsDestroyed | 360a | ["AssetId","u32","u32"] | |
ApprovalsDestroyed | 360b | ["AssetId","u32","u32"] | |
DestructionStarted | 360c | ["AssetId"] | |
Destroyed | 360d | ["AssetId"] | |
ForceCreated | 360e | ["AssetId","AccountId"] | |
MetadataSet | 360f | ["AssetId","Bytes","Bytes","u8","bool"] | |
MetadataCleared | 3610 | ["AssetId"] | |
ApprovedTransfer | 3611 | ["AssetId","AccountId","AccountId","Balance"] | |
ApprovalCancelled | 3612 | ["AssetId","AccountId","AccountId"] | |
TransferredApproved | 3613 | ["AssetId","AccountId","AccountId","AccountId","Balance"] | |
AssetStatusChanged | 3614 | ["AssetId"] | |
AssetMinBalanceChanged | 3615 | ["AssetId","Balance"] | |
Touched | 3616 | ["AssetId","AccountId","AccountId"] | |
Blocked | 3617 | ["AssetId","AccountId"] |
Name | Type | |
---|---|---|
Asset | {"origin":"Map","n_map_type":{"hashers":["Blake2_128Concat"],"key_vec":["U32"],"value":"pallet_assets:types:AssetDetails","keys_id":4,"value_id":403}} | |
Account | {"origin":"Map","n_map_type":{"hashers":["Blake2_128Concat","Blake2_128Concat"],"key_vec":["U32","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":["U32","AccountId","AccountId"],"value":"pallet_assets:types:Approval","keys_id":409,"value_id":410}} | |
Metadata | {"origin":"Map","n_map_type":{"hashers":["Blake2_128Concat"],"key_vec":["U32"],"value":"pallet_assets:types:AssetMetadata@450","keys_id":4,"value_id":450}} |
Name | Type | Value | |
---|---|---|---|
RemoveItemsLimit | U32 | e8030000 | |
AssetDeposit | U128 | 00000000000000000000000000000000 | |
AssetAccountDeposit | U128 | 00fe4d77000000000000000000000000 | |
MetadataDepositBase | U128 | 00000000000000000000000000000000 | |
MetadataDepositPerByte | U128 | 00000000000000000000000000000000 | |
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 |