Name | Lookup | Parameters | |
|---|---|---|---|
| create | 6c00 | 3 | |
| force_create | 6c01 | 4 | |
| destroy | 6c02 | 2 | |
| mint | 6c03 | 3 | |
| burn | 6c04 | 3 | |
| transfer | 6c05 | 3 | |
| transfer_keep_alive | 6c06 | 3 | |
| force_transfer | 6c07 | 4 | |
| freeze | 6c08 | 2 | |
| thaw | 6c09 | 2 | |
| freeze_asset | 6c0a | 1 | |
| thaw_asset | 6c0b | 1 | |
| transfer_ownership | 6c0c | 2 | |
| set_team | 6c0d | 4 | |
| set_metadata | 6c0e | 4 | |
| clear_metadata | 6c0f | 1 | |
| force_set_metadata | 6c10 | 5 | |
| force_clear_metadata | 6c11 | 1 | |
| force_asset_status | 6c12 | 8 | |
| approve_transfer | 6c13 | 3 | |
| cancel_approval | 6c14 | 2 | |
| force_cancel_approval | 6c15 | 3 | |
| transfer_approved | 6c16 | 4 | |
| touch | 6c17 | 1 | |
| refund | 6c18 | 2 |
Name | Lookup | Attributes | |
|---|---|---|---|
| Created | 6c00 | ["AssetId","AccountId","AccountId"] | |
| Issued | 6c01 | ["AssetId","AccountId","Balance"] | |
| Transferred | 6c02 | ["AssetId","AccountId","AccountId","Balance"] | |
| Burned | 6c03 | ["AssetId","AccountId","Balance"] | |
| TeamChanged | 6c04 | ["AssetId","AccountId","AccountId","AccountId"] | |
| OwnerChanged | 6c05 | ["AssetId","AccountId"] | |
| Frozen | 6c06 | ["AssetId","AccountId"] | |
| Thawed | 6c07 | ["AssetId","AccountId"] | |
| AssetFrozen | 6c08 | ["AssetId"] | |
| AssetThawed | 6c09 | ["AssetId"] | |
| Destroyed | 6c0a | ["AssetId"] | |
| ForceCreated | 6c0b | ["AssetId","AccountId"] | |
| MetadataSet | 6c0c | ["AssetId","Bytes","Bytes","u8","bool"] | |
| MetadataCleared | 6c0d | ["AssetId"] | |
| ApprovedTransfer | 6c0e | ["AssetId","AccountId","AccountId","Balance"] | |
| ApprovalCancelled | 6c0f | ["AssetId","AccountId","AccountId"] | |
| TransferredApproved | 6c10 | ["AssetId","AccountId","AccountId","AccountId","Balance"] | |
| AssetStatusChanged | 6c11 | ["AssetId"] |
Name | Type | |
|---|---|---|
| Asset | {"origin":"Map","n_map_type":{"hashers":["Blake2_128Concat"],"key_vec":["U128"],"value":"pallet_assets:types:AssetDetails","keys_id":6,"value_id":481}} | |
| Account | {"origin":"Map","n_map_type":{"hashers":["Blake2_128Concat","Blake2_128Concat"],"key_vec":["U128","H160"],"value":"pallet_assets:types:AssetAccount","keys_id":482,"value_id":483}} | |
| 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":485,"value_id":486}} | |
| Metadata | {"origin":"Map","n_map_type":{"hashers":["Blake2_128Concat"],"key_vec":["U128"],"value":"pallet_assets:types:AssetMetadata","keys_id":6,"value_id":487}} |
Name | Type | Value | |
|---|---|---|---|
| AssetDeposit | U128 | 000040b2bac9e0191e02000000000000 | |
| AssetAccountDeposit | U128 | 00007a6510a0468d0000000000000000 | |
| MetadataDepositBase | U128 | 00002c396afb36940000000000000000 | |
| MetadataDepositPerByte | U128 | 0000c16ff28623000000000000000000 | |
| 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. |