Name | Lookup | Parameters | |
---|---|---|---|
create | 2400 | 3 | |
force_create | 2401 | 4 | |
destroy | 2402 | 2 | |
mint | 2403 | 3 | |
burn | 2404 | 3 | |
transfer | 2405 | 3 | |
transfer_keep_alive | 2406 | 3 | |
force_transfer | 2407 | 4 | |
freeze | 2408 | 2 | |
thaw | 2409 | 2 | |
freeze_asset | 240a | 1 | |
thaw_asset | 240b | 1 | |
transfer_ownership | 240c | 2 | |
set_team | 240d | 4 | |
set_metadata | 240e | 4 | |
clear_metadata | 240f | 1 | |
force_set_metadata | 2410 | 5 | |
force_clear_metadata | 2411 | 1 | |
force_asset_status | 2412 | 8 | |
approve_transfer | 2413 | 3 | |
cancel_approval | 2414 | 2 | |
force_cancel_approval | 2415 | 3 | |
transfer_approved | 2416 | 4 | |
touch | 2417 | 1 | |
refund | 2418 | 2 |
Name | Lookup | Attributes | |
---|---|---|---|
Created | 2400 | ["AssetId","AccountId","AccountId"] | |
Issued | 2401 | ["AssetId","AccountId","Balance"] | |
Transferred | 2402 | ["AssetId","AccountId","AccountId","Balance"] | |
Burned | 2403 | ["AssetId","AccountId","Balance"] | |
TeamChanged | 2404 | ["AssetId","AccountId","AccountId","AccountId"] | |
OwnerChanged | 2405 | ["AssetId","AccountId"] | |
Frozen | 2406 | ["AssetId","AccountId"] | |
Thawed | 2407 | ["AssetId","AccountId"] | |
AssetFrozen | 2408 | ["AssetId"] | |
AssetThawed | 2409 | ["AssetId"] | |
Destroyed | 240a | ["AssetId"] | |
ForceCreated | 240b | ["AssetId","AccountId"] | |
MetadataSet | 240c | ["AssetId","Bytes","Bytes","u8","bool"] | |
MetadataCleared | 240d | ["AssetId"] | |
ApprovedTransfer | 240e | ["AssetId","AccountId","AccountId","Balance"] | |
ApprovalCancelled | 240f | ["AssetId","AccountId","AccountId"] | |
TransferredApproved | 2410 | ["AssetId","AccountId","AccountId","AccountId","Balance"] | |
AssetStatusChanged | 2411 | ["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":390}} | |
Account | {"origin":"Map","n_map_type":{"hashers":["Blake2_128Concat","Blake2_128Concat"],"key_vec":["U128","AccountId"],"value":"pallet_assets:types:AssetAccount","keys_id":391,"value_id":392}} | |
Approvals | {"origin":"Map","n_map_type":{"hashers":["Blake2_128Concat","Blake2_128Concat","Blake2_128Concat"],"key_vec":["U128","AccountId","AccountId"],"value":"pallet_assets:types:Approval","keys_id":394,"value_id":395}} | |
Metadata | {"origin":"Map","n_map_type":{"hashers":["Blake2_128Concat"],"key_vec":["U128"],"value":"pallet_assets:types:AssetMetadata","keys_id":6,"value_id":396}} |
Name | Type | Value | |
---|---|---|---|
AssetDeposit | U128 | 40420f00000000000000000000000000 | |
AssetAccountDeposit | U128 | 00fe7c6c040000000000000000000000 | |
MetadataDepositBase | U128 | 0072b810100000000000000000000000 | |
MetadataDepositPerByte | U128 | 00ca9a3b000000000000000000000000 | |
ApprovalDeposit | U128 | 40420f00000000000000000000000000 | |
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. |