Name | Lookup | Parameters | |
---|---|---|---|
create | 2400 | 3 | |
force_create | 2401 | 4 | |
start_destroy | 2402 | 1 | |
destroy_accounts | 2403 | 1 | |
destroy_approvals | 2404 | 1 | |
finish_destroy | 2405 | 1 | |
mint | 2406 | 3 | |
burn | 2407 | 3 | |
transfer | 2408 | 3 | |
transfer_keep_alive | 2409 | 3 | |
force_transfer | 240a | 4 | |
freeze | 240b | 2 | |
thaw | 240c | 2 | |
freeze_asset | 240d | 1 | |
thaw_asset | 240e | 1 | |
transfer_ownership | 240f | 2 | |
set_team | 2410 | 4 | |
set_metadata | 2411 | 4 | |
clear_metadata | 2412 | 1 | |
force_set_metadata | 2413 | 5 | |
force_clear_metadata | 2414 | 1 | |
force_asset_status | 2415 | 8 | |
approve_transfer | 2416 | 3 | |
cancel_approval | 2417 | 2 | |
force_cancel_approval | 2418 | 3 | |
transfer_approved | 2419 | 4 | |
touch | 241a | 1 | |
refund | 241b | 2 | |
set_min_balance | 241c | 2 | |
touch_other | 241d | 2 | |
refund_other | 241e | 2 | |
block | 241f | 2 |
Name | Lookup | Attributes | |
---|---|---|---|
Created | 2400 | ["AssetId","AccountId","AccountId"] | |
Issued | 2401 | ["AssetId","AccountId","Balance"] | |
Transferred | 2402 | ["AssetId","AccountId","AccountId","Balance"] | |
Burned | 2403 | ["AssetId","AccountId","Balance"] | |
TeamChanged | 2404 | ["AssetId","AccountId","AccountId","AccountId"] | |
OwnerChanged | 2405 | ["AssetId","AccountId"] | |
Frozen | 2406 | ["AssetId","AccountId"] | |
Thawed | 2407 | ["AssetId","AccountId"] | |
AssetFrozen | 2408 | ["AssetId"] | |
AssetThawed | 2409 | ["AssetId"] | |
AccountsDestroyed | 240a | ["AssetId","u32","u32"] | |
ApprovalsDestroyed | 240b | ["AssetId","u32","u32"] | |
DestructionStarted | 240c | ["AssetId"] | |
Destroyed | 240d | ["AssetId"] | |
ForceCreated | 240e | ["AssetId","AccountId"] | |
MetadataSet | 240f | ["AssetId","Bytes","Bytes","u8","bool"] | |
MetadataCleared | 2410 | ["AssetId"] | |
ApprovedTransfer | 2411 | ["AssetId","AccountId","AccountId","Balance"] | |
ApprovalCancelled | 2412 | ["AssetId","AccountId","AccountId"] | |
TransferredApproved | 2413 | ["AssetId","AccountId","AccountId","AccountId","Balance"] | |
AssetStatusChanged | 2414 | ["AssetId"] | |
AssetMinBalanceChanged | 2415 | ["AssetId","Balance"] | |
Touched | 2416 | ["AssetId","AccountId","AccountId"] | |
Blocked | 2417 | ["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":417}} | |
Account | {"origin":"Map","n_map_type":{"hashers":["Blake2_128Concat","Blake2_128Concat"],"key_vec":["U128","AccountId"],"value":"pallet_assets:types:AssetAccount","keys_id":419,"value_id":420}} | |
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":423,"value_id":424}} | |
Metadata | {"origin":"Map","n_map_type":{"hashers":["Blake2_128Concat"],"key_vec":["U128"],"value":"pallet_assets:types:AssetMetadata","keys_id":6,"value_id":425}} |
Name | Type | Value | |
---|---|---|---|
RemoveItemsLimit | U32 | e8030000 | |
AssetDeposit | U128 | 0000e8890423c78a0000000000000000 | |
AssetAccountDeposit | U128 | 00207fd5c49003000000000000000000 | |
MetadataDepositBase | U128 | 00c0f123dd9903000000000000000000 | |
MetadataDepositPerByte | U128 | 00d0ed902e0000000000000000000000 | |
ApprovalDeposit | U128 | 40420f00000000000000000000000000 | |
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 |