Name | Lookup | Parameters | |
|---|---|---|---|
| create | 6800 | 3 | |
| force_create | 6801 | 4 | |
| start_destroy | 6802 | 1 | |
| destroy_accounts | 6803 | 1 | |
| destroy_approvals | 6804 | 1 | |
| finish_destroy | 6805 | 1 | |
| mint | 6806 | 3 | |
| burn | 6807 | 3 | |
| transfer | 6808 | 3 | |
| transfer_keep_alive | 6809 | 3 | |
| force_transfer | 680a | 4 | |
| freeze | 680b | 2 | |
| thaw | 680c | 2 | |
| freeze_asset | 680d | 1 | |
| thaw_asset | 680e | 1 | |
| transfer_ownership | 680f | 2 | |
| set_team | 6810 | 4 | |
| set_metadata | 6811 | 4 | |
| clear_metadata | 6812 | 1 | |
| force_set_metadata | 6813 | 5 | |
| force_clear_metadata | 6814 | 1 | |
| force_asset_status | 6815 | 8 | |
| approve_transfer | 6816 | 3 | |
| cancel_approval | 6817 | 2 | |
| force_cancel_approval | 6818 | 3 | |
| transfer_approved | 6819 | 4 | |
| touch | 681a | 1 | |
| refund | 681b | 2 | |
| set_min_balance | 681c | 2 | |
| touch_other | 681d | 2 | |
| refund_other | 681e | 2 | |
| block | 681f | 2 | |
| transfer_all | 6820 | 3 |
Name | Lookup | Attributes | |
|---|---|---|---|
| Created | 6800 | ["AssetId","AccountId","AccountId"] | |
| Issued | 6801 | ["AssetId","AccountId","Balance"] | |
| Transferred | 6802 | ["AssetId","AccountId","AccountId","Balance"] | |
| Burned | 6803 | ["AssetId","AccountId","Balance"] | |
| TeamChanged | 6804 | ["AssetId","AccountId","AccountId","AccountId"] | |
| OwnerChanged | 6805 | ["AssetId","AccountId"] | |
| Frozen | 6806 | ["AssetId","AccountId"] | |
| Thawed | 6807 | ["AssetId","AccountId"] | |
| AssetFrozen | 6808 | ["AssetId"] | |
| AssetThawed | 6809 | ["AssetId"] | |
| AccountsDestroyed | 680a | ["AssetId","u32","u32"] | |
| ApprovalsDestroyed | 680b | ["AssetId","u32","u32"] | |
| DestructionStarted | 680c | ["AssetId"] | |
| Destroyed | 680d | ["AssetId"] | |
| ForceCreated | 680e | ["AssetId","AccountId"] | |
| MetadataSet | 680f | ["AssetId","Bytes","Bytes","u8","bool"] | |
| MetadataCleared | 6810 | ["AssetId"] | |
| ApprovedTransfer | 6811 | ["AssetId","AccountId","AccountId","Balance"] | |
| ApprovalCancelled | 6812 | ["AssetId","AccountId","AccountId"] | |
| TransferredApproved | 6813 | ["AssetId","AccountId","AccountId","AccountId","Balance"] | |
| AssetStatusChanged | 6814 | ["AssetId"] | |
| AssetMinBalanceChanged | 6815 | ["AssetId","Balance"] | |
| Touched | 6816 | ["AssetId","AccountId","AccountId"] | |
| Blocked | 6817 | ["AssetId","AccountId"] | |
| Deposited | 6818 | ["AssetId","AccountId","Balance"] | |
| Withdrawn | 6819 | ["AssetId","AccountId","Balance"] |
Name | Type | |
|---|---|---|
| Asset | {"origin":"Map","n_map_type":{"hashers":["Blake2_128Concat"],"key_vec":["U128"],"value":"pallet_assets:types:AssetDetails","keys_id":6,"value_id":730}} | |
| Account | {"origin":"Map","n_map_type":{"hashers":["Blake2_128Concat","Blake2_128Concat"],"key_vec":["U128","H160"],"value":"pallet_assets:types:AssetAccount","keys_id":732,"value_id":733}} | |
| Approvals | {"origin":"Map","n_map_type":{"hashers":["Blake2_128Concat","Blake2_128Concat","Blake2_128Concat"],"key_vec":["U128","H160","H160"],"value":"pallet_assets:types:Approval","keys_id":736,"value_id":737}} | |
| Metadata | {"origin":"Map","n_map_type":{"hashers":["Blake2_128Concat"],"key_vec":["U128"],"value":"pallet_assets:types:AssetMetadata","keys_id":6,"value_id":738}} | |
| NextAssetId | {"origin":"PlainType","plain_type":"U128","PlainTypeValue":6} |
Name | Type | Value | |
|---|---|---|---|
| RemoveItemsLimit | U32 | 90020000 | |
| AssetDeposit | U128 | 000010632d5ec76b0500000000000000 | |
| AssetAccountDeposit | U128 | 0080fccfca1be70d0000000000000000 | |
| MetadataDepositBase | U128 | 0000dd0744dff80d0000000000000000 | |
| MetadataDepositPerByte | U128 | 00407a10f35a00000000000000000000 | |
| 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 |
| BadAssetId | The asset ID must be equal to the [`NextAssetId`]. |
| ContainsFreezes | The asset cannot be destroyed because some accounts for this asset contain freezes. |
| ContainsHolds | The asset cannot be destroyed because some accounts for this asset contain holds. |