Name | Lookup | Parameters | |
---|---|---|---|
create | 3200 | 3 | |
force_create | 3201 | 4 | |
destroy | 3202 | 2 | |
mint | 3203 | 3 | |
burn | 3204 | 3 | |
transfer | 3205 | 3 | |
transfer_keep_alive | 3206 | 3 | |
force_transfer | 3207 | 4 | |
freeze | 3208 | 2 | |
thaw | 3209 | 2 | |
freeze_asset | 320a | 1 | |
thaw_asset | 320b | 1 | |
transfer_ownership | 320c | 2 | |
set_team | 320d | 4 | |
set_metadata | 320e | 4 | |
clear_metadata | 320f | 1 | |
force_set_metadata | 3210 | 5 | |
force_clear_metadata | 3211 | 1 | |
force_asset_status | 3212 | 8 | |
approve_transfer | 3213 | 3 | |
cancel_approval | 3214 | 2 | |
force_cancel_approval | 3215 | 3 | |
transfer_approved | 3216 | 4 | |
touch | 3217 | 1 | |
refund | 3218 | 2 |
Name | Lookup | Attributes | |
---|---|---|---|
Created | 3200 | ["AssetId","AccountId","AccountId"] | |
Issued | 3201 | ["AssetId","AccountId","Balance"] | |
Transferred | 3202 | ["AssetId","AccountId","AccountId","Balance"] | |
Burned | 3203 | ["AssetId","AccountId","Balance"] | |
TeamChanged | 3204 | ["AssetId","AccountId","AccountId","AccountId"] | |
OwnerChanged | 3205 | ["AssetId","AccountId"] | |
Frozen | 3206 | ["AssetId","AccountId"] | |
Thawed | 3207 | ["AssetId","AccountId"] | |
AssetFrozen | 3208 | ["AssetId"] | |
AssetThawed | 3209 | ["AssetId"] | |
Destroyed | 320a | ["AssetId"] | |
ForceCreated | 320b | ["AssetId","AccountId"] | |
MetadataSet | 320c | ["AssetId","Bytes","Bytes","u8","bool"] | |
MetadataCleared | 320d | ["AssetId"] | |
ApprovedTransfer | 320e | ["AssetId","AccountId","AccountId","Balance"] | |
ApprovalCancelled | 320f | ["AssetId","AccountId","AccountId"] | |
TransferredApproved | 3210 | ["AssetId","AccountId","AccountId","AccountId","Balance"] | |
AssetStatusChanged | 3211 | ["AssetId"] |
Name | Type | |
---|---|---|
Asset | {"origin":"Map","n_map_type":{"hashers":["Blake2_128Concat"],"key_vec":["U32"],"value":"pallet_assets:types:AssetDetails","keys_id":4,"value_id":275}} | |
Account | {"origin":"Map","n_map_type":{"hashers":["Blake2_128Concat","Blake2_128Concat"],"key_vec":["U32","AccountId"],"value":"pallet_assets:types:AssetAccount","keys_id":276,"value_id":277}} | |
Approvals | {"origin":"Map","n_map_type":{"hashers":["Blake2_128Concat","Blake2_128Concat","Blake2_128Concat"],"key_vec":["U32","AccountId","AccountId"],"value":"pallet_assets:types:Approval","keys_id":279,"value_id":280}} | |
Metadata | {"origin":"Map","n_map_type":{"hashers":["Blake2_128Concat"],"key_vec":["U32"],"value":"pallet_assets:types:AssetMetadata","keys_id":4,"value_id":281}} |
Name | Type | Value | |
---|---|---|---|
AssetDeposit | U128 | 0010a5d4e80000000000000000000000 | |
AssetAccountDeposit | U128 | 0010a5d4e80000000000000000000000 | |
MetadataDepositBase | U128 | 00e5ba5c170000000000000000000000 | |
MetadataDepositPerByte | U128 | 404b4c00000000000000000000000000 | |
ApprovalDeposit | U128 | 00ca9a3b000000000000000000000000 | |
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. |