Name | Lookup | Parameters | |
|---|---|---|---|
| create | 6800 | 3 | |
| force_create | 6801 | 4 | |
| destroy | 6802 | 2 | |
| mint | 6803 | 3 | |
| burn | 6804 | 3 | |
| transfer | 6805 | 3 | |
| transfer_keep_alive | 6806 | 3 | |
| force_transfer | 6807 | 4 | |
| freeze | 6808 | 2 | |
| thaw | 6809 | 2 | |
| freeze_asset | 680a | 1 | |
| thaw_asset | 680b | 1 | |
| transfer_ownership | 680c | 2 | |
| set_team | 680d | 4 | |
| set_metadata | 680e | 4 | |
| clear_metadata | 680f | 1 | |
| force_set_metadata | 6810 | 5 | |
| force_clear_metadata | 6811 | 1 | |
| force_asset_status | 6812 | 8 | |
| approve_transfer | 6813 | 3 | |
| cancel_approval | 6814 | 2 | |
| force_cancel_approval | 6815 | 3 | |
| transfer_approved | 6816 | 4 | |
| touch | 6817 | 1 | |
| refund | 6818 | 2 |
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"] | |
| Destroyed | 680a | ["AssetId"] | |
| ForceCreated | 680b | ["AssetId","AccountId"] | |
| MetadataSet | 680c | ["AssetId","Bytes","Bytes","u8","bool"] | |
| MetadataCleared | 680d | ["AssetId"] | |
| ApprovedTransfer | 680e | ["AssetId","AccountId","AccountId","Balance"] | |
| ApprovalCancelled | 680f | ["AssetId","AccountId","AccountId"] | |
| TransferredApproved | 6810 | ["AssetId","AccountId","AccountId","AccountId","Balance"] | |
| AssetStatusChanged | 6811 | ["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":495}} | |
| Account | {"origin":"Map","n_map_type":{"hashers":["Blake2_128Concat","Blake2_128Concat"],"key_vec":["U128","H160"],"value":"pallet_assets:types:AssetAccount","keys_id":496,"value_id":497}} | |
| 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":499,"value_id":500}} | |
| Metadata | {"origin":"Map","n_map_type":{"hashers":["Blake2_128Concat"],"key_vec":["U128"],"value":"pallet_assets:types:AssetMetadata","keys_id":6,"value_id":501}} |
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. |