difftreelog
feat(rmrk) add set_priority
in: master
5 files changed
client/rpc/src/lib.rsdiffbeforeafterboth--- a/client/rpc/src/lib.rs
+++ b/client/rpc/src/lib.rs
@@ -276,14 +276,15 @@
at: Option<BlockHash>,
) -> Result<Vec<ResourceInfo>>;
- #[method(name = "rmrk_nftResourcePriorities")]
- /// Get NFT resource priorities
- fn nft_resource_priorities(
+ #[method(name = "rmrk_nftResourcePriority")]
+ /// Get NFT resource priority
+ fn nft_resource_priority(
&self,
collection_id: RmrkCollectionId,
nft_id: RmrkNftId,
+ resource_id: RmrkResourceId,
at: Option<BlockHash>,
- ) -> Result<Vec<RmrkResourceId>>;
+ ) -> Result<Option<u32>>;
#[method(name = "rmrk_base")]
/// Get base info
@@ -522,7 +523,7 @@
rmrk_api
);
pass_method!(nft_resources(collection_id: RmrkCollectionId, nft_id: RmrkNftId) -> Vec<ResourceInfo>, rmrk_api);
- pass_method!(nft_resource_priorities(collection_id: RmrkCollectionId, nft_id: RmrkNftId) -> Vec<RmrkResourceId>, rmrk_api);
+ pass_method!(nft_resource_priority(collection_id: RmrkCollectionId, nft_id: RmrkNftId, resource_id: RmrkResourceId) -> Option<u32>, rmrk_api);
pass_method!(base(base_id: RmrkBaseId) -> Option<BaseInfo>, rmrk_api);
pass_method!(base_parts(base_id: RmrkBaseId) -> Vec<PartType>, rmrk_api);
pass_method!(theme_names(base_id: RmrkBaseId) -> Vec<RmrkThemeName>, rmrk_api);
pallets/proxy-rmrk-core/src/lib.rsdiffbeforeafterboth--- a/pallets/proxy-rmrk-core/src/lib.rs
+++ b/pallets/proxy-rmrk-core/src/lib.rs
@@ -695,6 +695,34 @@
#[pallet::weight(10_000 + T::DbWeight::get().reads_writes(1,1))]
#[transactional]
+ pub fn set_priority(
+ origin: OriginFor<T>,
+ rmrk_collection_id: RmrkCollectionId,
+ rmrk_nft_id: RmrkNftId,
+ priorities: BoundedVec<RmrkResourceId, RmrkMaxPriorities>,
+ ) -> DispatchResult {
+ let sender = ensure_signed(origin)?;
+ let sender = T::CrossAccountId::from_sub(sender);
+
+ let collection_id = Self::unique_collection_id(rmrk_collection_id)?;
+ let nft_id = rmrk_nft_id.into();
+ let budget = budget::Value::new(NESTING_BUDGET);
+
+ Self::ensure_nft_type(collection_id, nft_id, NftType::Regular)?;
+ Self::ensure_nft_owner(collection_id, nft_id, &sender, &budget)?;
+
+ <PalletNft<T>>::set_scoped_token_property(
+ collection_id,
+ nft_id,
+ PropertyScope::Rmrk,
+ Self::rmrk_property(ResourcePriorities, &priorities.into_inner())?
+ )?;
+
+ Ok(())
+ }
+
+ #[pallet::weight(10_000 + T::DbWeight::get().reads_writes(1,1))]
+ #[transactional]
pub fn add_basic_resource(
origin: OriginFor<T>,
collection_id: RmrkCollectionId,
@@ -1160,7 +1188,7 @@
token_id: TokenId,
) -> Result<NftType, DispatchError> {
Self::get_nft_property_decoded(collection_id, token_id, TokenType)
- .map_err(|_| <Error<T>>::NftTypeEncodeError.into())
+ .map_err(|_| <Error<T>>::NoAvailableNftId.into())
}
pub fn ensure_nft_type(
primitives/data-structs/src/lib.rsdiffbeforeafterboth--- a/primitives/data-structs/src/lib.rs
+++ b/primitives/data-structs/src/lib.rs
@@ -929,6 +929,8 @@
pub const RmrkMaxCollectionsEquippablePerPart: u32 = 100;
#[derive(PartialEq)]
pub const RmrkPartsLimit: u32 = 3;
+ #[derive(PartialEq)]
+ pub const RmrkMaxPriorities: u32 = 3;
}
impl From<RmrkCollectionId> for CollectionId {
primitives/rmrk-rpc/src/lib.rsdiffbeforeafterboth--- a/primitives/rmrk-rpc/src/lib.rs
+++ b/primitives/rmrk-rpc/src/lib.rs
@@ -50,7 +50,7 @@
fn nft_resources(collection_id: CollectionId, nft_id: NftId) -> Result<Vec<ResourceInfo>>;
- fn nft_resource_priorities(collection_id: CollectionId, nft_id: NftId) -> Result<Vec<ResourceId>>;
+ fn nft_resource_priority(collection_id: CollectionId, nft_id: NftId, resource_id: ResourceId) -> Result<Option<u32>>;
fn base(base_id: BaseId) -> Result<Option<BaseInfo>>;
runtime/common/src/runtime_apis.rsdiffbeforeafterboth1#[macro_export]2macro_rules! impl_common_runtime_apis {3 (4 $(5 #![custom_apis]67 $($custom_apis:tt)+8 )?9 ) => {10 impl_runtime_apis! {11 $($($custom_apis)+)?1213 impl up_rpc::UniqueApi<Block, CrossAccountId, AccountId> for Runtime {14 fn account_tokens(collection: CollectionId, account: CrossAccountId) -> Result<Vec<TokenId>, DispatchError> {15 dispatch_unique_runtime!(collection.account_tokens(account))16 }17 fn collection_tokens(collection: CollectionId) -> Result<Vec<TokenId>, DispatchError> {18 dispatch_unique_runtime!(collection.collection_tokens())19 }20 fn token_exists(collection: CollectionId, token: TokenId) -> Result<bool, DispatchError> {21 dispatch_unique_runtime!(collection.token_exists(token))22 }2324 fn token_owner(collection: CollectionId, token: TokenId) -> Result<Option<CrossAccountId>, DispatchError> {25 dispatch_unique_runtime!(collection.token_owner(token))26 }27 fn topmost_token_owner(collection: CollectionId, token: TokenId) -> Result<Option<CrossAccountId>, DispatchError> {28 let budget = up_data_structs::budget::Value::new(10);2930 Ok(Some(<pallet_structure::Pallet<Runtime>>::find_topmost_owner(collection, token, &budget)?))31 }32 fn token_children(collection: CollectionId, token: TokenId) -> Result<Vec<TokenChild>, DispatchError> {33 Ok(<pallet_nonfungible::Pallet<Runtime>>::token_children_ids(collection, token))34 }35 fn collection_properties(36 collection: CollectionId,37 keys: Option<Vec<Vec<u8>>>38 ) -> Result<Vec<Property>, DispatchError> {39 let keys = keys.map(40 |keys| Common::bytes_keys_to_property_keys(keys)41 ).transpose()?;4243 Common::filter_collection_properties(collection, keys)44 }4546 fn token_properties(47 collection: CollectionId,48 token_id: TokenId,49 keys: Option<Vec<Vec<u8>>>50 ) -> Result<Vec<Property>, DispatchError> {51 let keys = keys.map(52 |keys| Common::bytes_keys_to_property_keys(keys)53 ).transpose()?;5455 dispatch_unique_runtime!(collection.token_properties(token_id, keys))56 }5758 fn property_permissions(59 collection: CollectionId,60 keys: Option<Vec<Vec<u8>>>61 ) -> Result<Vec<PropertyKeyPermission>, DispatchError> {62 let keys = keys.map(63 |keys| Common::bytes_keys_to_property_keys(keys)64 ).transpose()?;6566 Common::filter_property_permissions(collection, keys)67 }6869 fn token_data(70 collection: CollectionId,71 token_id: TokenId,72 keys: Option<Vec<Vec<u8>>>73 ) -> Result<TokenData<CrossAccountId>, DispatchError> {74 let token_data = TokenData {75 properties: Self::token_properties(collection, token_id, keys)?,76 owner: Self::token_owner(collection, token_id)?77 };7879 Ok(token_data)80 }8182 fn total_supply(collection: CollectionId) -> Result<u32, DispatchError> {83 dispatch_unique_runtime!(collection.total_supply())84 }85 fn account_balance(collection: CollectionId, account: CrossAccountId) -> Result<u32, DispatchError> {86 dispatch_unique_runtime!(collection.account_balance(account))87 }88 fn balance(collection: CollectionId, account: CrossAccountId, token: TokenId) -> Result<u128, DispatchError> {89 dispatch_unique_runtime!(collection.balance(account, token))90 }91 fn allowance(92 collection: CollectionId,93 sender: CrossAccountId,94 spender: CrossAccountId,95 token: TokenId,96 ) -> Result<u128, DispatchError> {97 dispatch_unique_runtime!(collection.allowance(sender, spender, token))98 }99100 fn adminlist(collection: CollectionId) -> Result<Vec<CrossAccountId>, DispatchError> {101 Ok(<pallet_common::Pallet<Runtime>>::adminlist(collection))102 }103 fn allowlist(collection: CollectionId) -> Result<Vec<CrossAccountId>, DispatchError> {104 Ok(<pallet_common::Pallet<Runtime>>::allowlist(collection))105 }106 fn allowed(collection: CollectionId, user: CrossAccountId) -> Result<bool, DispatchError> {107 Ok(<pallet_common::Pallet<Runtime>>::allowed(collection, user))108 }109 fn last_token_id(collection: CollectionId) -> Result<TokenId, DispatchError> {110 dispatch_unique_runtime!(collection.last_token_id())111 }112 fn collection_by_id(collection: CollectionId) -> Result<Option<RpcCollection<AccountId>>, DispatchError> {113 Ok(<pallet_common::Pallet<Runtime>>::rpc_collection(collection))114 }115 fn collection_stats() -> Result<CollectionStats, DispatchError> {116 Ok(<pallet_common::Pallet<Runtime>>::collection_stats())117 }118 fn next_sponsored(collection: CollectionId, account: CrossAccountId, token: TokenId) -> Result<Option<u64>, DispatchError> {119 Ok(<$crate::sponsoring::UniqueSponsorshipPredict<Runtime> as120 $crate::sponsoring::SponsorshipPredict<Runtime>>::predict(121 collection,122 account,123 token))124 }125126 fn effective_collection_limits(collection: CollectionId) -> Result<Option<CollectionLimits>, DispatchError> {127 Ok(<pallet_common::Pallet<Runtime>>::effective_collection_limits(collection))128 }129 }130131 impl rmrk_rpc::RmrkApi<132 Block,133 AccountId,134 RmrkCollectionInfo<AccountId>,135 RmrkInstanceInfo<AccountId>,136 RmrkResourceInfo,137 RmrkPropertyInfo,138 RmrkBaseInfo<AccountId>,139 RmrkPartType,140 RmrkTheme141 > for Runtime {142 fn last_collection_idx() -> Result<RmrkCollectionId, DispatchError> {143 Ok(RmrkCore::last_collection_idx())144 }145146 fn collection_by_id(collection_id: RmrkCollectionId) -> Result<Option<RmrkCollectionInfo<AccountId>>, DispatchError> {147 use pallet_proxy_rmrk_core::{RmrkProperty, misc::CollectionType};148 use pallet_common::CommonCollectionOperations;149150 let (collection, collection_id) = match RmrkCore::get_typed_nft_collection_mapped(collection_id, CollectionType::Regular) {151 Ok(c) => c,152 Err(_) => return Ok(None),153 };154155 let nfts_count = collection.total_supply();156157 Ok(Some(RmrkCollectionInfo {158 issuer: collection.owner.clone(),159 metadata: RmrkCore::get_collection_property_decoded(collection_id, RmrkProperty::Metadata)?,160 max: collection.limits.token_limit,161 symbol: RmrkCore::rebind(&collection.token_prefix)?,162 nfts_count163 }))164 }165166 fn nft_by_id(collection_id: RmrkCollectionId, nft_by_id: RmrkNftId) -> Result<Option<RmrkInstanceInfo<AccountId>>, DispatchError> {167 use up_data_structs::mapping::TokenAddressMapping;168 use pallet_proxy_rmrk_core::{RmrkProperty, misc::CollectionType};169 use pallet_common::CommonCollectionOperations;170171 let (collection, collection_id) = match RmrkCore::get_typed_nft_collection_mapped(collection_id, CollectionType::Regular) {172 Ok(c) => c,173 Err(_) => return Ok(None),174 };175176 let nft_id = TokenId(nft_by_id);177 if !RmrkCore::nft_exists(collection_id, nft_id) { return Ok(None); }178179 let owner = match collection.token_owner(nft_id) {180 Some(owner) => match <Runtime as pallet_common::Config>::CrossTokenAddressMapping::address_to_token(&owner) {181 Some((col, tok)) => {182 let rmrk_collection = RmrkCore::rmrk_collection_id(col)?;183184 RmrkAccountIdOrCollectionNftTuple::CollectionAndNftTuple(rmrk_collection, tok.0)185 }186 None => RmrkAccountIdOrCollectionNftTuple::AccountId(owner.as_sub().clone())187 },188 None => return Ok(None)189 };190191 Ok(Some(RmrkInstanceInfo {192 owner: owner,193 royalty: RmrkCore::get_nft_property_decoded(collection_id, nft_id, RmrkProperty::RoyaltyInfo)?,194 metadata: RmrkCore::get_nft_property_decoded(collection_id, nft_id, RmrkProperty::Metadata)?,195 equipped: RmrkCore::get_nft_property_decoded(collection_id, nft_id, RmrkProperty::Equipped)?,196 pending: RmrkCore::get_nft_property_decoded(collection_id, nft_id, RmrkProperty::PendingNftAccept)?,197 }))198 }199200 fn account_tokens(account_id: AccountId, collection_id: RmrkCollectionId) -> Result<Vec<RmrkNftId>, DispatchError> {201 use pallet_proxy_rmrk_core::{RmrkProperty, misc::CollectionType};202 use pallet_common::CommonCollectionOperations;203204 let cross_account_id = CrossAccountId::from_sub(account_id);205206 let (collection, collection_id) = match RmrkCore::get_typed_nft_collection_mapped(collection_id, CollectionType::Regular) {207 Ok(c) => c,208 Err(_) => return Ok(Vec::new()),209 };210211 let tokens = collection.account_tokens(cross_account_id)212 .into_iter()213 .filter(|token| {214 let is_pending = RmrkCore::get_nft_property_decoded(215 collection_id,216 *token,217 RmrkProperty::PendingNftAccept218 ).unwrap_or(true);219220 !is_pending221 })222 .map(|token| token.0)223 .collect();224225 Ok(tokens)226 }227228 fn nft_children(collection_id: RmrkCollectionId, nft_id: RmrkNftId) -> Result<Vec<RmrkNftChild>, DispatchError> {229 use pallet_proxy_rmrk_core::RmrkProperty;230231 let collection_id = match RmrkCore::unique_collection_id(collection_id) {232 Ok(id) => id,233 Err(_) => return Ok(Vec::new())234 };235 let nft_id = TokenId(nft_id);236 if !RmrkCore::nft_exists(collection_id, nft_id) { return Ok(Vec::new()); }237238 Ok(239 pallet_nonfungible::TokenChildren::<Runtime>::iter_prefix((collection_id, nft_id))240 .filter_map(|((child_collection, child_token), _)| {241 let is_pending = RmrkCore::get_nft_property_decoded(242 child_collection,243 child_token,244 RmrkProperty::PendingNftAccept245 ).ok()?;246247 if is_pending {248 return None;249 }250251 let rmrk_child_collection = RmrkCore::rmrk_collection_id(252 child_collection253 ).ok()?;254255 Some(RmrkNftChild {256 collection_id: rmrk_child_collection,257 nft_id: child_token.0,258 })259 }).collect()260 )261 }262263 fn collection_properties(collection_id: RmrkCollectionId, filter_keys: Option<Vec<RmrkPropertyKey>>) -> Result<Vec<RmrkPropertyInfo>, DispatchError> {264 use pallet_proxy_rmrk_core::misc::CollectionType;265266 let collection_id = match RmrkCore::unique_collection_id(collection_id) {267 Ok(id) => id,268 Err(_) => return Ok(Vec::new())269 };270 if RmrkCore::ensure_collection_type(collection_id, CollectionType::Regular).is_err() {271 return Ok(Vec::new());272 }273274 let properties = RmrkCore::filter_user_properties(275 collection_id,276 /* token_id = */ None,277 filter_keys,278 |key, value| RmrkPropertyInfo {279 key,280 value281 }282 )?;283284 Ok(properties)285 }286287 fn nft_properties(collection_id: RmrkCollectionId, nft_id: RmrkNftId, filter_keys: Option<Vec<RmrkPropertyKey>>) -> Result<Vec<RmrkPropertyInfo>, DispatchError> {288 use pallet_proxy_rmrk_core::misc::NftType;289290 let collection_id = match RmrkCore::unique_collection_id(collection_id) {291 Ok(id) => id,292 Err(_) => return Ok(Vec::new())293 };294 let token_id = TokenId(nft_id);295296 if RmrkCore::ensure_nft_type(collection_id, token_id, NftType::Regular).is_err() {297 return Ok(Vec::new());298 }299300 let properties = RmrkCore::filter_user_properties(301 collection_id,302 Some(token_id),303 filter_keys,304 |key, value| RmrkPropertyInfo {305 key,306 value307 }308 )?;309310 Ok(properties)311 }312313 fn nft_resources(collection_id: RmrkCollectionId, nft_id: RmrkNftId) -> Result<Vec<RmrkResourceInfo>, DispatchError> {314 use pallet_proxy_rmrk_core::{RmrkProperty, misc::{CollectionType, NftType, ResourceType}};315 use pallet_common::CommonCollectionOperations;316317 let collection_id = match RmrkCore::unique_collection_id(collection_id) {318 Ok(id) => id,319 Err(_) => return Ok(Vec::new())320 };321 if RmrkCore::ensure_collection_type(collection_id, CollectionType::Regular).is_err() { return Ok(Vec::new()); }322323 let nft_id = TokenId(nft_id);324 if RmrkCore::ensure_nft_type(collection_id, nft_id, NftType::Regular).is_err() { return Ok(Vec::new()); }325326 let res_collection_id: CollectionId = RmrkCore::get_nft_property_decoded(collection_id, nft_id, RmrkProperty::ResourceCollection)?;327 let resource_collection = RmrkCore::get_typed_nft_collection(res_collection_id, CollectionType::Resource)?;328329 let resources = resource_collection330 .collection_tokens()331 .iter()332 .filter_map(|(res_id)| Some(RmrkResourceInfo {333 id: res_id.0,334 pending: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::PendingResourceAccept).unwrap(),335 pending_removal: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::PendingResourceRemoval).unwrap(),336 resource: match RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::ResourceType).unwrap() {337 ResourceType::Basic => RmrkResourceTypes::Basic(RmrkBasicResource {338 src: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Src).unwrap(),339 metadata: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Metadata).unwrap(),340 license: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::License).unwrap(),341 thumb: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Thumb).unwrap(),342 }),343 ResourceType::Composable => RmrkResourceTypes::Composable(RmrkComposableResource {344 parts: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Parts).unwrap(),345 base: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Base).unwrap(),346 src: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Src).unwrap(),347 metadata: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Metadata).unwrap(),348 license: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::License).unwrap(),349 thumb: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Thumb).unwrap(),350 }),351 ResourceType::Slot => RmrkResourceTypes::Slot(RmrkSlotResource {352 base: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Base).unwrap(),353 src: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Src).unwrap(),354 metadata: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Metadata).unwrap(),355 slot: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Slot).unwrap(),356 license: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::License).unwrap(),357 thumb: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Thumb).unwrap(),358 }),359 },360 }))361 .collect();362363 Ok(resources)364 }365366 fn nft_resource_priorities(collection_id: RmrkCollectionId, nft_id: RmrkNftId) -> Result<Vec<RmrkResourceId>, DispatchError> {367 use pallet_proxy_rmrk_core::{RmrkProperty, misc::{CollectionType, NftType}};368369 let collection_id = match RmrkCore::unique_collection_id(collection_id) {370 Ok(id) => id,371 Err(_) => return Ok(Vec::new())372 };373 if RmrkCore::ensure_collection_type(collection_id, CollectionType::Regular).is_err() { return Ok(Vec::new()); }374375 let nft_id = TokenId(nft_id);376 if RmrkCore::ensure_nft_type(collection_id, nft_id, NftType::Regular).is_err() { return Ok(Vec::new()); }377378 /*let resource_collection_id: CollectionId = RmrkCore::get_nft_property_decoded(collection_id, nft_id, RmrkProperty::ResourceCollection)379 .unwrap();380 if RmrkCore::ensure_collection_type(collection_id, CollectionType::Resource).is_err() { return Ok(Vec::new()); }381382 let resources = pallet_nonfungible::TokenProperties::<Runtime>::iter_prefix((resource_collection_id,))383 .filter_map(|(resource_id, properties)| Some((384 resource_id, // ResourceId property385 RmrkCore::get_nft_property_decoded(resource_collection_id, resource_id, RmrkProperty::Priority).unwrap(),386 )))387 .collect()388 .sort_by_key(|(_, index)| *index)389 .into_iter().map(|(resource_id, _)| resource_id)*/390 let priorities = RmrkCore::get_nft_property_decoded(collection_id, nft_id, RmrkProperty::ResourcePriorities)?;391392 Ok(priorities)393 }394395 fn base(base_id: RmrkBaseId) -> Result<Option<RmrkBaseInfo<AccountId>>, DispatchError> {396 use pallet_proxy_rmrk_core::{397 RmrkProperty, misc::{CollectionType},398 };399400 let (collection, collection_id) = match RmrkCore::get_typed_nft_collection_mapped(base_id, CollectionType::Base) {401 Ok(c) => c,402 Err(_) => return Ok(None),403 };404405 Ok(Some(RmrkBaseInfo {406 issuer: collection.owner.clone(),407 base_type: RmrkCore::get_collection_property_decoded(collection_id, RmrkProperty::BaseType)?,408 symbol: RmrkCore::rebind(&collection.token_prefix)?,409 }))410 }411412 fn base_parts(base_id: RmrkBaseId) -> Result<Vec<RmrkPartType>, DispatchError> {413 use pallet_proxy_rmrk_core::{RmrkProperty, misc::{CollectionType, NftType}};414 use pallet_common::CommonCollectionOperations;415416 let (collection, collection_id) = match RmrkCore::get_typed_nft_collection_mapped(base_id, CollectionType::Base) {417 Ok(c) => c,418 Err(_) => return Ok(Vec::new()),419 };420421 let parts = collection.collection_tokens()422 .into_iter()423 .filter_map(|token_id| {424 let nft_type = RmrkCore::get_nft_type(collection_id, token_id).ok()?;425426 match nft_type {427 NftType::FixedPart => Some(RmrkPartType::FixedPart(RmrkFixedPart {428 id: RmrkCore::get_nft_property_decoded(collection_id, token_id, RmrkProperty::ExternalPartId).ok()?,429 src: RmrkCore::get_nft_property_decoded(collection_id, token_id, RmrkProperty::Src).ok()?,430 z: RmrkCore::get_nft_property_decoded(collection_id, token_id, RmrkProperty::ZIndex).ok()?,431 })),432 NftType::SlotPart => Some(RmrkPartType::SlotPart(RmrkSlotPart {433 id: RmrkCore::get_nft_property_decoded(collection_id, token_id, RmrkProperty::ExternalPartId).ok()?,434 src: RmrkCore::get_nft_property_decoded(collection_id, token_id, RmrkProperty::Src).ok()?,435 z: RmrkCore::get_nft_property_decoded(collection_id, token_id, RmrkProperty::ZIndex).ok()?,436 equippable: RmrkCore::get_nft_property_decoded(collection_id, token_id, RmrkProperty::EquippableList).ok()?,437 })),438 _ => None439 }440 })441 .collect();442443 Ok(parts)444 }445446 fn theme_names(base_id: RmrkBaseId) -> Result<Vec<RmrkThemeName>, DispatchError> {447 use pallet_proxy_rmrk_core::{RmrkProperty, misc::CollectionType};448 use pallet_common::CommonCollectionOperations;449450 let (collection, collection_id) = match RmrkCore::get_typed_nft_collection_mapped(base_id, CollectionType::Base) {451 Ok(c) => c,452 Err(_) => return Ok(Vec::new()),453 };454455 let theme_names = collection.collection_tokens()456 .iter()457 .filter_map(|token_id| {458 let nft_type = RmrkCore::get_nft_type(collection_id, *token_id).unwrap();459460 match nft_type {461 Theme => Some(462 RmrkCore::get_nft_property_decoded(collection_id, *token_id, RmrkProperty::ThemeName).unwrap()463 ),464 _ => None465 }466 })467 .collect();468469 Ok(theme_names)470 }471472 fn theme(base_id: RmrkBaseId, theme_name: RmrkThemeName, filter_keys: Option<Vec<RmrkPropertyKey>>) -> Result<Option<RmrkTheme>, DispatchError> {473 use pallet_proxy_rmrk_core::{474 RmrkProperty,475 misc::{CollectionType, NftType}476 };477 use pallet_common::CommonCollectionOperations;478479 let (collection, collection_id) = match RmrkCore::get_typed_nft_collection_mapped(base_id, CollectionType::Base) {480 Ok(c) => c,481 Err(_) => return Ok(None),482 };483484 let theme_info = collection.collection_tokens()485 .into_iter()486 .find_map(|token_id| {487 RmrkCore::ensure_nft_type(collection_id, token_id, NftType::Theme).ok()?;488489 let name: RmrkString = RmrkCore::get_nft_property_decoded(490 collection_id, token_id, RmrkProperty::ThemeName491 ).ok()?;492493 if name == theme_name {494 Some((name, token_id))495 } else {496 None497 }498 });499500 let (name, theme_id) = match theme_info {501 Some((name, theme_id)) => (name, theme_id),502 None => return Ok(None)503 };504505 let properties = RmrkCore::filter_user_properties(506 collection_id,507 Some(theme_id),508 filter_keys,509 |key, value| RmrkThemeProperty {510 key,511 value512 }513 )?;514515 let inherit = RmrkCore::get_nft_property_decoded(516 collection_id,517 theme_id,518 RmrkProperty::ThemeInherit519 )?;520521 let theme = RmrkTheme {522 name,523 properties,524 inherit,525 };526527 Ok(Some(theme))528 }529 }530531 impl sp_api::Core<Block> for Runtime {532 fn version() -> RuntimeVersion {533 VERSION534 }535536 fn execute_block(block: Block) {537 Executive::execute_block(block)538 }539540 fn initialize_block(header: &<Block as BlockT>::Header) {541 Executive::initialize_block(header)542 }543 }544545 impl sp_api::Metadata<Block> for Runtime {546 fn metadata() -> OpaqueMetadata {547 OpaqueMetadata::new(Runtime::metadata().into())548 }549 }550551 impl sp_block_builder::BlockBuilder<Block> for Runtime {552 fn apply_extrinsic(extrinsic: <Block as BlockT>::Extrinsic) -> ApplyExtrinsicResult {553 Executive::apply_extrinsic(extrinsic)554 }555556 fn finalize_block() -> <Block as BlockT>::Header {557 Executive::finalize_block()558 }559560 fn inherent_extrinsics(data: sp_inherents::InherentData) -> Vec<<Block as BlockT>::Extrinsic> {561 data.create_extrinsics()562 }563564 fn check_inherents(565 block: Block,566 data: sp_inherents::InherentData,567 ) -> sp_inherents::CheckInherentsResult {568 data.check_extrinsics(&block)569 }570571 // fn random_seed() -> <Block as BlockT>::Hash {572 // RandomnessCollectiveFlip::random_seed().0573 // }574 }575576 impl sp_transaction_pool::runtime_api::TaggedTransactionQueue<Block> for Runtime {577 fn validate_transaction(578 source: TransactionSource,579 tx: <Block as BlockT>::Extrinsic,580 hash: <Block as BlockT>::Hash,581 ) -> TransactionValidity {582 Executive::validate_transaction(source, tx, hash)583 }584 }585586 impl sp_offchain::OffchainWorkerApi<Block> for Runtime {587 fn offchain_worker(header: &<Block as BlockT>::Header) {588 Executive::offchain_worker(header)589 }590 }591592 impl fp_rpc::EthereumRuntimeRPCApi<Block> for Runtime {593 fn chain_id() -> u64 {594 <Runtime as pallet_evm::Config>::ChainId::get()595 }596597 fn account_basic(address: H160) -> EVMAccount {598 let (account, _) = EVM::account_basic(&address);599 account600 }601602 fn gas_price() -> U256 {603 let (price, _) = <Runtime as pallet_evm::Config>::FeeCalculator::min_gas_price();604 price605 }606607 fn account_code_at(address: H160) -> Vec<u8> {608 EVM::account_codes(address)609 }610611 fn author() -> H160 {612 <pallet_evm::Pallet<Runtime>>::find_author()613 }614615 fn storage_at(address: H160, index: U256) -> H256 {616 let mut tmp = [0u8; 32];617 index.to_big_endian(&mut tmp);618 EVM::account_storages(address, H256::from_slice(&tmp[..]))619 }620621 #[allow(clippy::redundant_closure)]622 fn call(623 from: H160,624 to: H160,625 data: Vec<u8>,626 value: U256,627 gas_limit: U256,628 max_fee_per_gas: Option<U256>,629 max_priority_fee_per_gas: Option<U256>,630 nonce: Option<U256>,631 estimate: bool,632 access_list: Option<Vec<(H160, Vec<H256>)>>,633 ) -> Result<pallet_evm::CallInfo, sp_runtime::DispatchError> {634 let config = if estimate {635 let mut config = <Runtime as pallet_evm::Config>::config().clone();636 config.estimate = true;637 Some(config)638 } else {639 None640 };641642 let is_transactional = false;643 <Runtime as pallet_evm::Config>::Runner::call(644 CrossAccountId::from_eth(from),645 to,646 data,647 value,648 gas_limit.low_u64(),649 max_fee_per_gas,650 max_priority_fee_per_gas,651 nonce,652 access_list.unwrap_or_default(),653 is_transactional,654 config.as_ref().unwrap_or_else(|| <Runtime as pallet_evm::Config>::config()),655 ).map_err(|err| err.error.into())656 }657658 #[allow(clippy::redundant_closure)]659 fn create(660 from: H160,661 data: Vec<u8>,662 value: U256,663 gas_limit: U256,664 max_fee_per_gas: Option<U256>,665 max_priority_fee_per_gas: Option<U256>,666 nonce: Option<U256>,667 estimate: bool,668 access_list: Option<Vec<(H160, Vec<H256>)>>,669 ) -> Result<pallet_evm::CreateInfo, sp_runtime::DispatchError> {670 let config = if estimate {671 let mut config = <Runtime as pallet_evm::Config>::config().clone();672 config.estimate = true;673 Some(config)674 } else {675 None676 };677678 let is_transactional = false;679 <Runtime as pallet_evm::Config>::Runner::create(680 CrossAccountId::from_eth(from),681 data,682 value,683 gas_limit.low_u64(),684 max_fee_per_gas,685 max_priority_fee_per_gas,686 nonce,687 access_list.unwrap_or_default(),688 is_transactional,689 config.as_ref().unwrap_or_else(|| <Runtime as pallet_evm::Config>::config()),690 ).map_err(|err| err.error.into())691 }692693 fn current_transaction_statuses() -> Option<Vec<TransactionStatus>> {694 Ethereum::current_transaction_statuses()695 }696697 fn current_block() -> Option<pallet_ethereum::Block> {698 Ethereum::current_block()699 }700701 fn current_receipts() -> Option<Vec<pallet_ethereum::Receipt>> {702 Ethereum::current_receipts()703 }704705 fn current_all() -> (706 Option<pallet_ethereum::Block>,707 Option<Vec<pallet_ethereum::Receipt>>,708 Option<Vec<TransactionStatus>>709 ) {710 (711 Ethereum::current_block(),712 Ethereum::current_receipts(),713 Ethereum::current_transaction_statuses()714 )715 }716717 fn extrinsic_filter(xts: Vec<<Block as sp_api::BlockT>::Extrinsic>) -> Vec<pallet_ethereum::Transaction> {718 xts.into_iter().filter_map(|xt| match xt.0.function {719 Call::Ethereum(pallet_ethereum::Call::transact { transaction }) => Some(transaction),720 _ => None721 }).collect()722 }723724 fn elasticity() -> Option<Permill> {725 None726 }727 }728729 impl fp_rpc::ConvertTransactionRuntimeApi<Block> for Runtime {730 fn convert_transaction(transaction: pallet_ethereum::Transaction) -> <Block as BlockT>::Extrinsic {731 UncheckedExtrinsic::new_unsigned(732 pallet_ethereum::Call::<Runtime>::transact { transaction }.into(),733 )734 }735 }736737 impl sp_session::SessionKeys<Block> for Runtime {738 fn decode_session_keys(739 encoded: Vec<u8>,740 ) -> Option<Vec<(Vec<u8>, KeyTypeId)>> {741 SessionKeys::decode_into_raw_public_keys(&encoded)742 }743744 fn generate_session_keys(seed: Option<Vec<u8>>) -> Vec<u8> {745 SessionKeys::generate(seed)746 }747 }748749 impl sp_consensus_aura::AuraApi<Block, AuraId> for Runtime {750 fn slot_duration() -> sp_consensus_aura::SlotDuration {751 sp_consensus_aura::SlotDuration::from_millis(Aura::slot_duration())752 }753754 fn authorities() -> Vec<AuraId> {755 Aura::authorities().to_vec()756 }757 }758759 impl cumulus_primitives_core::CollectCollationInfo<Block> for Runtime {760 fn collect_collation_info(header: &<Block as BlockT>::Header) -> cumulus_primitives_core::CollationInfo {761 ParachainSystem::collect_collation_info(header)762 }763 }764765 impl frame_system_rpc_runtime_api::AccountNonceApi<Block, AccountId, Index> for Runtime {766 fn account_nonce(account: AccountId) -> Index {767 System::account_nonce(account)768 }769 }770771 impl pallet_transaction_payment_rpc_runtime_api::TransactionPaymentApi<Block, Balance> for Runtime {772 fn query_info(uxt: <Block as BlockT>::Extrinsic, len: u32) -> RuntimeDispatchInfo<Balance> {773 TransactionPayment::query_info(uxt, len)774 }775 fn query_fee_details(uxt: <Block as BlockT>::Extrinsic, len: u32) -> FeeDetails<Balance> {776 TransactionPayment::query_fee_details(uxt, len)777 }778 }779780 /*781 impl pallet_contracts_rpc_runtime_api::ContractsApi<Block, AccountId, Balance, BlockNumber, Hash>782 for Runtime783 {784 fn call(785 origin: AccountId,786 dest: AccountId,787 value: Balance,788 gas_limit: u64,789 input_data: Vec<u8>,790 ) -> pallet_contracts_primitives::ContractExecResult {791 Contracts::bare_call(origin, dest, value, gas_limit, input_data, false)792 }793794 fn instantiate(795 origin: AccountId,796 endowment: Balance,797 gas_limit: u64,798 code: pallet_contracts_primitives::Code<Hash>,799 data: Vec<u8>,800 salt: Vec<u8>,801 ) -> pallet_contracts_primitives::ContractInstantiateResult<AccountId, BlockNumber>802 {803 Contracts::bare_instantiate(origin, endowment, gas_limit, code, data, salt, true, false)804 }805806 fn get_storage(807 address: AccountId,808 key: [u8; 32],809 ) -> pallet_contracts_primitives::GetStorageResult {810 Contracts::get_storage(address, key)811 }812813 fn rent_projection(814 address: AccountId,815 ) -> pallet_contracts_primitives::RentProjectionResult<BlockNumber> {816 Contracts::rent_projection(address)817 }818 }819 */820821 #[cfg(feature = "runtime-benchmarks")]822 impl frame_benchmarking::Benchmark<Block> for Runtime {823 fn benchmark_metadata(extra: bool) -> (824 Vec<frame_benchmarking::BenchmarkList>,825 Vec<frame_support::traits::StorageInfo>,826 ) {827 use frame_benchmarking::{list_benchmark, Benchmarking, BenchmarkList};828 use frame_support::traits::StorageInfoTrait;829830 let mut list = Vec::<BenchmarkList>::new();831832 list_benchmark!(list, extra, pallet_evm_migration, EvmMigration);833 list_benchmark!(list, extra, pallet_common, Common);834 list_benchmark!(list, extra, pallet_unique, Unique);835 list_benchmark!(list, extra, pallet_structure, Structure);836 list_benchmark!(list, extra, pallet_inflation, Inflation);837 list_benchmark!(list, extra, pallet_fungible, Fungible);838 list_benchmark!(list, extra, pallet_refungible, Refungible);839 list_benchmark!(list, extra, pallet_nonfungible, Nonfungible);840 // list_benchmark!(list, extra, pallet_evm_coder_substrate, EvmCoderSubstrate);841842 let storage_info = AllPalletsReversedWithSystemFirst::storage_info();843844 return (list, storage_info)845 }846847 fn dispatch_benchmark(848 config: frame_benchmarking::BenchmarkConfig849 ) -> Result<Vec<frame_benchmarking::BenchmarkBatch>, sp_runtime::RuntimeString> {850 use frame_benchmarking::{Benchmarking, BenchmarkBatch, add_benchmark, TrackedStorageKey};851852 let allowlist: Vec<TrackedStorageKey> = vec![853 // Total Issuance854 hex_literal::hex!("c2261276cc9d1f8598ea4b6a74b15c2f57c875e4cff74148e4628f264b974c80").to_vec().into(),855856 // Block Number857 hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef702a5c1b19ab7a04f536c519aca4983ac").to_vec().into(),858 // Execution Phase859 hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef7ff553b5a9862a516939d82b3d3d8661a").to_vec().into(),860 // Event Count861 hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef70a98fdbe9ce6c55837576c60c7af3850").to_vec().into(),862 // System Events863 hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef780d41e5e16056765bc8461851072c9d7").to_vec().into(),864865 // Evm CurrentLogs866 hex_literal::hex!("1da53b775b270400e7e61ed5cbc5a146547f210cec367e9af919603343b9cb56").to_vec().into(),867868 // Transactional depth869 hex_literal::hex!("3a7472616e73616374696f6e5f6c6576656c3a").to_vec().into(),870 ];871872 let mut batches = Vec::<BenchmarkBatch>::new();873 let params = (&config, &allowlist);874875 add_benchmark!(params, batches, pallet_evm_migration, EvmMigration);876 add_benchmark!(params, batches, pallet_common, Common);877 add_benchmark!(params, batches, pallet_unique, Unique);878 add_benchmark!(params, batches, pallet_structure, Structure);879 add_benchmark!(params, batches, pallet_inflation, Inflation);880 add_benchmark!(params, batches, pallet_fungible, Fungible);881 add_benchmark!(params, batches, pallet_refungible, Refungible);882 add_benchmark!(params, batches, pallet_nonfungible, Nonfungible);883 // add_benchmark!(params, batches, pallet_evm_coder_substrate, EvmCoderSubstrate);884885 if batches.is_empty() { return Err("Benchmark not found for this pallet.".into()) }886 Ok(batches)887 }888 }889890 #[cfg(feature = "try-runtime")]891 impl frame_try_runtime::TryRuntime<Block> for Runtime {892 fn on_runtime_upgrade() -> (Weight, Weight) {893 log::info!("try-runtime::on_runtime_upgrade unique-chain.");894 let weight = Executive::try_runtime_upgrade().unwrap();895 (weight, RuntimeBlockWeights::get().max_block)896 }897898 fn execute_block_no_check(block: Block) -> Weight {899 Executive::execute_block_no_check(block)900 }901 }902 }903 }904}1#[macro_export]2macro_rules! impl_common_runtime_apis {3 (4 $(5 #![custom_apis]67 $($custom_apis:tt)+8 )?9 ) => {10 impl_runtime_apis! {11 $($($custom_apis)+)?1213 impl up_rpc::UniqueApi<Block, CrossAccountId, AccountId> for Runtime {14 fn account_tokens(collection: CollectionId, account: CrossAccountId) -> Result<Vec<TokenId>, DispatchError> {15 dispatch_unique_runtime!(collection.account_tokens(account))16 }17 fn collection_tokens(collection: CollectionId) -> Result<Vec<TokenId>, DispatchError> {18 dispatch_unique_runtime!(collection.collection_tokens())19 }20 fn token_exists(collection: CollectionId, token: TokenId) -> Result<bool, DispatchError> {21 dispatch_unique_runtime!(collection.token_exists(token))22 }2324 fn token_owner(collection: CollectionId, token: TokenId) -> Result<Option<CrossAccountId>, DispatchError> {25 dispatch_unique_runtime!(collection.token_owner(token))26 }27 fn topmost_token_owner(collection: CollectionId, token: TokenId) -> Result<Option<CrossAccountId>, DispatchError> {28 let budget = up_data_structs::budget::Value::new(10);2930 Ok(Some(<pallet_structure::Pallet<Runtime>>::find_topmost_owner(collection, token, &budget)?))31 }32 fn token_children(collection: CollectionId, token: TokenId) -> Result<Vec<TokenChild>, DispatchError> {33 Ok(<pallet_nonfungible::Pallet<Runtime>>::token_children_ids(collection, token))34 }35 fn collection_properties(36 collection: CollectionId,37 keys: Option<Vec<Vec<u8>>>38 ) -> Result<Vec<Property>, DispatchError> {39 let keys = keys.map(40 |keys| Common::bytes_keys_to_property_keys(keys)41 ).transpose()?;4243 Common::filter_collection_properties(collection, keys)44 }4546 fn token_properties(47 collection: CollectionId,48 token_id: TokenId,49 keys: Option<Vec<Vec<u8>>>50 ) -> Result<Vec<Property>, DispatchError> {51 let keys = keys.map(52 |keys| Common::bytes_keys_to_property_keys(keys)53 ).transpose()?;5455 dispatch_unique_runtime!(collection.token_properties(token_id, keys))56 }5758 fn property_permissions(59 collection: CollectionId,60 keys: Option<Vec<Vec<u8>>>61 ) -> Result<Vec<PropertyKeyPermission>, DispatchError> {62 let keys = keys.map(63 |keys| Common::bytes_keys_to_property_keys(keys)64 ).transpose()?;6566 Common::filter_property_permissions(collection, keys)67 }6869 fn token_data(70 collection: CollectionId,71 token_id: TokenId,72 keys: Option<Vec<Vec<u8>>>73 ) -> Result<TokenData<CrossAccountId>, DispatchError> {74 let token_data = TokenData {75 properties: Self::token_properties(collection, token_id, keys)?,76 owner: Self::token_owner(collection, token_id)?77 };7879 Ok(token_data)80 }8182 fn total_supply(collection: CollectionId) -> Result<u32, DispatchError> {83 dispatch_unique_runtime!(collection.total_supply())84 }85 fn account_balance(collection: CollectionId, account: CrossAccountId) -> Result<u32, DispatchError> {86 dispatch_unique_runtime!(collection.account_balance(account))87 }88 fn balance(collection: CollectionId, account: CrossAccountId, token: TokenId) -> Result<u128, DispatchError> {89 dispatch_unique_runtime!(collection.balance(account, token))90 }91 fn allowance(92 collection: CollectionId,93 sender: CrossAccountId,94 spender: CrossAccountId,95 token: TokenId,96 ) -> Result<u128, DispatchError> {97 dispatch_unique_runtime!(collection.allowance(sender, spender, token))98 }99100 fn adminlist(collection: CollectionId) -> Result<Vec<CrossAccountId>, DispatchError> {101 Ok(<pallet_common::Pallet<Runtime>>::adminlist(collection))102 }103 fn allowlist(collection: CollectionId) -> Result<Vec<CrossAccountId>, DispatchError> {104 Ok(<pallet_common::Pallet<Runtime>>::allowlist(collection))105 }106 fn allowed(collection: CollectionId, user: CrossAccountId) -> Result<bool, DispatchError> {107 Ok(<pallet_common::Pallet<Runtime>>::allowed(collection, user))108 }109 fn last_token_id(collection: CollectionId) -> Result<TokenId, DispatchError> {110 dispatch_unique_runtime!(collection.last_token_id())111 }112 fn collection_by_id(collection: CollectionId) -> Result<Option<RpcCollection<AccountId>>, DispatchError> {113 Ok(<pallet_common::Pallet<Runtime>>::rpc_collection(collection))114 }115 fn collection_stats() -> Result<CollectionStats, DispatchError> {116 Ok(<pallet_common::Pallet<Runtime>>::collection_stats())117 }118 fn next_sponsored(collection: CollectionId, account: CrossAccountId, token: TokenId) -> Result<Option<u64>, DispatchError> {119 Ok(<$crate::sponsoring::UniqueSponsorshipPredict<Runtime> as120 $crate::sponsoring::SponsorshipPredict<Runtime>>::predict(121 collection,122 account,123 token))124 }125126 fn effective_collection_limits(collection: CollectionId) -> Result<Option<CollectionLimits>, DispatchError> {127 Ok(<pallet_common::Pallet<Runtime>>::effective_collection_limits(collection))128 }129 }130131 impl rmrk_rpc::RmrkApi<132 Block,133 AccountId,134 RmrkCollectionInfo<AccountId>,135 RmrkInstanceInfo<AccountId>,136 RmrkResourceInfo,137 RmrkPropertyInfo,138 RmrkBaseInfo<AccountId>,139 RmrkPartType,140 RmrkTheme141 > for Runtime {142 fn last_collection_idx() -> Result<RmrkCollectionId, DispatchError> {143 Ok(RmrkCore::last_collection_idx())144 }145146 fn collection_by_id(collection_id: RmrkCollectionId) -> Result<Option<RmrkCollectionInfo<AccountId>>, DispatchError> {147 use pallet_proxy_rmrk_core::{RmrkProperty, misc::CollectionType};148 use pallet_common::CommonCollectionOperations;149150 let (collection, collection_id) = match RmrkCore::get_typed_nft_collection_mapped(collection_id, CollectionType::Regular) {151 Ok(c) => c,152 Err(_) => return Ok(None),153 };154155 let nfts_count = collection.total_supply();156157 Ok(Some(RmrkCollectionInfo {158 issuer: collection.owner.clone(),159 metadata: RmrkCore::get_collection_property_decoded(collection_id, RmrkProperty::Metadata)?,160 max: collection.limits.token_limit,161 symbol: RmrkCore::rebind(&collection.token_prefix)?,162 nfts_count163 }))164 }165166 fn nft_by_id(collection_id: RmrkCollectionId, nft_by_id: RmrkNftId) -> Result<Option<RmrkInstanceInfo<AccountId>>, DispatchError> {167 use up_data_structs::mapping::TokenAddressMapping;168 use pallet_proxy_rmrk_core::{RmrkProperty, misc::CollectionType};169 use pallet_common::CommonCollectionOperations;170171 let (collection, collection_id) = match RmrkCore::get_typed_nft_collection_mapped(collection_id, CollectionType::Regular) {172 Ok(c) => c,173 Err(_) => return Ok(None),174 };175176 let nft_id = TokenId(nft_by_id);177 if !RmrkCore::nft_exists(collection_id, nft_id) { return Ok(None); }178179 let owner = match collection.token_owner(nft_id) {180 Some(owner) => match <Runtime as pallet_common::Config>::CrossTokenAddressMapping::address_to_token(&owner) {181 Some((col, tok)) => {182 let rmrk_collection = RmrkCore::rmrk_collection_id(col)?;183184 RmrkAccountIdOrCollectionNftTuple::CollectionAndNftTuple(rmrk_collection, tok.0)185 }186 None => RmrkAccountIdOrCollectionNftTuple::AccountId(owner.as_sub().clone())187 },188 None => return Ok(None)189 };190191 Ok(Some(RmrkInstanceInfo {192 owner: owner,193 royalty: RmrkCore::get_nft_property_decoded(collection_id, nft_id, RmrkProperty::RoyaltyInfo)?,194 metadata: RmrkCore::get_nft_property_decoded(collection_id, nft_id, RmrkProperty::Metadata)?,195 equipped: RmrkCore::get_nft_property_decoded(collection_id, nft_id, RmrkProperty::Equipped)?,196 pending: RmrkCore::get_nft_property_decoded(collection_id, nft_id, RmrkProperty::PendingNftAccept)?,197 }))198 }199200 fn account_tokens(account_id: AccountId, collection_id: RmrkCollectionId) -> Result<Vec<RmrkNftId>, DispatchError> {201 use pallet_proxy_rmrk_core::{RmrkProperty, misc::CollectionType};202 use pallet_common::CommonCollectionOperations;203204 let cross_account_id = CrossAccountId::from_sub(account_id);205206 let (collection, collection_id) = match RmrkCore::get_typed_nft_collection_mapped(collection_id, CollectionType::Regular) {207 Ok(c) => c,208 Err(_) => return Ok(Vec::new()),209 };210211 let tokens = collection.account_tokens(cross_account_id)212 .into_iter()213 .filter(|token| {214 let is_pending = RmrkCore::get_nft_property_decoded(215 collection_id,216 *token,217 RmrkProperty::PendingNftAccept218 ).unwrap_or(true);219220 !is_pending221 })222 .map(|token| token.0)223 .collect();224225 Ok(tokens)226 }227228 fn nft_children(collection_id: RmrkCollectionId, nft_id: RmrkNftId) -> Result<Vec<RmrkNftChild>, DispatchError> {229 use pallet_proxy_rmrk_core::RmrkProperty;230231 let collection_id = match RmrkCore::unique_collection_id(collection_id) {232 Ok(id) => id,233 Err(_) => return Ok(Vec::new())234 };235 let nft_id = TokenId(nft_id);236 if !RmrkCore::nft_exists(collection_id, nft_id) { return Ok(Vec::new()); }237238 Ok(239 pallet_nonfungible::TokenChildren::<Runtime>::iter_prefix((collection_id, nft_id))240 .filter_map(|((child_collection, child_token), _)| {241 let is_pending = RmrkCore::get_nft_property_decoded(242 child_collection,243 child_token,244 RmrkProperty::PendingNftAccept245 ).ok()?;246247 if is_pending {248 return None;249 }250251 let rmrk_child_collection = RmrkCore::rmrk_collection_id(252 child_collection253 ).ok()?;254255 Some(RmrkNftChild {256 collection_id: rmrk_child_collection,257 nft_id: child_token.0,258 })259 }).collect()260 )261 }262263 fn collection_properties(collection_id: RmrkCollectionId, filter_keys: Option<Vec<RmrkPropertyKey>>) -> Result<Vec<RmrkPropertyInfo>, DispatchError> {264 use pallet_proxy_rmrk_core::misc::CollectionType;265266 let collection_id = match RmrkCore::unique_collection_id(collection_id) {267 Ok(id) => id,268 Err(_) => return Ok(Vec::new())269 };270 if RmrkCore::ensure_collection_type(collection_id, CollectionType::Regular).is_err() {271 return Ok(Vec::new());272 }273274 let properties = RmrkCore::filter_user_properties(275 collection_id,276 /* token_id = */ None,277 filter_keys,278 |key, value| RmrkPropertyInfo {279 key,280 value281 }282 )?;283284 Ok(properties)285 }286287 fn nft_properties(collection_id: RmrkCollectionId, nft_id: RmrkNftId, filter_keys: Option<Vec<RmrkPropertyKey>>) -> Result<Vec<RmrkPropertyInfo>, DispatchError> {288 use pallet_proxy_rmrk_core::misc::NftType;289290 let collection_id = match RmrkCore::unique_collection_id(collection_id) {291 Ok(id) => id,292 Err(_) => return Ok(Vec::new())293 };294 let token_id = TokenId(nft_id);295296 if RmrkCore::ensure_nft_type(collection_id, token_id, NftType::Regular).is_err() {297 return Ok(Vec::new());298 }299300 let properties = RmrkCore::filter_user_properties(301 collection_id,302 Some(token_id),303 filter_keys,304 |key, value| RmrkPropertyInfo {305 key,306 value307 }308 )?;309310 Ok(properties)311 }312313 fn nft_resources(collection_id: RmrkCollectionId, nft_id: RmrkNftId) -> Result<Vec<RmrkResourceInfo>, DispatchError> {314 use pallet_proxy_rmrk_core::{RmrkProperty, misc::{CollectionType, NftType, ResourceType}};315 use pallet_common::CommonCollectionOperations;316317 let collection_id = match RmrkCore::unique_collection_id(collection_id) {318 Ok(id) => id,319 Err(_) => return Ok(Vec::new())320 };321 if RmrkCore::ensure_collection_type(collection_id, CollectionType::Regular).is_err() { return Ok(Vec::new()); }322323 let nft_id = TokenId(nft_id);324 if RmrkCore::ensure_nft_type(collection_id, nft_id, NftType::Regular).is_err() { return Ok(Vec::new()); }325326 let res_collection_id: CollectionId = RmrkCore::get_nft_property_decoded(collection_id, nft_id, RmrkProperty::ResourceCollection)?;327 let resource_collection = RmrkCore::get_typed_nft_collection(res_collection_id, CollectionType::Resource)?;328329 let resources = resource_collection330 .collection_tokens()331 .iter()332 .filter_map(|(res_id)| Some(RmrkResourceInfo {333 id: res_id.0,334 pending: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::PendingResourceAccept).unwrap(),335 pending_removal: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::PendingResourceRemoval).unwrap(),336 resource: match RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::ResourceType).unwrap() {337 ResourceType::Basic => RmrkResourceTypes::Basic(RmrkBasicResource {338 src: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Src).unwrap(),339 metadata: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Metadata).unwrap(),340 license: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::License).unwrap(),341 thumb: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Thumb).unwrap(),342 }),343 ResourceType::Composable => RmrkResourceTypes::Composable(RmrkComposableResource {344 parts: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Parts).unwrap(),345 base: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Base).unwrap(),346 src: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Src).unwrap(),347 metadata: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Metadata).unwrap(),348 license: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::License).unwrap(),349 thumb: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Thumb).unwrap(),350 }),351 ResourceType::Slot => RmrkResourceTypes::Slot(RmrkSlotResource {352 base: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Base).unwrap(),353 src: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Src).unwrap(),354 metadata: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Metadata).unwrap(),355 slot: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Slot).unwrap(),356 license: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::License).unwrap(),357 thumb: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Thumb).unwrap(),358 }),359 },360 }))361 .collect();362363 Ok(resources)364 }365366 fn nft_resource_priority(collection_id: RmrkCollectionId, nft_id: RmrkNftId, resource_id: RmrkResourceId) -> Result<Option<u32>, DispatchError> {367 use pallet_proxy_rmrk_core::{RmrkProperty, misc::{CollectionType, NftType}};368369 let collection_id = match RmrkCore::unique_collection_id(collection_id) {370 Ok(id) => id,371 Err(_) => return Ok(None)372 };373 if RmrkCore::ensure_collection_type(collection_id, CollectionType::Regular).is_err() { return Ok(None); }374375 let nft_id = TokenId(nft_id);376 if RmrkCore::ensure_nft_type(collection_id, nft_id, NftType::Regular).is_err() { return Ok(None); }377378 let priorities: Vec<_> = RmrkCore::get_nft_property_decoded(collection_id, nft_id, RmrkProperty::ResourcePriorities)?;379 Ok(380 priorities.into_iter()381 .enumerate()382 .find(|(_, id)| *id == resource_id)383 .map(|(priority, _): (usize, RmrkResourceId)| priority as u32)384 )385 }386387 fn base(base_id: RmrkBaseId) -> Result<Option<RmrkBaseInfo<AccountId>>, DispatchError> {388 use pallet_proxy_rmrk_core::{389 RmrkProperty, misc::{CollectionType},390 };391392 let (collection, collection_id) = match RmrkCore::get_typed_nft_collection_mapped(base_id, CollectionType::Base) {393 Ok(c) => c,394 Err(_) => return Ok(None),395 };396397 Ok(Some(RmrkBaseInfo {398 issuer: collection.owner.clone(),399 base_type: RmrkCore::get_collection_property_decoded(collection_id, RmrkProperty::BaseType)?,400 symbol: RmrkCore::rebind(&collection.token_prefix)?,401 }))402 }403404 fn base_parts(base_id: RmrkBaseId) -> Result<Vec<RmrkPartType>, DispatchError> {405 use pallet_proxy_rmrk_core::{RmrkProperty, misc::{CollectionType, NftType}};406 use pallet_common::CommonCollectionOperations;407408 let (collection, collection_id) = match RmrkCore::get_typed_nft_collection_mapped(base_id, CollectionType::Base) {409 Ok(c) => c,410 Err(_) => return Ok(Vec::new()),411 };412413 let parts = collection.collection_tokens()414 .into_iter()415 .filter_map(|token_id| {416 let nft_type = RmrkCore::get_nft_type(collection_id, token_id).ok()?;417418 match nft_type {419 NftType::FixedPart => Some(RmrkPartType::FixedPart(RmrkFixedPart {420 id: RmrkCore::get_nft_property_decoded(collection_id, token_id, RmrkProperty::ExternalPartId).ok()?,421 src: RmrkCore::get_nft_property_decoded(collection_id, token_id, RmrkProperty::Src).ok()?,422 z: RmrkCore::get_nft_property_decoded(collection_id, token_id, RmrkProperty::ZIndex).ok()?,423 })),424 NftType::SlotPart => Some(RmrkPartType::SlotPart(RmrkSlotPart {425 id: RmrkCore::get_nft_property_decoded(collection_id, token_id, RmrkProperty::ExternalPartId).ok()?,426 src: RmrkCore::get_nft_property_decoded(collection_id, token_id, RmrkProperty::Src).ok()?,427 z: RmrkCore::get_nft_property_decoded(collection_id, token_id, RmrkProperty::ZIndex).ok()?,428 equippable: RmrkCore::get_nft_property_decoded(collection_id, token_id, RmrkProperty::EquippableList).ok()?,429 })),430 _ => None431 }432 })433 .collect();434435 Ok(parts)436 }437438 fn theme_names(base_id: RmrkBaseId) -> Result<Vec<RmrkThemeName>, DispatchError> {439 use pallet_proxy_rmrk_core::{RmrkProperty, misc::CollectionType};440 use pallet_common::CommonCollectionOperations;441442 let (collection, collection_id) = match RmrkCore::get_typed_nft_collection_mapped(base_id, CollectionType::Base) {443 Ok(c) => c,444 Err(_) => return Ok(Vec::new()),445 };446447 let theme_names = collection.collection_tokens()448 .iter()449 .filter_map(|token_id| {450 let nft_type = RmrkCore::get_nft_type(collection_id, *token_id).unwrap();451452 match nft_type {453 Theme => Some(454 RmrkCore::get_nft_property_decoded(collection_id, *token_id, RmrkProperty::ThemeName).unwrap()455 ),456 _ => None457 }458 })459 .collect();460461 Ok(theme_names)462 }463464 fn theme(base_id: RmrkBaseId, theme_name: RmrkThemeName, filter_keys: Option<Vec<RmrkPropertyKey>>) -> Result<Option<RmrkTheme>, DispatchError> {465 use pallet_proxy_rmrk_core::{466 RmrkProperty,467 misc::{CollectionType, NftType}468 };469 use pallet_common::CommonCollectionOperations;470471 let (collection, collection_id) = match RmrkCore::get_typed_nft_collection_mapped(base_id, CollectionType::Base) {472 Ok(c) => c,473 Err(_) => return Ok(None),474 };475476 let theme_info = collection.collection_tokens()477 .into_iter()478 .find_map(|token_id| {479 RmrkCore::ensure_nft_type(collection_id, token_id, NftType::Theme).ok()?;480481 let name: RmrkString = RmrkCore::get_nft_property_decoded(482 collection_id, token_id, RmrkProperty::ThemeName483 ).ok()?;484485 if name == theme_name {486 Some((name, token_id))487 } else {488 None489 }490 });491492 let (name, theme_id) = match theme_info {493 Some((name, theme_id)) => (name, theme_id),494 None => return Ok(None)495 };496497 let properties = RmrkCore::filter_user_properties(498 collection_id,499 Some(theme_id),500 filter_keys,501 |key, value| RmrkThemeProperty {502 key,503 value504 }505 )?;506507 let inherit = RmrkCore::get_nft_property_decoded(508 collection_id,509 theme_id,510 RmrkProperty::ThemeInherit511 )?;512513 let theme = RmrkTheme {514 name,515 properties,516 inherit,517 };518519 Ok(Some(theme))520 }521 }522523 impl sp_api::Core<Block> for Runtime {524 fn version() -> RuntimeVersion {525 VERSION526 }527528 fn execute_block(block: Block) {529 Executive::execute_block(block)530 }531532 fn initialize_block(header: &<Block as BlockT>::Header) {533 Executive::initialize_block(header)534 }535 }536537 impl sp_api::Metadata<Block> for Runtime {538 fn metadata() -> OpaqueMetadata {539 OpaqueMetadata::new(Runtime::metadata().into())540 }541 }542543 impl sp_block_builder::BlockBuilder<Block> for Runtime {544 fn apply_extrinsic(extrinsic: <Block as BlockT>::Extrinsic) -> ApplyExtrinsicResult {545 Executive::apply_extrinsic(extrinsic)546 }547548 fn finalize_block() -> <Block as BlockT>::Header {549 Executive::finalize_block()550 }551552 fn inherent_extrinsics(data: sp_inherents::InherentData) -> Vec<<Block as BlockT>::Extrinsic> {553 data.create_extrinsics()554 }555556 fn check_inherents(557 block: Block,558 data: sp_inherents::InherentData,559 ) -> sp_inherents::CheckInherentsResult {560 data.check_extrinsics(&block)561 }562563 // fn random_seed() -> <Block as BlockT>::Hash {564 // RandomnessCollectiveFlip::random_seed().0565 // }566 }567568 impl sp_transaction_pool::runtime_api::TaggedTransactionQueue<Block> for Runtime {569 fn validate_transaction(570 source: TransactionSource,571 tx: <Block as BlockT>::Extrinsic,572 hash: <Block as BlockT>::Hash,573 ) -> TransactionValidity {574 Executive::validate_transaction(source, tx, hash)575 }576 }577578 impl sp_offchain::OffchainWorkerApi<Block> for Runtime {579 fn offchain_worker(header: &<Block as BlockT>::Header) {580 Executive::offchain_worker(header)581 }582 }583584 impl fp_rpc::EthereumRuntimeRPCApi<Block> for Runtime {585 fn chain_id() -> u64 {586 <Runtime as pallet_evm::Config>::ChainId::get()587 }588589 fn account_basic(address: H160) -> EVMAccount {590 let (account, _) = EVM::account_basic(&address);591 account592 }593594 fn gas_price() -> U256 {595 let (price, _) = <Runtime as pallet_evm::Config>::FeeCalculator::min_gas_price();596 price597 }598599 fn account_code_at(address: H160) -> Vec<u8> {600 EVM::account_codes(address)601 }602603 fn author() -> H160 {604 <pallet_evm::Pallet<Runtime>>::find_author()605 }606607 fn storage_at(address: H160, index: U256) -> H256 {608 let mut tmp = [0u8; 32];609 index.to_big_endian(&mut tmp);610 EVM::account_storages(address, H256::from_slice(&tmp[..]))611 }612613 #[allow(clippy::redundant_closure)]614 fn call(615 from: H160,616 to: H160,617 data: Vec<u8>,618 value: U256,619 gas_limit: U256,620 max_fee_per_gas: Option<U256>,621 max_priority_fee_per_gas: Option<U256>,622 nonce: Option<U256>,623 estimate: bool,624 access_list: Option<Vec<(H160, Vec<H256>)>>,625 ) -> Result<pallet_evm::CallInfo, sp_runtime::DispatchError> {626 let config = if estimate {627 let mut config = <Runtime as pallet_evm::Config>::config().clone();628 config.estimate = true;629 Some(config)630 } else {631 None632 };633634 let is_transactional = false;635 <Runtime as pallet_evm::Config>::Runner::call(636 CrossAccountId::from_eth(from),637 to,638 data,639 value,640 gas_limit.low_u64(),641 max_fee_per_gas,642 max_priority_fee_per_gas,643 nonce,644 access_list.unwrap_or_default(),645 is_transactional,646 config.as_ref().unwrap_or_else(|| <Runtime as pallet_evm::Config>::config()),647 ).map_err(|err| err.error.into())648 }649650 #[allow(clippy::redundant_closure)]651 fn create(652 from: H160,653 data: Vec<u8>,654 value: U256,655 gas_limit: U256,656 max_fee_per_gas: Option<U256>,657 max_priority_fee_per_gas: Option<U256>,658 nonce: Option<U256>,659 estimate: bool,660 access_list: Option<Vec<(H160, Vec<H256>)>>,661 ) -> Result<pallet_evm::CreateInfo, sp_runtime::DispatchError> {662 let config = if estimate {663 let mut config = <Runtime as pallet_evm::Config>::config().clone();664 config.estimate = true;665 Some(config)666 } else {667 None668 };669670 let is_transactional = false;671 <Runtime as pallet_evm::Config>::Runner::create(672 CrossAccountId::from_eth(from),673 data,674 value,675 gas_limit.low_u64(),676 max_fee_per_gas,677 max_priority_fee_per_gas,678 nonce,679 access_list.unwrap_or_default(),680 is_transactional,681 config.as_ref().unwrap_or_else(|| <Runtime as pallet_evm::Config>::config()),682 ).map_err(|err| err.error.into())683 }684685 fn current_transaction_statuses() -> Option<Vec<TransactionStatus>> {686 Ethereum::current_transaction_statuses()687 }688689 fn current_block() -> Option<pallet_ethereum::Block> {690 Ethereum::current_block()691 }692693 fn current_receipts() -> Option<Vec<pallet_ethereum::Receipt>> {694 Ethereum::current_receipts()695 }696697 fn current_all() -> (698 Option<pallet_ethereum::Block>,699 Option<Vec<pallet_ethereum::Receipt>>,700 Option<Vec<TransactionStatus>>701 ) {702 (703 Ethereum::current_block(),704 Ethereum::current_receipts(),705 Ethereum::current_transaction_statuses()706 )707 }708709 fn extrinsic_filter(xts: Vec<<Block as sp_api::BlockT>::Extrinsic>) -> Vec<pallet_ethereum::Transaction> {710 xts.into_iter().filter_map(|xt| match xt.0.function {711 Call::Ethereum(pallet_ethereum::Call::transact { transaction }) => Some(transaction),712 _ => None713 }).collect()714 }715716 fn elasticity() -> Option<Permill> {717 None718 }719 }720721 impl fp_rpc::ConvertTransactionRuntimeApi<Block> for Runtime {722 fn convert_transaction(transaction: pallet_ethereum::Transaction) -> <Block as BlockT>::Extrinsic {723 UncheckedExtrinsic::new_unsigned(724 pallet_ethereum::Call::<Runtime>::transact { transaction }.into(),725 )726 }727 }728729 impl sp_session::SessionKeys<Block> for Runtime {730 fn decode_session_keys(731 encoded: Vec<u8>,732 ) -> Option<Vec<(Vec<u8>, KeyTypeId)>> {733 SessionKeys::decode_into_raw_public_keys(&encoded)734 }735736 fn generate_session_keys(seed: Option<Vec<u8>>) -> Vec<u8> {737 SessionKeys::generate(seed)738 }739 }740741 impl sp_consensus_aura::AuraApi<Block, AuraId> for Runtime {742 fn slot_duration() -> sp_consensus_aura::SlotDuration {743 sp_consensus_aura::SlotDuration::from_millis(Aura::slot_duration())744 }745746 fn authorities() -> Vec<AuraId> {747 Aura::authorities().to_vec()748 }749 }750751 impl cumulus_primitives_core::CollectCollationInfo<Block> for Runtime {752 fn collect_collation_info(header: &<Block as BlockT>::Header) -> cumulus_primitives_core::CollationInfo {753 ParachainSystem::collect_collation_info(header)754 }755 }756757 impl frame_system_rpc_runtime_api::AccountNonceApi<Block, AccountId, Index> for Runtime {758 fn account_nonce(account: AccountId) -> Index {759 System::account_nonce(account)760 }761 }762763 impl pallet_transaction_payment_rpc_runtime_api::TransactionPaymentApi<Block, Balance> for Runtime {764 fn query_info(uxt: <Block as BlockT>::Extrinsic, len: u32) -> RuntimeDispatchInfo<Balance> {765 TransactionPayment::query_info(uxt, len)766 }767 fn query_fee_details(uxt: <Block as BlockT>::Extrinsic, len: u32) -> FeeDetails<Balance> {768 TransactionPayment::query_fee_details(uxt, len)769 }770 }771772 /*773 impl pallet_contracts_rpc_runtime_api::ContractsApi<Block, AccountId, Balance, BlockNumber, Hash>774 for Runtime775 {776 fn call(777 origin: AccountId,778 dest: AccountId,779 value: Balance,780 gas_limit: u64,781 input_data: Vec<u8>,782 ) -> pallet_contracts_primitives::ContractExecResult {783 Contracts::bare_call(origin, dest, value, gas_limit, input_data, false)784 }785786 fn instantiate(787 origin: AccountId,788 endowment: Balance,789 gas_limit: u64,790 code: pallet_contracts_primitives::Code<Hash>,791 data: Vec<u8>,792 salt: Vec<u8>,793 ) -> pallet_contracts_primitives::ContractInstantiateResult<AccountId, BlockNumber>794 {795 Contracts::bare_instantiate(origin, endowment, gas_limit, code, data, salt, true, false)796 }797798 fn get_storage(799 address: AccountId,800 key: [u8; 32],801 ) -> pallet_contracts_primitives::GetStorageResult {802 Contracts::get_storage(address, key)803 }804805 fn rent_projection(806 address: AccountId,807 ) -> pallet_contracts_primitives::RentProjectionResult<BlockNumber> {808 Contracts::rent_projection(address)809 }810 }811 */812813 #[cfg(feature = "runtime-benchmarks")]814 impl frame_benchmarking::Benchmark<Block> for Runtime {815 fn benchmark_metadata(extra: bool) -> (816 Vec<frame_benchmarking::BenchmarkList>,817 Vec<frame_support::traits::StorageInfo>,818 ) {819 use frame_benchmarking::{list_benchmark, Benchmarking, BenchmarkList};820 use frame_support::traits::StorageInfoTrait;821822 let mut list = Vec::<BenchmarkList>::new();823824 list_benchmark!(list, extra, pallet_evm_migration, EvmMigration);825 list_benchmark!(list, extra, pallet_common, Common);826 list_benchmark!(list, extra, pallet_unique, Unique);827 list_benchmark!(list, extra, pallet_structure, Structure);828 list_benchmark!(list, extra, pallet_inflation, Inflation);829 list_benchmark!(list, extra, pallet_fungible, Fungible);830 list_benchmark!(list, extra, pallet_refungible, Refungible);831 list_benchmark!(list, extra, pallet_nonfungible, Nonfungible);832 // list_benchmark!(list, extra, pallet_evm_coder_substrate, EvmCoderSubstrate);833834 let storage_info = AllPalletsReversedWithSystemFirst::storage_info();835836 return (list, storage_info)837 }838839 fn dispatch_benchmark(840 config: frame_benchmarking::BenchmarkConfig841 ) -> Result<Vec<frame_benchmarking::BenchmarkBatch>, sp_runtime::RuntimeString> {842 use frame_benchmarking::{Benchmarking, BenchmarkBatch, add_benchmark, TrackedStorageKey};843844 let allowlist: Vec<TrackedStorageKey> = vec![845 // Total Issuance846 hex_literal::hex!("c2261276cc9d1f8598ea4b6a74b15c2f57c875e4cff74148e4628f264b974c80").to_vec().into(),847848 // Block Number849 hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef702a5c1b19ab7a04f536c519aca4983ac").to_vec().into(),850 // Execution Phase851 hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef7ff553b5a9862a516939d82b3d3d8661a").to_vec().into(),852 // Event Count853 hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef70a98fdbe9ce6c55837576c60c7af3850").to_vec().into(),854 // System Events855 hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef780d41e5e16056765bc8461851072c9d7").to_vec().into(),856857 // Evm CurrentLogs858 hex_literal::hex!("1da53b775b270400e7e61ed5cbc5a146547f210cec367e9af919603343b9cb56").to_vec().into(),859860 // Transactional depth861 hex_literal::hex!("3a7472616e73616374696f6e5f6c6576656c3a").to_vec().into(),862 ];863864 let mut batches = Vec::<BenchmarkBatch>::new();865 let params = (&config, &allowlist);866867 add_benchmark!(params, batches, pallet_evm_migration, EvmMigration);868 add_benchmark!(params, batches, pallet_common, Common);869 add_benchmark!(params, batches, pallet_unique, Unique);870 add_benchmark!(params, batches, pallet_structure, Structure);871 add_benchmark!(params, batches, pallet_inflation, Inflation);872 add_benchmark!(params, batches, pallet_fungible, Fungible);873 add_benchmark!(params, batches, pallet_refungible, Refungible);874 add_benchmark!(params, batches, pallet_nonfungible, Nonfungible);875 // add_benchmark!(params, batches, pallet_evm_coder_substrate, EvmCoderSubstrate);876877 if batches.is_empty() { return Err("Benchmark not found for this pallet.".into()) }878 Ok(batches)879 }880 }881882 #[cfg(feature = "try-runtime")]883 impl frame_try_runtime::TryRuntime<Block> for Runtime {884 fn on_runtime_upgrade() -> (Weight, Weight) {885 log::info!("try-runtime::on_runtime_upgrade unique-chain.");886 let weight = Executive::try_runtime_upgrade().unwrap();887 (weight, RuntimeBlockWeights::get().max_block)888 }889890 fn execute_block_no_check(block: Block) -> Weight {891 Executive::execute_block_no_check(block)892 }893 }894 }895 }896}