Name | Lookup | Parameters | |
|---|---|---|---|
| create | 0700 | 3 | |
| force_create | 0701 | 4 | |
| start_destroy | 0702 | 1 | |
| destroy_accounts | 0703 | 1 | |
| destroy_approvals | 0704 | 1 | |
| finish_destroy | 0705 | 1 | |
| mint | 0706 | 3 | |
| burn | 0707 | 3 | |
| transfer | 0708 | 3 | |
| transfer_keep_alive | 0709 | 3 | |
| force_transfer | 070a | 4 | |
| freeze | 070b | 2 | |
| thaw | 070c | 2 | |
| freeze_asset | 070d | 1 | |
| thaw_asset | 070e | 1 | |
| transfer_ownership | 070f | 2 | |
| set_team | 0710 | 4 | |
| set_metadata | 0711 | 4 | |
| clear_metadata | 0712 | 1 | |
| force_set_metadata | 0713 | 5 | |
| force_clear_metadata | 0714 | 1 | |
| force_asset_status | 0715 | 8 | |
| approve_transfer | 0716 | 3 | |
| cancel_approval | 0717 | 2 | |
| force_cancel_approval | 0718 | 3 | |
| transfer_approved | 0719 | 4 | |
| touch | 071a | 1 | |
| refund | 071b | 2 | |
| set_min_balance | 071c | 2 |
Name | Lookup | Attributes | |
|---|---|---|---|
| Created | 0700 | ["AssetId","AccountId","AccountId"] | |
| Issued | 0701 | ["AssetId","AccountId","Balance"] | |
| Transferred | 0702 | ["AssetId","AccountId","AccountId","Balance"] | |
| Burned | 0703 | ["AssetId","AccountId","Balance"] | |
| TeamChanged | 0704 | ["AssetId","AccountId","AccountId","AccountId"] | |
| OwnerChanged | 0705 | ["AssetId","AccountId"] | |
| Frozen | 0706 | ["AssetId","AccountId"] | |
| Thawed | 0707 | ["AssetId","AccountId"] | |
| AssetFrozen | 0708 | ["AssetId"] | |
| AssetThawed | 0709 | ["AssetId"] | |
| AccountsDestroyed | 070a | ["AssetId","u32","u32"] | |
| ApprovalsDestroyed | 070b | ["AssetId","u32","u32"] | |
| DestructionStarted | 070c | ["AssetId"] | |
| Destroyed | 070d | ["AssetId"] | |
| ForceCreated | 070e | ["AssetId","AccountId"] | |
| MetadataSet | 070f | ["AssetId","Bytes","Bytes","u8","bool"] | |
| MetadataCleared | 0710 | ["AssetId"] | |
| ApprovedTransfer | 0711 | ["AssetId","AccountId","AccountId","Balance"] | |
| ApprovalCancelled | 0712 | ["AssetId","AccountId","AccountId"] | |
| TransferredApproved | 0713 | ["AssetId","AccountId","AccountId","AccountId","Balance"] | |
| AssetStatusChanged | 0714 | ["AssetId"] | |
| AssetMinBalanceChanged | 0715 | ["AssetId","Balance"] |
Name | Type | |
|---|---|---|
| Asset | {"origin":"Map","n_map_type":{"hashers":["Blake2_128Concat"],"key_vec":["U64"],"value":"pallet_assets:types:AssetDetails","keys_id":10,"value_id":237}} | |
| Account | {"origin":"Map","n_map_type":{"hashers":["Blake2_128Concat","Blake2_128Concat"],"key_vec":["U64","H160"],"value":"pallet_assets:types:AssetAccount","keys_id":239,"value_id":240}} | |
| Approvals | {"origin":"Map","n_map_type":{"hashers":["Blake2_128Concat","Blake2_128Concat","Blake2_128Concat"],"key_vec":["U64","H160","H160"],"value":"pallet_assets:types:Approval","keys_id":242,"value_id":243}} | |
| Metadata | {"origin":"Map","n_map_type":{"hashers":["Blake2_128Concat"],"key_vec":["U64"],"value":"pallet_assets:types:AssetMetadata","keys_id":10,"value_id":244}} |
Name | Type | Value | |
|---|---|---|---|
| RemoveItemsLimit | U32 | e8030000 | |
| AssetDeposit | U128 | 00000000000000000000000000000000 | |
| AssetAccountDeposit | U128 | 00000000000000000000000000000000 | |
| 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. |
| NoProvider | 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 themaximum 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 |