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}};148149 let collection_id = RmrkCore::unique_collection_id(collection_id)?;150 let collection = match RmrkCore::get_typed_nft_collection(collection_id, CollectionType::Regular) {151 Ok(c) => c,152 Err(_) => return Ok(None),153 };154155 156 let nfts_count = dispatch_unique_runtime!(collection_id.total_supply())?;157158 Ok(Some(RmrkCollectionInfo {159 issuer: collection.owner.clone(),160 metadata: RmrkCore::get_collection_property_decoded(collection_id, RmrkProperty::Metadata)?,161 max: collection.limits.token_limit,162 symbol: RmrkCore::rebind(&collection.token_prefix)?,163 nfts_count164 }))165 }166167 fn nft_by_id(collection_id: RmrkCollectionId, nft_by_id: RmrkNftId) -> Result<Option<RmrkInstanceInfo<AccountId>>, DispatchError> {168 use up_data_structs::mapping::TokenAddressMapping;169 use pallet_proxy_rmrk_core::{RmrkProperty, misc::RmrkDecode};170171 let collection_id = RmrkCore::unique_collection_id(collection_id)?;172 let nft_id = TokenId(nft_by_id);173 if !RmrkCore::nft_exists(collection_id, nft_id) { return Ok(None); }174175 176 let owner = match dispatch_unique_runtime!(collection_id.token_owner(nft_id))? {177 Some(owner) => match <Runtime as pallet_common::Config>::CrossTokenAddressMapping::address_to_token(&owner) {178 Some((col, tok)) => RmrkAccountIdOrCollectionNftTuple::CollectionAndNftTuple(col.0, tok.0),179 None => RmrkAccountIdOrCollectionNftTuple::AccountId(owner.as_sub().clone())180 },181 None => return Ok(None)182 };183184 let allowance = pallet_nonfungible::Allowance::<Runtime>::get((collection_id, nft_id));185186 Ok(Some(RmrkInstanceInfo {187 owner: owner,188 royalty: RmrkCore::get_nft_property_decoded(collection_id, nft_id, RmrkProperty::RoyaltyInfo)?,189 metadata: RmrkCore::get_nft_property_decoded(collection_id, nft_id, RmrkProperty::Metadata)?,190 equipped: RmrkCore::get_nft_property_decoded(collection_id, nft_id, RmrkProperty::Equipped)?,191 pending: allowance.is_some(),192 }))193 }194195 fn account_tokens(account_id: AccountId, collection_id: RmrkCollectionId) -> Result<Vec<RmrkNftId>, DispatchError> {196 use pallet_proxy_rmrk_core::misc::CollectionType;197198 let cross_account_id = CrossAccountId::from_sub(account_id);199 let collection_id = RmrkCore::unique_collection_id(collection_id)?;200 if RmrkCore::ensure_collection_type(collection_id, CollectionType::Regular).is_err() { return Ok(Vec::new()); }201202 Ok(203 dispatch_unique_runtime!(collection_id.account_tokens(cross_account_id))?204 .into_iter()205 .map(|token| token.0)206 .collect()207 )208 }209210 fn nft_children(collection_id: RmrkCollectionId, nft_id: RmrkNftId) -> Result<Vec<RmrkNftChild>, DispatchError> {211 let collection_id = RmrkCore::unique_collection_id(collection_id)?;212 let nft_id = TokenId(nft_id);213 if !RmrkCore::nft_exists(collection_id, nft_id) { return Ok(Vec::new()); }214215 Ok(216 pallet_nonfungible::TokenChildren::<Runtime>::iter_prefix((collection_id, nft_id))217 .filter_map(|(child_id, is_child)|218 match is_child {219 true => Some(RmrkNftChild {220 collection_id: child_id.0.0,221 nft_id: child_id.1.0,222 }),223 false => None,224 }225 ).collect()226 )227 }228229 fn collection_properties(collection_id: RmrkCollectionId, filter_keys: Option<Vec<RmrkPropertyKey>>) -> Result<Vec<RmrkPropertyInfo>, DispatchError> {230 use pallet_proxy_rmrk_core::misc::CollectionType;231232 let collection_id = RmrkCore::unique_collection_id(collection_id)?;233 if RmrkCore::ensure_collection_type(collection_id, CollectionType::Regular).is_err() {234 return Ok(Vec::new());235 }236237 let properties = RmrkCore::filter_user_properties(238 collection_id,239 None,240 filter_keys,241 |key, value| RmrkPropertyInfo {242 key,243 value244 }245 )?;246247 Ok(properties)248 }249250 fn nft_properties(collection_id: RmrkCollectionId, nft_id: RmrkNftId, filter_keys: Option<Vec<RmrkPropertyKey>>) -> Result<Vec<RmrkPropertyInfo>, DispatchError> {251 use pallet_proxy_rmrk_core::misc::NftType;252253 let collection_id = RmrkCore::unique_collection_id(collection_id)?;254 let token_id = TokenId(nft_id);255256 if RmrkCore::ensure_nft_type(collection_id, token_id, NftType::Regular).is_err() {257 return Ok(Vec::new());258 }259260 let properties = RmrkCore::filter_user_properties(261 collection_id,262 Some(token_id),263 filter_keys,264 |key, value| RmrkPropertyInfo {265 key,266 value267 }268 )?;269270 Ok(properties)271 }272273 fn nft_resources(collection_id: RmrkCollectionId, nft_id: RmrkNftId) -> Result<Vec<RmrkResourceInfo>, DispatchError> {274 use frame_support::BoundedVec;275 use pallet_proxy_rmrk_core::{RmrkProperty, misc::{CollectionType, NftType, ResourceType, RmrkDecode}};276 use pallet_common::CommonCollectionOperations;277278 let collection_id = RmrkCore::unique_collection_id(collection_id)?;279 if RmrkCore::ensure_collection_type(collection_id, CollectionType::Regular).is_err() { return Ok(Vec::new()); }280281 let nft_id = TokenId(nft_id);282 if RmrkCore::ensure_nft_type(collection_id, nft_id, NftType::Regular).is_err() { return Ok(Vec::new()); }283284 let res_collection_id: CollectionId = RmrkCore::get_nft_property_decoded(collection_id, nft_id, RmrkProperty::ResourceCollection)?;285 let resource_collection = RmrkCore::get_typed_nft_collection(res_collection_id, CollectionType::Resource)?;286287 let resources = resource_collection288 .collection_tokens()289 .iter()290 .filter_map(|(res_id)| Some(RmrkResourceInfo {291 id: res_id.0,292 pending: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::PendingResourceAccept).unwrap(),293 pending_removal: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::PendingResourceRemoval).unwrap(),294 resource: match RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::ResourceType).unwrap() {295 ResourceType::Basic => RmrkResourceTypes::Basic(RmrkBasicResource {296 src: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Src).unwrap(),297 metadata: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Metadata).unwrap(),298 license: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::License).unwrap(),299 thumb: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Thumb).unwrap(),300 }),301 ResourceType::Composable => RmrkResourceTypes::Composable(RmrkComposableResource {302 parts: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Parts).unwrap(),303 base: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Base).unwrap(),304 src: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Src).unwrap(),305 metadata: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Metadata).unwrap(),306 license: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::License).unwrap(),307 thumb: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Thumb).unwrap(),308 }),309 ResourceType::Slot => RmrkResourceTypes::Slot(RmrkSlotResource {310 base: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Base).unwrap(),311 src: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Src).unwrap(),312 metadata: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Metadata).unwrap(),313 slot: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Slot).unwrap(),314 license: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::License).unwrap(),315 thumb: RmrkCore::get_nft_property_decoded(res_collection_id, *res_id, RmrkProperty::Thumb).unwrap(),316 }),317 },318 }))319 .collect();320321 Ok(resources)322 }323324 fn nft_resource_priorities(collection_id: RmrkCollectionId, nft_id: RmrkNftId) -> Result<Vec<RmrkResourceId>, DispatchError> {325 use pallet_proxy_rmrk_core::{RmrkProperty, misc::{CollectionType, NftType, RmrkDecode}};326327 let collection_id = RmrkCore::unique_collection_id(collection_id)?;328 if RmrkCore::ensure_collection_type(collection_id, CollectionType::Regular).is_err() { return Ok(Vec::new()); }329330 let nft_id = TokenId(nft_id);331 if RmrkCore::ensure_nft_type(collection_id, nft_id, NftType::Regular).is_err() { return Ok(Vec::new()); }332333 334335336337338339340341342343344345 let priorities = RmrkCore::get_nft_property_decoded(collection_id, nft_id, RmrkProperty::ResourcePriorities)?;346347 Ok(priorities)348 }349350 fn base(base_id: RmrkBaseId) -> Result<Option<RmrkBaseInfo<AccountId>>, DispatchError> {351 use pallet_proxy_rmrk_core::{352 RmrkProperty, misc::{CollectionType},353 };354355 let collection_id = RmrkCore::unique_collection_id(base_id)?;356 let collection = match RmrkCore::get_typed_nft_collection(collection_id, CollectionType::Base) {357 Ok(c) => c,358 Err(_) => return Ok(None),359 };360361 Ok(Some(RmrkBaseInfo {362 issuer: collection.owner.clone(),363 base_type: RmrkCore::get_collection_property_decoded(collection_id, RmrkProperty::BaseType)?,364 symbol: RmrkCore::rebind(&collection.token_prefix)?,365 }))366 }367368 fn base_parts(base_id: RmrkBaseId) -> Result<Vec<RmrkPartType>, DispatchError> {369 use pallet_proxy_rmrk_core::{RmrkProperty, misc::{CollectionType, NftType, RmrkDecode}};370371 let collection_id = RmrkCore::unique_collection_id(base_id)?;372 if RmrkCore::ensure_collection_type(collection_id, CollectionType::Base).is_err() { return Ok(Vec::new()); }373374 let parts = dispatch_unique_runtime!(collection_id.collection_tokens())?375 .into_iter()376 .filter_map(|token_id| {377 let nft_type = RmrkCore::get_nft_type(collection_id, token_id).ok()?;378379 match nft_type {380 NftType::FixedPart => Some(RmrkPartType::FixedPart(RmrkFixedPart {381 id: RmrkCore::get_nft_property_decoded(collection_id, token_id, RmrkProperty::ExternalPartId).ok()?,382 src: RmrkCore::get_nft_property_decoded(collection_id, token_id, RmrkProperty::Src).ok()?,383 z: RmrkCore::get_nft_property_decoded(collection_id, token_id, RmrkProperty::ZIndex).ok()?,384 })),385 NftType::SlotPart => Some(RmrkPartType::SlotPart(RmrkSlotPart {386 id: RmrkCore::get_nft_property_decoded(collection_id, token_id, RmrkProperty::ExternalPartId).ok()?,387 src: RmrkCore::get_nft_property_decoded(collection_id, token_id, RmrkProperty::Src).ok()?,388 z: RmrkCore::get_nft_property_decoded(collection_id, token_id, RmrkProperty::ZIndex).ok()?,389 equippable: RmrkCore::get_nft_property_decoded(collection_id, token_id, RmrkProperty::EquippableList).ok()?,390 })),391 _ => None392 }393 })394 .collect();395396 Ok(parts)397 }398399 fn theme_names(base_id: RmrkBaseId) -> Result<Vec<RmrkThemeName>, DispatchError> {400 use pallet_proxy_rmrk_core::{RmrkProperty, misc::{CollectionType, RmrkDecode}};401402 let collection_id = RmrkCore::unique_collection_id(base_id)?;403 if RmrkCore::ensure_collection_type(collection_id, CollectionType::Base).is_err() {404 return Ok(Vec::new());405 }406407 let theme_names = dispatch_unique_runtime!(collection_id.collection_tokens())?408 .iter()409 .filter_map(|token_id| {410 let nft_type = RmrkCore::get_nft_type(collection_id, *token_id).unwrap();411412 match nft_type {413 Theme => Some(414 RmrkCore::get_nft_property_decoded(collection_id, *token_id, RmrkProperty::ThemeName).unwrap()415 ),416 _ => None417 }418 })419 .collect();420421 Ok(theme_names)422 }423424 fn theme(base_id: RmrkBaseId, theme_name: RmrkThemeName, filter_keys: Option<Vec<RmrkPropertyKey>>) -> Result<Option<RmrkTheme>, DispatchError> {425 use pallet_proxy_rmrk_core::{426 RmrkProperty,427 misc::{CollectionType, NftType, RmrkDecode}428 };429430 let collection_id = RmrkCore::unique_collection_id(base_id)?;431 if RmrkCore::ensure_collection_type(collection_id, CollectionType::Base).is_err() {432 return Ok(None);433 }434435 let theme_info = dispatch_unique_runtime!(collection_id.collection_tokens())?436 .into_iter()437 .find_map(|token_id| {438 RmrkCore::ensure_nft_type(collection_id, token_id, NftType::Theme).ok()?;439440 let name: RmrkString = RmrkCore::get_nft_property_decoded(441 collection_id, token_id, RmrkProperty::ThemeName442 ).ok()?;443444 if name == theme_name {445 Some((name, token_id))446 } else {447 None448 }449 });450451 let (name, theme_id) = match theme_info {452 Some((name, theme_id)) => (name, theme_id),453 None => return Ok(None)454 };455456 let properties = RmrkCore::filter_user_properties(457 collection_id,458 Some(theme_id),459 filter_keys,460 |key, value| RmrkThemeProperty {461 key,462 value463 }464 )?;465466 let inherit = RmrkCore::get_nft_property_decoded(467 collection_id,468 theme_id,469 RmrkProperty::ThemeInherit470 )?;471472 let theme = RmrkTheme {473 name,474 properties,475 inherit,476 };477478 Ok(Some(theme))479 }480 }481482 impl sp_api::Core<Block> for Runtime {483 fn version() -> RuntimeVersion {484 VERSION485 }486487 fn execute_block(block: Block) {488 Executive::execute_block(block)489 }490491 fn initialize_block(header: &<Block as BlockT>::Header) {492 Executive::initialize_block(header)493 }494 }495496 impl sp_api::Metadata<Block> for Runtime {497 fn metadata() -> OpaqueMetadata {498 OpaqueMetadata::new(Runtime::metadata().into())499 }500 }501502 impl sp_block_builder::BlockBuilder<Block> for Runtime {503 fn apply_extrinsic(extrinsic: <Block as BlockT>::Extrinsic) -> ApplyExtrinsicResult {504 Executive::apply_extrinsic(extrinsic)505 }506507 fn finalize_block() -> <Block as BlockT>::Header {508 Executive::finalize_block()509 }510511 fn inherent_extrinsics(data: sp_inherents::InherentData) -> Vec<<Block as BlockT>::Extrinsic> {512 data.create_extrinsics()513 }514515 fn check_inherents(516 block: Block,517 data: sp_inherents::InherentData,518 ) -> sp_inherents::CheckInherentsResult {519 data.check_extrinsics(&block)520 }521522 523 524 525 }526527 impl sp_transaction_pool::runtime_api::TaggedTransactionQueue<Block> for Runtime {528 fn validate_transaction(529 source: TransactionSource,530 tx: <Block as BlockT>::Extrinsic,531 hash: <Block as BlockT>::Hash,532 ) -> TransactionValidity {533 Executive::validate_transaction(source, tx, hash)534 }535 }536537 impl sp_offchain::OffchainWorkerApi<Block> for Runtime {538 fn offchain_worker(header: &<Block as BlockT>::Header) {539 Executive::offchain_worker(header)540 }541 }542543 impl fp_rpc::EthereumRuntimeRPCApi<Block> for Runtime {544 fn chain_id() -> u64 {545 <Runtime as pallet_evm::Config>::ChainId::get()546 }547548 fn account_basic(address: H160) -> EVMAccount {549 let (account, _) = EVM::account_basic(&address);550 account551 }552553 fn gas_price() -> U256 {554 let (price, _) = <Runtime as pallet_evm::Config>::FeeCalculator::min_gas_price();555 price556 }557558 fn account_code_at(address: H160) -> Vec<u8> {559 EVM::account_codes(address)560 }561562 fn author() -> H160 {563 <pallet_evm::Pallet<Runtime>>::find_author()564 }565566 fn storage_at(address: H160, index: U256) -> H256 {567 let mut tmp = [0u8; 32];568 index.to_big_endian(&mut tmp);569 EVM::account_storages(address, H256::from_slice(&tmp[..]))570 }571572 #[allow(clippy::redundant_closure)]573 fn call(574 from: H160,575 to: H160,576 data: Vec<u8>,577 value: U256,578 gas_limit: U256,579 max_fee_per_gas: Option<U256>,580 max_priority_fee_per_gas: Option<U256>,581 nonce: Option<U256>,582 estimate: bool,583 access_list: Option<Vec<(H160, Vec<H256>)>>,584 ) -> Result<pallet_evm::CallInfo, sp_runtime::DispatchError> {585 let config = if estimate {586 let mut config = <Runtime as pallet_evm::Config>::config().clone();587 config.estimate = true;588 Some(config)589 } else {590 None591 };592593 let is_transactional = false;594 <Runtime as pallet_evm::Config>::Runner::call(595 CrossAccountId::from_eth(from),596 to,597 data,598 value,599 gas_limit.low_u64(),600 max_fee_per_gas,601 max_priority_fee_per_gas,602 nonce,603 access_list.unwrap_or_default(),604 is_transactional,605 config.as_ref().unwrap_or_else(|| <Runtime as pallet_evm::Config>::config()),606 ).map_err(|err| err.error.into())607 }608609 #[allow(clippy::redundant_closure)]610 fn create(611 from: H160,612 data: Vec<u8>,613 value: U256,614 gas_limit: U256,615 max_fee_per_gas: Option<U256>,616 max_priority_fee_per_gas: Option<U256>,617 nonce: Option<U256>,618 estimate: bool,619 access_list: Option<Vec<(H160, Vec<H256>)>>,620 ) -> Result<pallet_evm::CreateInfo, sp_runtime::DispatchError> {621 let config = if estimate {622 let mut config = <Runtime as pallet_evm::Config>::config().clone();623 config.estimate = true;624 Some(config)625 } else {626 None627 };628629 let is_transactional = false;630 <Runtime as pallet_evm::Config>::Runner::create(631 CrossAccountId::from_eth(from),632 data,633 value,634 gas_limit.low_u64(),635 max_fee_per_gas,636 max_priority_fee_per_gas,637 nonce,638 access_list.unwrap_or_default(),639 is_transactional,640 config.as_ref().unwrap_or_else(|| <Runtime as pallet_evm::Config>::config()),641 ).map_err(|err| err.error.into())642 }643644 fn current_transaction_statuses() -> Option<Vec<TransactionStatus>> {645 Ethereum::current_transaction_statuses()646 }647648 fn current_block() -> Option<pallet_ethereum::Block> {649 Ethereum::current_block()650 }651652 fn current_receipts() -> Option<Vec<pallet_ethereum::Receipt>> {653 Ethereum::current_receipts()654 }655656 fn current_all() -> (657 Option<pallet_ethereum::Block>,658 Option<Vec<pallet_ethereum::Receipt>>,659 Option<Vec<TransactionStatus>>660 ) {661 (662 Ethereum::current_block(),663 Ethereum::current_receipts(),664 Ethereum::current_transaction_statuses()665 )666 }667668 fn extrinsic_filter(xts: Vec<<Block as sp_api::BlockT>::Extrinsic>) -> Vec<pallet_ethereum::Transaction> {669 xts.into_iter().filter_map(|xt| match xt.0.function {670 Call::Ethereum(pallet_ethereum::Call::transact { transaction }) => Some(transaction),671 _ => None672 }).collect()673 }674675 fn elasticity() -> Option<Permill> {676 None677 }678 }679680 impl fp_rpc::ConvertTransactionRuntimeApi<Block> for Runtime {681 fn convert_transaction(transaction: pallet_ethereum::Transaction) -> <Block as BlockT>::Extrinsic {682 UncheckedExtrinsic::new_unsigned(683 pallet_ethereum::Call::<Runtime>::transact { transaction }.into(),684 )685 }686 }687688 impl sp_session::SessionKeys<Block> for Runtime {689 fn decode_session_keys(690 encoded: Vec<u8>,691 ) -> Option<Vec<(Vec<u8>, KeyTypeId)>> {692 SessionKeys::decode_into_raw_public_keys(&encoded)693 }694695 fn generate_session_keys(seed: Option<Vec<u8>>) -> Vec<u8> {696 SessionKeys::generate(seed)697 }698 }699700 impl sp_consensus_aura::AuraApi<Block, AuraId> for Runtime {701 fn slot_duration() -> sp_consensus_aura::SlotDuration {702 sp_consensus_aura::SlotDuration::from_millis(Aura::slot_duration())703 }704705 fn authorities() -> Vec<AuraId> {706 Aura::authorities().to_vec()707 }708 }709710 impl cumulus_primitives_core::CollectCollationInfo<Block> for Runtime {711 fn collect_collation_info(header: &<Block as BlockT>::Header) -> cumulus_primitives_core::CollationInfo {712 ParachainSystem::collect_collation_info(header)713 }714 }715716 impl frame_system_rpc_runtime_api::AccountNonceApi<Block, AccountId, Index> for Runtime {717 fn account_nonce(account: AccountId) -> Index {718 System::account_nonce(account)719 }720 }721722 impl pallet_transaction_payment_rpc_runtime_api::TransactionPaymentApi<Block, Balance> for Runtime {723 fn query_info(uxt: <Block as BlockT>::Extrinsic, len: u32) -> RuntimeDispatchInfo<Balance> {724 TransactionPayment::query_info(uxt, len)725 }726 fn query_fee_details(uxt: <Block as BlockT>::Extrinsic, len: u32) -> FeeDetails<Balance> {727 TransactionPayment::query_fee_details(uxt, len)728 }729 }730731 732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772 #[cfg(feature = "runtime-benchmarks")]773 impl frame_benchmarking::Benchmark<Block> for Runtime {774 fn benchmark_metadata(extra: bool) -> (775 Vec<frame_benchmarking::BenchmarkList>,776 Vec<frame_support::traits::StorageInfo>,777 ) {778 use frame_benchmarking::{list_benchmark, Benchmarking, BenchmarkList};779 use frame_support::traits::StorageInfoTrait;780781 let mut list = Vec::<BenchmarkList>::new();782783 list_benchmark!(list, extra, pallet_evm_migration, EvmMigration);784 list_benchmark!(list, extra, pallet_common, Common);785 list_benchmark!(list, extra, pallet_unique, Unique);786 list_benchmark!(list, extra, pallet_structure, Structure);787 list_benchmark!(list, extra, pallet_inflation, Inflation);788 list_benchmark!(list, extra, pallet_fungible, Fungible);789 list_benchmark!(list, extra, pallet_refungible, Refungible);790 list_benchmark!(list, extra, pallet_nonfungible, Nonfungible);791 792793 let storage_info = AllPalletsReversedWithSystemFirst::storage_info();794795 return (list, storage_info)796 }797798 fn dispatch_benchmark(799 config: frame_benchmarking::BenchmarkConfig800 ) -> Result<Vec<frame_benchmarking::BenchmarkBatch>, sp_runtime::RuntimeString> {801 use frame_benchmarking::{Benchmarking, BenchmarkBatch, add_benchmark, TrackedStorageKey};802803 let allowlist: Vec<TrackedStorageKey> = vec![804 805 hex_literal::hex!("c2261276cc9d1f8598ea4b6a74b15c2f57c875e4cff74148e4628f264b974c80").to_vec().into(),806807 808 hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef702a5c1b19ab7a04f536c519aca4983ac").to_vec().into(),809 810 hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef7ff553b5a9862a516939d82b3d3d8661a").to_vec().into(),811 812 hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef70a98fdbe9ce6c55837576c60c7af3850").to_vec().into(),813 814 hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef780d41e5e16056765bc8461851072c9d7").to_vec().into(),815816 817 hex_literal::hex!("1da53b775b270400e7e61ed5cbc5a146547f210cec367e9af919603343b9cb56").to_vec().into(),818819 820 hex_literal::hex!("3a7472616e73616374696f6e5f6c6576656c3a").to_vec().into(),821 ];822823 let mut batches = Vec::<BenchmarkBatch>::new();824 let params = (&config, &allowlist);825826 add_benchmark!(params, batches, pallet_evm_migration, EvmMigration);827 add_benchmark!(params, batches, pallet_common, Common);828 add_benchmark!(params, batches, pallet_unique, Unique);829 add_benchmark!(params, batches, pallet_structure, Structure);830 add_benchmark!(params, batches, pallet_inflation, Inflation);831 add_benchmark!(params, batches, pallet_fungible, Fungible);832 add_benchmark!(params, batches, pallet_refungible, Refungible);833 add_benchmark!(params, batches, pallet_nonfungible, Nonfungible);834 835836 if batches.is_empty() { return Err("Benchmark not found for this pallet.".into()) }837 Ok(batches)838 }839 }840841 #[cfg(feature = "try-runtime")]842 impl frame_try_runtime::TryRuntime<Block> for Runtime {843 fn on_runtime_upgrade() -> (Weight, Weight) {844 log::info!("try-runtime::on_runtime_upgrade unique-chain.");845 let weight = Executive::try_runtime_upgrade().unwrap();846 (weight, RuntimeBlockWeights::get().max_block)847 }848849 fn execute_block_no_check(block: Block) -> Weight {850 Executive::execute_block_no_check(block)851 }852 }853 }854 }855}