difftreelog
fix broken benchmarking
in: master
4 files changed
node/cli/Cargo.tomldiffbeforeafterboth--- a/node/cli/Cargo.toml
+++ b/node/cli/Cargo.toml
@@ -317,4 +317,7 @@
[features]
default = []
-runtime-benchmarks = ['nft-runtime/runtime-benchmarks']
+runtime-benchmarks = [
+ 'nft-runtime/runtime-benchmarks',
+ 'polkadot-service/runtime-benchmarks',
+]
pallets/nft-transaction-payment/src/benchmarking.rsdiffbeforeafterboth--- a/pallets/nft-transaction-payment/src/benchmarking.rs
+++ /dev/null
@@ -1,18 +0,0 @@
-#![cfg(feature = "runtime-benchmarks")]
-
-use super::*;
-
-use sp_std::prelude::*;
-use frame_system::RawOrigin;
-use frame_benchmarking::{benchmarks};
-use frame_support::traits::OnInitialize;
-
-benchmarks! {
-
- // on_initialize {
- // let block1: T::BlockNumber = T::BlockNumber::from(1u32);
- // let block2: T::BlockNumber = T::BlockNumber::from(2u32);
- // Inflation::<T>::on_initialize(block1); // Create Treasury account
- // }: { Inflation::<T>::on_initialize(block2); } // Benchmark deposit_into_existing path
-
-}
pallets/nft-transaction-payment/src/lib.rsdiffbeforeafterboth--- a/pallets/nft-transaction-payment/src/lib.rs
+++ b/pallets/nft-transaction-payment/src/lib.rs
@@ -11,9 +11,6 @@
#[cfg(feature = "std")]
pub use serde::*;
-#[cfg(feature = "runtime-benchmarks")]
-mod benchmarking;
-
use frame_support::{decl_module, decl_storage};
use sp_std::prelude::*;
use up_sponsorship::SponsorshipHandler;
runtime/Cargo.tomldiffbeforeafterboth1################################################################################2# Package 34[package]5authors = ['Unique Network <support@uniquenetwork.io>']6build = 'build.rs'7description = 'Substrate node nft'8edition = '2018'9homepage = 'https://unique.network'10license = 'All Rights Reserved'11name = 'nft-runtime'12repository = 'https://github.com/usetech-llc/nft_private/'13version = '3.0.0'1415[package.metadata.docs.rs]16targets = ['x86_64-unknown-linux-gnu']1718[features]19default = ['std']20runtime-benchmarks = [21 'hex-literal',22 'frame-benchmarking',23 'frame-support/runtime-benchmarks',24 'frame-system-benchmarking',25 'frame-system/runtime-benchmarks',26 'pallet-evm-migration/runtime-benchmarks',27 'pallet-balances/runtime-benchmarks',28 'pallet-timestamp/runtime-benchmarks',29 'pallet-nft/runtime-benchmarks',30 'pallet-inflation/runtime-benchmarks',31 'sp-runtime/runtime-benchmarks',32]33std = [34 'codec/std',35 'max-encoded-len/std',36 'cumulus-pallet-aura-ext/std',37 'cumulus-pallet-parachain-system/std',38 'cumulus-pallet-xcm/std',39 'cumulus-pallet-xcmp-queue/std',40 'cumulus-primitives-core/std',41 'cumulus-primitives-utility/std',42 'frame-executive/std',43 'frame-support/std',44 'frame-system/std',45 'frame-system-rpc-runtime-api/std',46 'pallet-aura/std',47 'pallet-balances/std',48 # 'pallet-contracts/std',49 # 'pallet-contracts-primitives/std',50 # 'pallet-contracts-rpc-runtime-api/std',51 # 'pallet-contract-helpers/std',52 'pallet-randomness-collective-flip/std',53 'pallet-sudo/std',54 'pallet-timestamp/std',55 'pallet-transaction-payment/std',56 'pallet-transaction-payment-rpc-runtime-api/std',57 'pallet-treasury/std',58 'pallet-vesting/std',59 'pallet-evm/std',60 'pallet-evm-migration/std',61 'pallet-evm-contract-helpers/std',62 'pallet-evm-transaction-payment/std',63 'pallet-evm-coder-substrate/std',64 'pallet-ethereum/std',65 'fp-rpc/std',66 'parachain-info/std',67 'serde',68 'pallet-inflation/std',69 'pallet-nft/std',70 'pallet-scheduler/std',71 'pallet-nft-charge-transaction/std',72 'pallet-nft-transaction-payment/std',73 'nft-data-structs/std',74 'sp-api/std',75 'sp-block-builder/std',76 "sp-consensus-aura/std",77 'sp-core/std',78 'sp-inherents/std',79 'sp-io/std',80 'sp-offchain/std',81 'sp-runtime/std',82 'sp-session/std',83 'sp-std/std',84 'sp-transaction-pool/std',85 'sp-version/std',86 'xcm/std',87 'xcm-builder/std',88 'xcm-executor/std',89]90limit-testing = [91 'pallet-nft/limit-testing',92 'nft-data-structs/limit-testing',93]9495################################################################################96# Substrate Dependencies9798[dependencies.codec]99default-features = false100features = ['derive']101package = 'parity-scale-codec'102version = '2.0.0'103104[dependencies.frame-benchmarking]105default-features = false106git = 'https://github.com/paritytech/substrate.git'107optional = true108branch = 'polkadot-v0.9.8'109version = '3.0.0'110111[dependencies.frame-executive]112default-features = false113git = 'https://github.com/paritytech/substrate.git'114branch = 'polkadot-v0.9.8'115version = '3.0.0'116117[dependencies.frame-support]118default-features = false119git = 'https://github.com/paritytech/substrate.git'120branch = 'polkadot-v0.9.8'121version = '3.0.0'122123[dependencies.frame-system]124default-features = false125git = 'https://github.com/paritytech/substrate.git'126branch = 'polkadot-v0.9.8'127version = '3.0.0'128129[dependencies.frame-system-benchmarking]130default-features = false131git = 'https://github.com/paritytech/substrate.git'132optional = true133branch = 'polkadot-v0.9.8'134version = '3.0.0'135136[dependencies.frame-system-rpc-runtime-api]137default-features = false138git = 'https://github.com/paritytech/substrate.git'139branch = 'polkadot-v0.9.8'140version = '3.0.0'141142[dependencies.hex-literal]143optional = true144version = '0.3.1'145146[dependencies.serde]147default-features = false148features = ['derive']149optional = true150version = '1.0.119'151152[dependencies.pallet-aura]153default-features = false154git = 'https://github.com/paritytech/substrate.git'155branch = 'polkadot-v0.9.8'156version = '3.0.0'157158[dependencies.pallet-balances]159default-features = false160git = 'https://github.com/paritytech/substrate.git'161branch = 'polkadot-v0.9.8'162version = '3.0.0'163164# Contracts specific packages165# [dependencies.pallet-contracts]166# git = 'https://github.com/paritytech/substrate.git'167# default-features = false168# branch = 'polkadot-v0.9.8'169# version = '3.0.0'170171# [dependencies.pallet-contracts-primitives]172# git = 'https://github.com/paritytech/substrate.git'173# default-features = false174# branch = 'polkadot-v0.9.8'175# version = '3.0.0'176177# [dependencies.pallet-contracts-rpc-runtime-api]178# git = 'https://github.com/paritytech/substrate.git'179# default-features = false180# branch = 'polkadot-v0.9.8'181# version = '3.0.0'182183[dependencies.pallet-randomness-collective-flip]184default-features = false185git = 'https://github.com/paritytech/substrate.git'186branch = 'polkadot-v0.9.8'187version = '3.0.0'188189[dependencies.pallet-sudo]190default-features = false191git = 'https://github.com/paritytech/substrate.git'192branch = 'polkadot-v0.9.8'193version = '3.0.0'194195[dependencies.pallet-timestamp]196default-features = false197git = 'https://github.com/paritytech/substrate.git'198branch = 'polkadot-v0.9.8'199version = '3.0.0'200201[dependencies.pallet-transaction-payment]202default-features = false203git = 'https://github.com/paritytech/substrate.git'204branch = 'polkadot-v0.9.8'205version = '3.0.0'206207[dependencies.pallet-transaction-payment-rpc-runtime-api]208default-features = false209git = 'https://github.com/paritytech/substrate.git'210branch = 'polkadot-v0.9.8'211version = '3.0.0'212213[dependencies.pallet-treasury]214default-features = false215git = 'https://github.com/paritytech/substrate.git'216branch = 'polkadot-v0.9.8'217version = '3.0.0'218219[dependencies.pallet-vesting]220default-features = false221git = 'https://github.com/paritytech/substrate.git'222branch = 'polkadot-v0.9.8'223version = '3.0.0'224225[dependencies.sp-arithmetic]226default-features = false227git = 'https://github.com/paritytech/substrate.git'228branch = 'polkadot-v0.9.8'229version = '3.0.0'230231[dependencies.sp-api]232default-features = false233git = 'https://github.com/paritytech/substrate.git'234branch = 'polkadot-v0.9.8'235version = '3.0.0'236237[dependencies.sp-block-builder]238default-features = false239git = 'https://github.com/paritytech/substrate.git'240branch = 'polkadot-v0.9.8'241version = '3.0.0'242243[dependencies.sp-core]244default-features = false245git = 'https://github.com/paritytech/substrate.git'246branch = 'polkadot-v0.9.8'247version = '3.0.0'248249[dependencies.sp-consensus-aura]250default-features = false251git = 'https://github.com/paritytech/substrate.git'252branch = 'polkadot-v0.9.8'253version = '0.9.0'254255[dependencies.sp-inherents]256default-features = false257git = 'https://github.com/paritytech/substrate.git'258branch = 'polkadot-v0.9.8'259version = '3.0.0'260261[dependencies.sp-io]262default-features = false263git = 'https://github.com/paritytech/substrate.git'264branch = 'polkadot-v0.9.8'265version = '3.0.0'266267[dependencies.sp-offchain]268default-features = false269git = 'https://github.com/paritytech/substrate.git'270branch = 'polkadot-v0.9.8'271version = '3.0.0'272273[dependencies.sp-runtime]274default-features = false275git = 'https://github.com/paritytech/substrate.git'276branch = 'polkadot-v0.9.8'277version = '3.0.0'278279[dependencies.sp-session]280default-features = false281git = 'https://github.com/paritytech/substrate.git'282branch = 'polkadot-v0.9.8'283version = '3.0.0'284285[dependencies.sp-std]286default-features = false287git = 'https://github.com/paritytech/substrate.git'288branch = 'polkadot-v0.9.8'289version = '3.0.0'290291[dependencies.sp-transaction-pool]292default-features = false293git = 'https://github.com/paritytech/substrate.git'294branch = 'polkadot-v0.9.8'295version = '3.0.0'296297[dependencies.sp-version]298default-features = false299git = 'https://github.com/paritytech/substrate.git'300branch = 'polkadot-v0.9.8'301version = '3.0.0'302303[dependencies.smallvec]304version = '1.4.1'305306################################################################################307# Cumulus dependencies308309[dependencies.parachain-info]310default-features = false311git = 'https://github.com/paritytech/cumulus.git'312branch = 'polkadot-v0.9.8'313version = '0.1.0'314315[dependencies.cumulus-pallet-aura-ext]316git = 'https://github.com/paritytech/cumulus.git'317branch = 'polkadot-v0.9.8'318default-features = false319320[dependencies.cumulus-pallet-parachain-system]321git = 'https://github.com/paritytech/cumulus.git'322branch = 'polkadot-v0.9.8'323default-features = false324325[dependencies.cumulus-primitives-core]326git = 'https://github.com/paritytech/cumulus.git'327branch = 'polkadot-v0.9.8'328default-features = false329330[dependencies.cumulus-pallet-xcm]331git = 'https://github.com/paritytech/cumulus.git'332branch = 'polkadot-v0.9.8'333default-features = false334335[dependencies.cumulus-pallet-dmp-queue]336git = 'https://github.com/paritytech/cumulus.git'337branch = 'polkadot-v0.9.8'338default-features = false339340[dependencies.cumulus-pallet-xcmp-queue]341git = 'https://github.com/paritytech/cumulus.git'342branch = 'polkadot-v0.9.8'343default-features = false344345[dependencies.cumulus-primitives-utility]346git = 'https://github.com/paritytech/cumulus.git'347branch = 'polkadot-v0.9.8'348default-features = false349350[dependencies.cumulus-primitives-timestamp]351git = 'https://github.com/paritytech/cumulus.git'352branch = 'polkadot-v0.9.8'353default-features = false354355################################################################################356# Polkadot dependencies357358[dependencies.polkadot-parachain]359git = 'https://github.com/paritytech/polkadot'360branch = 'release-v0.9.8'361default-features = false362363[dependencies.xcm]364git = 'https://github.com/paritytech/polkadot'365branch = 'release-v0.9.8'366default-features = false367368[dependencies.xcm-builder]369git = 'https://github.com/paritytech/polkadot'370branch = 'release-v0.9.8'371default-features = false372373[dependencies.xcm-executor]374git = 'https://github.com/paritytech/polkadot'375branch = 'release-v0.9.8'376default-features = false377378[dependencies.pallet-xcm]379git = 'https://github.com/paritytech/polkadot'380branch = 'release-v0.9.8'381default-features = false382383384################################################################################385# local dependencies386387[dependencies]388max-encoded-len = { default-features = false, features = ['derive'], version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.8' }389derivative = "2.2.0"390pallet-nft = { path = '../pallets/nft', default-features = false, version = '3.0.0' }391pallet-inflation = { path = '../pallets/inflation', default-features = false, version = '3.0.0' }392nft-data-structs = { path = '../primitives/nft', default-features = false, version = '0.9.0' }393pallet-scheduler = { path = '../pallets/scheduler', default-features = false, version = '3.0.0' }394# pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }395pallet-nft-transaction-payment = { path = '../pallets/nft-transaction-payment', default-features = false, version = '3.0.0' }396pallet-nft-charge-transaction = { path = '../pallets/nft-charge-transaction', default-features = false, version = '3.0.0' }397pallet-evm-migration = { path = '../pallets/evm-migration', default-features = false }398pallet-evm-contract-helpers = { path = '../pallets/evm-contract-helpers', default-features = false }399pallet-evm-transaction-payment = { path = '../pallets/evm-transaction-payment', default-features = false }400pallet-evm-coder-substrate = { default-features = false, path = "../pallets/evm-coder-substrate" }401402pallet-evm = { default-features = false, version = "5.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "injected-transactions-parachain" }403pallet-ethereum = { default-features = false, version = "3.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "injected-transactions-parachain" }404fp-rpc = { default-features = false, version = "2.0.0", git = "https://github.com/uniquenetwork/frontier.git", branch = "injected-transactions-parachain" }405406################################################################################407# Build Dependencies408409[build-dependencies]410substrate-wasm-builder = '4.0.0'1################################################################################2# Package 34[package]5authors = ['Unique Network <support@uniquenetwork.io>']6build = 'build.rs'7description = 'Substrate node nft'8edition = '2018'9homepage = 'https://unique.network'10license = 'All Rights Reserved'11name = 'nft-runtime'12repository = 'https://github.com/usetech-llc/nft_private/'13version = '3.0.0'1415[package.metadata.docs.rs]16targets = ['x86_64-unknown-linux-gnu']1718[features]19default = ['std']20runtime-benchmarks = [21 'hex-literal',22 'frame-benchmarking',23 'frame-support/runtime-benchmarks',24 'frame-system-benchmarking',25 'frame-system/runtime-benchmarks',26 'pallet-evm-migration/runtime-benchmarks',27 'pallet-balances/runtime-benchmarks',28 'pallet-timestamp/runtime-benchmarks',29 'pallet-nft/runtime-benchmarks',30 'pallet-inflation/runtime-benchmarks',31 'pallet-xcm/runtime-benchmarks',32 'sp-runtime/runtime-benchmarks',33 'xcm-builder/runtime-benchmarks',34]35std = [36 'codec/std',37 'max-encoded-len/std',38 'cumulus-pallet-aura-ext/std',39 'cumulus-pallet-parachain-system/std',40 'cumulus-pallet-xcm/std',41 'cumulus-pallet-xcmp-queue/std',42 'cumulus-primitives-core/std',43 'cumulus-primitives-utility/std',44 'frame-executive/std',45 'frame-support/std',46 'frame-system/std',47 'frame-system-rpc-runtime-api/std',48 'pallet-aura/std',49 'pallet-balances/std',50 # 'pallet-contracts/std',51 # 'pallet-contracts-primitives/std',52 # 'pallet-contracts-rpc-runtime-api/std',53 # 'pallet-contract-helpers/std',54 'pallet-randomness-collective-flip/std',55 'pallet-sudo/std',56 'pallet-timestamp/std',57 'pallet-transaction-payment/std',58 'pallet-transaction-payment-rpc-runtime-api/std',59 'pallet-treasury/std',60 'pallet-vesting/std',61 'pallet-evm/std',62 'pallet-evm-migration/std',63 'pallet-evm-contract-helpers/std',64 'pallet-evm-transaction-payment/std',65 'pallet-evm-coder-substrate/std',66 'pallet-ethereum/std',67 'fp-rpc/std',68 'parachain-info/std',69 'serde',70 'pallet-inflation/std',71 'pallet-nft/std',72 'pallet-scheduler/std',73 'pallet-nft-charge-transaction/std',74 'pallet-nft-transaction-payment/std',75 'nft-data-structs/std',76 'sp-api/std',77 'sp-block-builder/std',78 "sp-consensus-aura/std",79 'sp-core/std',80 'sp-inherents/std',81 'sp-io/std',82 'sp-offchain/std',83 'sp-runtime/std',84 'sp-session/std',85 'sp-std/std',86 'sp-transaction-pool/std',87 'sp-version/std',88 'xcm/std',89 'xcm-builder/std',90 'xcm-executor/std',91]92limit-testing = [93 'pallet-nft/limit-testing',94 'nft-data-structs/limit-testing',95]9697################################################################################98# Substrate Dependencies99100[dependencies.codec]101default-features = false102features = ['derive']103package = 'parity-scale-codec'104version = '2.0.0'105106[dependencies.frame-benchmarking]107default-features = false108git = 'https://github.com/paritytech/substrate.git'109optional = true110branch = 'polkadot-v0.9.8'111version = '3.0.0'112113[dependencies.frame-executive]114default-features = false115git = 'https://github.com/paritytech/substrate.git'116branch = 'polkadot-v0.9.8'117version = '3.0.0'118119[dependencies.frame-support]120default-features = false121git = 'https://github.com/paritytech/substrate.git'122branch = 'polkadot-v0.9.8'123version = '3.0.0'124125[dependencies.frame-system]126default-features = false127git = 'https://github.com/paritytech/substrate.git'128branch = 'polkadot-v0.9.8'129version = '3.0.0'130131[dependencies.frame-system-benchmarking]132default-features = false133git = 'https://github.com/paritytech/substrate.git'134optional = true135branch = 'polkadot-v0.9.8'136version = '3.0.0'137138[dependencies.frame-system-rpc-runtime-api]139default-features = false140git = 'https://github.com/paritytech/substrate.git'141branch = 'polkadot-v0.9.8'142version = '3.0.0'143144[dependencies.hex-literal]145optional = true146version = '0.3.1'147148[dependencies.serde]149default-features = false150features = ['derive']151optional = true152version = '1.0.119'153154[dependencies.pallet-aura]155default-features = false156git = 'https://github.com/paritytech/substrate.git'157branch = 'polkadot-v0.9.8'158version = '3.0.0'159160[dependencies.pallet-balances]161default-features = false162git = 'https://github.com/paritytech/substrate.git'163branch = 'polkadot-v0.9.8'164version = '3.0.0'165166# Contracts specific packages167# [dependencies.pallet-contracts]168# git = 'https://github.com/paritytech/substrate.git'169# default-features = false170# branch = 'polkadot-v0.9.8'171# version = '3.0.0'172173# [dependencies.pallet-contracts-primitives]174# git = 'https://github.com/paritytech/substrate.git'175# default-features = false176# branch = 'polkadot-v0.9.8'177# version = '3.0.0'178179# [dependencies.pallet-contracts-rpc-runtime-api]180# git = 'https://github.com/paritytech/substrate.git'181# default-features = false182# branch = 'polkadot-v0.9.8'183# version = '3.0.0'184185[dependencies.pallet-randomness-collective-flip]186default-features = false187git = 'https://github.com/paritytech/substrate.git'188branch = 'polkadot-v0.9.8'189version = '3.0.0'190191[dependencies.pallet-sudo]192default-features = false193git = 'https://github.com/paritytech/substrate.git'194branch = 'polkadot-v0.9.8'195version = '3.0.0'196197[dependencies.pallet-timestamp]198default-features = false199git = 'https://github.com/paritytech/substrate.git'200branch = 'polkadot-v0.9.8'201version = '3.0.0'202203[dependencies.pallet-transaction-payment]204default-features = false205git = 'https://github.com/paritytech/substrate.git'206branch = 'polkadot-v0.9.8'207version = '3.0.0'208209[dependencies.pallet-transaction-payment-rpc-runtime-api]210default-features = false211git = 'https://github.com/paritytech/substrate.git'212branch = 'polkadot-v0.9.8'213version = '3.0.0'214215[dependencies.pallet-treasury]216default-features = false217git = 'https://github.com/paritytech/substrate.git'218branch = 'polkadot-v0.9.8'219version = '3.0.0'220221[dependencies.pallet-vesting]222default-features = false223git = 'https://github.com/paritytech/substrate.git'224branch = 'polkadot-v0.9.8'225version = '3.0.0'226227[dependencies.sp-arithmetic]228default-features = false229git = 'https://github.com/paritytech/substrate.git'230branch = 'polkadot-v0.9.8'231version = '3.0.0'232233[dependencies.sp-api]234default-features = false235git = 'https://github.com/paritytech/substrate.git'236branch = 'polkadot-v0.9.8'237version = '3.0.0'238239[dependencies.sp-block-builder]240default-features = false241git = 'https://github.com/paritytech/substrate.git'242branch = 'polkadot-v0.9.8'243version = '3.0.0'244245[dependencies.sp-core]246default-features = false247git = 'https://github.com/paritytech/substrate.git'248branch = 'polkadot-v0.9.8'249version = '3.0.0'250251[dependencies.sp-consensus-aura]252default-features = false253git = 'https://github.com/paritytech/substrate.git'254branch = 'polkadot-v0.9.8'255version = '0.9.0'256257[dependencies.sp-inherents]258default-features = false259git = 'https://github.com/paritytech/substrate.git'260branch = 'polkadot-v0.9.8'261version = '3.0.0'262263[dependencies.sp-io]264default-features = false265git = 'https://github.com/paritytech/substrate.git'266branch = 'polkadot-v0.9.8'267version = '3.0.0'268269[dependencies.sp-offchain]270default-features = false271git = 'https://github.com/paritytech/substrate.git'272branch = 'polkadot-v0.9.8'273version = '3.0.0'274275[dependencies.sp-runtime]276default-features = false277git = 'https://github.com/paritytech/substrate.git'278branch = 'polkadot-v0.9.8'279version = '3.0.0'280281[dependencies.sp-session]282default-features = false283git = 'https://github.com/paritytech/substrate.git'284branch = 'polkadot-v0.9.8'285version = '3.0.0'286287[dependencies.sp-std]288default-features = false289git = 'https://github.com/paritytech/substrate.git'290branch = 'polkadot-v0.9.8'291version = '3.0.0'292293[dependencies.sp-transaction-pool]294default-features = false295git = 'https://github.com/paritytech/substrate.git'296branch = 'polkadot-v0.9.8'297version = '3.0.0'298299[dependencies.sp-version]300default-features = false301git = 'https://github.com/paritytech/substrate.git'302branch = 'polkadot-v0.9.8'303version = '3.0.0'304305[dependencies.smallvec]306version = '1.4.1'307308################################################################################309# Cumulus dependencies310311[dependencies.parachain-info]312default-features = false313git = 'https://github.com/paritytech/cumulus.git'314branch = 'polkadot-v0.9.8'315version = '0.1.0'316317[dependencies.cumulus-pallet-aura-ext]318git = 'https://github.com/paritytech/cumulus.git'319branch = 'polkadot-v0.9.8'320default-features = false321322[dependencies.cumulus-pallet-parachain-system]323git = 'https://github.com/paritytech/cumulus.git'324branch = 'polkadot-v0.9.8'325default-features = false326327[dependencies.cumulus-primitives-core]328git = 'https://github.com/paritytech/cumulus.git'329branch = 'polkadot-v0.9.8'330default-features = false331332[dependencies.cumulus-pallet-xcm]333git = 'https://github.com/paritytech/cumulus.git'334branch = 'polkadot-v0.9.8'335default-features = false336337[dependencies.cumulus-pallet-dmp-queue]338git = 'https://github.com/paritytech/cumulus.git'339branch = 'polkadot-v0.9.8'340default-features = false341342[dependencies.cumulus-pallet-xcmp-queue]343git = 'https://github.com/paritytech/cumulus.git'344branch = 'polkadot-v0.9.8'345default-features = false346347[dependencies.cumulus-primitives-utility]348git = 'https://github.com/paritytech/cumulus.git'349branch = 'polkadot-v0.9.8'350default-features = false351352[dependencies.cumulus-primitives-timestamp]353git = 'https://github.com/paritytech/cumulus.git'354branch = 'polkadot-v0.9.8'355default-features = false356357################################################################################358# Polkadot dependencies359360[dependencies.polkadot-parachain]361git = 'https://github.com/paritytech/polkadot'362branch = 'release-v0.9.8'363default-features = false364365[dependencies.xcm]366git = 'https://github.com/paritytech/polkadot'367branch = 'release-v0.9.8'368default-features = false369370[dependencies.xcm-builder]371git = 'https://github.com/paritytech/polkadot'372branch = 'release-v0.9.8'373default-features = false374375[dependencies.xcm-executor]376git = 'https://github.com/paritytech/polkadot'377branch = 'release-v0.9.8'378default-features = false379380[dependencies.pallet-xcm]381git = 'https://github.com/paritytech/polkadot'382branch = 'release-v0.9.8'383default-features = false384385386################################################################################387# local dependencies388389[dependencies]390max-encoded-len = { default-features = false, features = ['derive'], version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.8' }391derivative = "2.2.0"392pallet-nft = { path = '../pallets/nft', default-features = false, version = '3.0.0' }393pallet-inflation = { path = '../pallets/inflation', default-features = false, version = '3.0.0' }394nft-data-structs = { path = '../primitives/nft', default-features = false, version = '0.9.0' }395pallet-scheduler = { path = '../pallets/scheduler', default-features = false, version = '3.0.0' }396# pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }397pallet-nft-transaction-payment = { path = '../pallets/nft-transaction-payment', default-features = false, version = '3.0.0' }398pallet-nft-charge-transaction = { path = '../pallets/nft-charge-transaction', default-features = false, version = '3.0.0' }399pallet-evm-migration = { path = '../pallets/evm-migration', default-features = false }400pallet-evm-contract-helpers = { path = '../pallets/evm-contract-helpers', default-features = false }401pallet-evm-transaction-payment = { path = '../pallets/evm-transaction-payment', default-features = false }402pallet-evm-coder-substrate = { default-features = false, path = "../pallets/evm-coder-substrate" }403404pallet-evm = { default-features = false, version = "5.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "injected-transactions-parachain" }405pallet-ethereum = { default-features = false, version = "3.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "injected-transactions-parachain" }406fp-rpc = { default-features = false, version = "2.0.0", git = "https://github.com/uniquenetwork/frontier.git", branch = "injected-transactions-parachain" }407408################################################################################409# Build Dependencies410411[build-dependencies]412substrate-wasm-builder = '4.0.0'