difftreelog
Merge pull request #255 from UniqueNetwork/feature/CORE-247
in: master
Inflation pallet block provider added. Setted up to relay chain.
8 files changed
Cargo.lockdiffbeforeafterboth--- a/Cargo.lock
+++ b/Cargo.lock
@@ -11679,6 +11679,7 @@
"pallet-evm-migration",
"pallet-evm-transaction-payment",
"pallet-fungible",
+ "pallet-inflation",
"pallet-nonfungible",
"pallet-randomness-collective-flip",
"pallet-refungible",
pallets/inflation/src/lib.rsdiffbeforeafterboth--- a/pallets/inflation/src/lib.rs
+++ b/pallets/inflation/src/lib.rs
@@ -3,13 +3,8 @@
// file 'LICENSE', which is part of this source code package.
//
-#![recursion_limit = "1024"]
+// #![recursion_limit = "1024"]
#![cfg_attr(not(feature = "std"), no_std)]
-
-#[cfg(feature = "std")]
-pub use std::*;
-
-pub use serde::{Serialize, Deserialize};
#[cfg(feature = "runtime-benchmarks")]
mod benchmarking;
@@ -17,65 +12,74 @@
#[cfg(test)]
mod tests;
-pub use frame_support::{
- construct_runtime, decl_module, decl_storage, ensure,
- traits::{
- Currency, ExistenceRequirement, Get, Imbalance, KeyOwnerProofSystem, OnUnbalanced,
- Randomness, IsSubType, WithdrawReasons,
- },
- weights::{
- constants::{BlockExecutionWeight, ExtrinsicBaseWeight, RocksDbWeight, WEIGHT_PER_SECOND},
- DispatchInfo, GetDispatchInfo, IdentityFee, Pays, PostDispatchInfo, Weight,
- WeightToFeePolynomial, DispatchClass,
- },
- StorageValue, transactional,
+use frame_support::{
+ dispatch::{DispatchResult},
+ traits::{Currency, Get},
};
-
-// #[cfg(feature = "runtime-benchmarks")]
-pub use frame_support::dispatch::DispatchResult;
-
+pub use pallet::*;
use sp_runtime::{
Perbill,
- traits::{Zero},
+ traits::{BlockNumberProvider},
};
+
use sp_std::convert::TryInto;
-
-use frame_system::{self as system};
-/// The balance type of this module.
-pub type BalanceOf<T> =
+type BalanceOf<T> =
<<T as Config>::Currency as Currency<<T as frame_system::Config>::AccountId>>::Balance;
-// pub const YEAR: u32 = 5_259_600; // 6-second block
-pub const YEAR: u32 = 2_629_800; // 12-second block
+pub const YEAR: u32 = 5_259_600; // 6-second block
+ // pub const YEAR: u32 = 2_629_800; // 12-second block
pub const TOTAL_YEARS_UNTIL_FLAT: u32 = 9;
pub const START_INFLATION_PERCENT: u32 = 10;
pub const END_INFLATION_PERCENT: u32 = 4;
-pub trait Config: system::Config {
- type Currency: Currency<Self::AccountId>;
- type TreasuryAccountId: Get<Self::AccountId>;
- type InflationBlockInterval: Get<Self::BlockNumber>;
-}
+#[frame_support::pallet]
+pub mod pallet {
+ use super::*;
+ use frame_support::pallet_prelude::*;
+ use frame_system::pallet_prelude::*;
-decl_storage! {
- trait Store for Module<T: Config> as Inflation {
- /// starting year total issuance
- pub StartingYearTotalIssuance get(fn starting_year_total_issuance): BalanceOf<T>;
+ #[pallet::config]
+ pub trait Config: frame_system::Config {
+ type Currency: Currency<Self::AccountId>;
+ type TreasuryAccountId: Get<Self::AccountId>;
+
+ // The block number provider
+ type BlockNumberProvider: BlockNumberProvider<BlockNumber = Self::BlockNumber>;
- /// Current block inflation
- pub BlockInflation get(fn block_inflation): BalanceOf<T>;
+ /// Number of blocks that pass between treasury balance updates due to inflation
+ #[pallet::constant]
+ type InflationBlockInterval: Get<Self::BlockNumber>;
}
-}
-decl_module! {
- pub struct Module<T: Config> for enum Call
- where
- origin: T::Origin,
- {
- const InflationBlockInterval: T::BlockNumber = T::InflationBlockInterval::get();
+ #[pallet::pallet]
+ #[pallet::generate_store(pub(super) trait Store)]
+ pub struct Pallet<T>(_);
+
+ /// starting year total issuance
+ #[pallet::storage]
+ pub type StartingYearTotalIssuance<T: Config> =
+ StorageValue<Value = BalanceOf<T>, QueryKind = ValueQuery>;
- fn on_initialize(now: T::BlockNumber) -> Weight
+ /// Current inflation for `InflationBlockInterval` number of blocks
+ #[pallet::storage]
+ pub type BlockInflation<T: Config> = StorageValue<Value = BalanceOf<T>, QueryKind = ValueQuery>;
+
+ /// Next target (relay) block when inflation will be applied
+ #[pallet::storage]
+ pub type NextInflationBlock<T: Config> =
+ StorageValue<Value = T::BlockNumber, QueryKind = ValueQuery>;
+
+ /// Next target (relay) block when inflation is recalculated
+ #[pallet::storage]
+ pub type NextRecalculationBlock<T: Config> =
+ StorageValue<Value = T::BlockNumber, QueryKind = ValueQuery>;
+
+ #[pallet::hooks]
+ impl<T: Config> Hooks<BlockNumberFor<T>> for Pallet<T> {
+ fn on_initialize(_: T::BlockNumber) -> Weight
+ where
+ <T as frame_system::Config>::BlockNumber: From<u32>,
{
let mut consumed_weight = 0;
let mut add_weight = |reads, writes, weight| {
@@ -84,47 +88,108 @@
};
let block_interval: u32 = T::InflationBlockInterval::get().try_into().unwrap_or(0);
+ let current_relay_block = T::BlockNumberProvider::current_block_number();
+ let next_inflation: T::BlockNumber = <NextInflationBlock<T>>::get();
+ add_weight(1, 0, 5_000_000);
- // TODO: Rewrite inflation to use block timestamp instead of block number
- // let _now = <timestamp::Module<T>>::get();
+ // Apply inflation every InflationBlockInterval blocks
+ // If next_inflation == 0, this means inflation wasn't yet initialized
+ if (next_inflation != 0u32.into()) && (current_relay_block >= next_inflation) {
+ // Recalculate inflation on the first block of the year (or if it is not initialized yet)
+ // Do the "current_relay_block >= next_recalculation" check in the "current_relay_block >= next_inflation"
+ // block because it saves InflationBlockInterval DB reads for NextRecalculationBlock.
+ let next_recalculation: T::BlockNumber = <NextRecalculationBlock<T>>::get();
+ add_weight(1, 0, 0);
+ if current_relay_block >= next_recalculation {
+ Self::recalculate_inflation(next_recalculation);
+ add_weight(0, 4, 5_000_000);
+ }
- // Recalculate inflation on the first block of the year (or if it is not initialized yet)
- if (now % T::BlockNumber::from(YEAR)).is_zero() || <BlockInflation<T>>::get().is_zero() {
- let current_year: u32 = (now / T::BlockNumber::from(YEAR)).try_into().unwrap_or(0);
+ T::Currency::deposit_into_existing(
+ &T::TreasuryAccountId::get(),
+ <BlockInflation<T>>::get(),
+ )
+ .ok();
- let one_percent = Perbill::from_percent(1);
+ // Update inflation block
+ <NextInflationBlock<T>>::set(next_inflation + block_interval.into());
- if current_year <= TOTAL_YEARS_UNTIL_FLAT {
- let amount: BalanceOf<T> = Perbill::from_rational(
- block_interval * (START_INFLATION_PERCENT * TOTAL_YEARS_UNTIL_FLAT - current_year * (START_INFLATION_PERCENT - END_INFLATION_PERCENT)),
- YEAR * TOTAL_YEARS_UNTIL_FLAT
- ) * ( one_percent * T::Currency::total_issuance() );
- <BlockInflation<T>>::put(amount);
- }
- else {
- let amount: BalanceOf<T> = Perbill::from_rational(
- block_interval * END_INFLATION_PERCENT,
- YEAR
- ) * (one_percent * T::Currency::total_issuance());
- <BlockInflation<T>>::put(amount);
- }
- <StartingYearTotalIssuance<T>>::set(T::Currency::total_issuance());
+ add_weight(3, 3, 10_000_000);
+ }
+
+ consumed_weight
+ }
+ }
+
+ #[pallet::call]
+ impl<T: Config> Pallet<T> {
+ /// This method sets the inflation start date. Can be only called once.
+ /// Inflation start block can be backdated and will catch up. The method will create Treasury
+ /// account if it does not exist and perform the first inflation deposit.
+ ///
+ /// # Permissions
+ ///
+ /// * Root
+ ///
+ /// # Arguments
+ ///
+ /// * inflation_start_relay_block: The relay chain block at which inflation should start
+ #[pallet::weight(0)]
+ pub fn start_inflation(
+ origin: OriginFor<T>,
+ inflation_start_relay_block: T::BlockNumber,
+ ) -> DispatchResult
+ where
+ <T as frame_system::Config>::BlockNumber: From<u32>,
+ {
+ ensure_root(origin)?;
- // First time deposit
- T::Currency::deposit_creating(&T::TreasuryAccountId::get(), <BlockInflation<T>>::get());
+ // Start inflation if it has not been yet initialized
+ let next_inflation: T::BlockNumber = <NextInflationBlock<T>>::get();
+ if next_inflation == 0u32.into() {
+ // Recalculate inflation. This can be backdated and will catch up.
+ Self::recalculate_inflation(inflation_start_relay_block);
+ let block_interval: u32 = T::InflationBlockInterval::get().try_into().unwrap_or(0);
+ <NextInflationBlock<T>>::set(inflation_start_relay_block + block_interval.into());
- add_weight(7, 6, 28_300_000);
+ // First time deposit - create Treasury account so that we can call deposit_into_existing everywhere else
+ T::Currency::deposit_creating(
+ &T::TreasuryAccountId::get(),
+ <BlockInflation<T>>::get(),
+ );
}
- // Apply inflation every InflationBlockInterval blocks and in the 1st block to initialize Treasury account
- else if (now % T::BlockNumber::from(block_interval)).is_zero() {
- T::Currency::deposit_into_existing(&T::TreasuryAccountId::get(), <BlockInflation<T>>::get()).ok();
+ Ok(())
+ }
+ }
+}
+
+impl<T: Config> Pallet<T> {
+ pub fn recalculate_inflation(recalculation_block: T::BlockNumber) {
+ let current_year: u32 = (recalculation_block / T::BlockNumber::from(YEAR))
+ .try_into()
+ .unwrap_or(0);
+ let block_interval: u32 = T::InflationBlockInterval::get().try_into().unwrap_or(0);
- add_weight(3, 2, 12_900_000);
- }
+ let one_percent = Perbill::from_percent(1);
- consumed_weight
+ if current_year <= TOTAL_YEARS_UNTIL_FLAT {
+ let amount: BalanceOf<T> = Perbill::from_rational(
+ block_interval
+ * (START_INFLATION_PERCENT * TOTAL_YEARS_UNTIL_FLAT
+ - current_year * (START_INFLATION_PERCENT - END_INFLATION_PERCENT)),
+ YEAR * TOTAL_YEARS_UNTIL_FLAT,
+ ) * (one_percent * T::Currency::total_issuance());
+ <BlockInflation<T>>::put(amount);
+ } else {
+ let amount: BalanceOf<T> =
+ Perbill::from_rational(block_interval * END_INFLATION_PERCENT, YEAR)
+ * (one_percent * T::Currency::total_issuance());
+ <BlockInflation<T>>::put(amount);
}
+ <StartingYearTotalIssuance<T>>::set(T::Currency::total_issuance());
+ // Update recalculation and inflation blocks
+ <NextRecalculationBlock<T>>::set(recalculation_block + YEAR.into());
}
}
pallets/inflation/src/tests.rsdiffbeforeafterboth--- a/pallets/inflation/src/tests.rs
+++ b/pallets/inflation/src/tests.rs
@@ -3,22 +3,23 @@
use crate as pallet_inflation;
use frame_support::{
- traits::{Currency},
- parameter_types,
-};
-use frame_support::{
- traits::{OnInitialize, Everything},
+ assert_ok, parameter_types,
+ traits::{Currency, OnInitialize, Everything},
};
+use frame_system::RawOrigin;
use sp_core::H256;
use sp_runtime::{
- traits::{BlakeTwo256, IdentityLookup},
+ traits::{BlakeTwo256, BlockNumberProvider, IdentityLookup},
testing::Header,
};
type UncheckedExtrinsic = frame_system::mocking::MockUncheckedExtrinsic<Test>;
type Block = frame_system::mocking::MockBlock<Test>;
-const YEAR: u64 = 2_629_800;
+const YEAR: u64 = 5_259_600; // 6-second blocks
+ // const YEAR: u64 = 2_629_800; // 12-second blocks
+ // Expected 100-block inflation for year 1 is 100 * 100_000_000 / YEAR = FIRST_YEAR_BLOCK_INFLATION
+const FIRST_YEAR_BLOCK_INFLATION: u64 = 1901;
parameter_types! {
pub const ExistentialDeposit: u64 = 1;
@@ -85,12 +86,22 @@
parameter_types! {
pub TreasuryAccountId: u64 = 1234;
pub const InflationBlockInterval: u32 = 100; // every time per how many blocks inflation is applied
+ pub static MockBlockNumberProvider: u64 = 0;
}
+impl BlockNumberProvider for MockBlockNumberProvider {
+ type BlockNumber = u64;
+
+ fn current_block_number() -> Self::BlockNumber {
+ Self::get()
+ }
+}
+
impl pallet_inflation::Config for Test {
type Currency = Balances;
type TreasuryAccountId = TreasuryAccountId;
type InflationBlockInterval = InflationBlockInterval;
+ type BlockNumberProvider = MockBlockNumberProvider;
}
pub fn new_test_ext() -> sp_io::TestExternalities {
@@ -100,6 +111,29 @@
.into()
}
+macro_rules! block_inflation {
+ // Block inflation doesn't have any argumets
+ () => {
+ // Return BlockInflation state variable current value
+ <pallet_inflation::BlockInflation<Test>>::get()
+ };
+}
+
+#[test]
+fn uninitialized_inflation() {
+ new_test_ext().execute_with(|| {
+ let initial_issuance: u64 = 1_000_000_000;
+ let _ = <Balances as Currency<_>>::deposit_creating(&1234, initial_issuance);
+ assert_eq!(Balances::free_balance(1234), initial_issuance);
+
+ // BlockInflation should be set after inflation is started
+ // first inflation deposit should be equal to BlockInflation
+ MockBlockNumberProvider::set(1);
+
+ assert_eq!(block_inflation!(), 0);
+ });
+}
+
#[test]
fn inflation_works() {
new_test_ext().execute_with(|| {
@@ -108,16 +142,25 @@
let _ = <Balances as Currency<_>>::deposit_creating(&1234, initial_issuance);
assert_eq!(Balances::free_balance(1234), initial_issuance);
- // BlockInflation should be set after 1st block and
+ // BlockInflation should be set after inflation is started
// first inflation deposit should be equal to BlockInflation
- Inflation::on_initialize(1);
+ MockBlockNumberProvider::set(1);
- // Expected 100-block inflation for year 1 is 100 * 100_000_000 / YEAR = 3803
- assert_eq!(Inflation::block_inflation(), 3803);
+ // Start inflation as sudo
+ assert_ok!(Inflation::start_inflation(RawOrigin::Root.into(), 1));
+ assert_eq!(block_inflation!(), FIRST_YEAR_BLOCK_INFLATION);
assert_eq!(
Balances::free_balance(1234) - initial_issuance,
- Inflation::block_inflation()
+ block_inflation!()
);
+
+ // Trigger inflation
+ MockBlockNumberProvider::set(102);
+ Inflation::on_initialize(0);
+ assert_eq!(
+ Balances::free_balance(1234) - initial_issuance,
+ 2 * block_inflation!()
+ );
});
}
@@ -128,25 +171,27 @@
let initial_issuance: u64 = 1_000_000_000;
let _ = <Balances as Currency<_>>::deposit_creating(&1234, initial_issuance);
assert_eq!(Balances::free_balance(1234), initial_issuance);
- Inflation::on_initialize(1);
+ MockBlockNumberProvider::set(1);
- // Next inflation deposit happens when block is multiple of InflationBlockInterval
- let mut block: u32 = 2;
+ // Start inflation as sudo
+ assert_ok!(Inflation::start_inflation(RawOrigin::Root.into(), 1));
+
+ // Next inflation deposit happens when block is greater then or equal to NextInflationBlock
+ let mut block: u64 = 2;
let balance_before: u64 = Balances::free_balance(1234);
- while block % InflationBlockInterval::get() != 0 {
- Inflation::on_initialize(block as u64);
+ while block < <pallet_inflation::NextInflationBlock<Test>>::get() {
+ MockBlockNumberProvider::set(block as u64);
+ Inflation::on_initialize(0);
block += 1;
}
let balance_just_before: u64 = Balances::free_balance(1234);
assert_eq!(balance_before, balance_just_before);
// The block with inflation
- Inflation::on_initialize(block as u64);
+ MockBlockNumberProvider::set(block as u64);
+ Inflation::on_initialize(0);
let balance_after: u64 = Balances::free_balance(1234);
- assert_eq!(
- balance_after - balance_just_before,
- Inflation::block_inflation()
- );
+ assert_eq!(balance_after - balance_just_before, block_inflation!());
});
}
@@ -157,59 +202,56 @@
let initial_issuance: u64 = 1_000_000_000;
let _ = <Balances as Currency<_>>::deposit_creating(&1234, initial_issuance);
assert_eq!(Balances::free_balance(1234), initial_issuance);
- Inflation::on_initialize(1);
+ MockBlockNumberProvider::set(1);
+ // Start inflation as sudo
+ assert_ok!(Inflation::start_inflation(RawOrigin::Root.into(), 1));
+
// Go through all the block inflations for year 1,
// total issuance will be updated accordingly
- for block in (100..YEAR).step_by(100) {
- Inflation::on_initialize(block);
+ // Inflation is set to start in block 1, so first iteration is block 101
+ for block in (101..YEAR).step_by(100) {
+ MockBlockNumberProvider::set(block);
+ Inflation::on_initialize(0);
}
assert_eq!(
- initial_issuance + (3803 * (YEAR / 100)),
+ initial_issuance + (FIRST_YEAR_BLOCK_INFLATION * (YEAR / 100)),
<Balances as Currency<_>>::total_issuance()
);
- Inflation::on_initialize(YEAR);
- let block_inflation_year_1 = Inflation::block_inflation();
- // Expected 100-block inflation for year 2: 100 * 9.33% * initial issuance * 110% / YEAR = 3904
- assert_eq!(block_inflation_year_1, 3904);
+ MockBlockNumberProvider::set(YEAR + 1);
+ Inflation::on_initialize(0);
+ let block_inflation_year_2 = block_inflation!();
+ // Expected 100-block inflation for year 2: 100 * 9.33% * initial issuance * 110% / YEAR == 1951
+ let expecter_year_2_inflation: u64 = (initial_issuance
+ + FIRST_YEAR_BLOCK_INFLATION * YEAR / 100)
+ * 933 * 100 / (10000 * YEAR);
+ assert_eq!(block_inflation_year_2 / 10, expecter_year_2_inflation / 10); // divide by 10 for approx. equality
});
}
#[test]
-fn inflation_in_1_to_9_years() {
+fn inflation_after_year_10_is_flat() {
new_test_ext().execute_with(|| {
// Total issuance = 1_000_000_000
let initial_issuance: u64 = 1_000_000_000;
let _ = <Balances as Currency<_>>::deposit_creating(&1234, initial_issuance);
assert_eq!(Balances::free_balance(1234), initial_issuance);
- Inflation::on_initialize(1);
+ MockBlockNumberProvider::set(YEAR * 9 + 1);
- for year in 1..=9 {
- let block_inflation_year_before = Inflation::block_inflation();
- Inflation::on_initialize(YEAR * year);
- let block_inflation_year_after = Inflation::block_inflation();
+ // Start inflation as sudo
+ assert_ok!(Inflation::start_inflation(RawOrigin::Root.into(), 1));
- // SBP M2 review: this is actually not true (not for the first few years)
- // Assert that next year inflation is less than previous year inflation
- assert!(block_inflation_year_before > block_inflation_year_after);
+ // Let inflation catch up
+ for _year in 1..=9 {
+ Inflation::on_initialize(0);
}
- });
-}
-#[test]
-fn inflation_after_year_10_is_flat() {
- new_test_ext().execute_with(|| {
- // Total issuance = 1_000_000_000
- let initial_issuance: u64 = 1_000_000_000;
- let _ = <Balances as Currency<_>>::deposit_creating(&1234, initial_issuance);
- assert_eq!(Balances::free_balance(1234), initial_issuance);
- Inflation::on_initialize(YEAR * 9);
-
for year in 10..=20 {
- let block_inflation_year_before = Inflation::block_inflation();
- Inflation::on_initialize(YEAR * year);
- let block_inflation_year_after = Inflation::block_inflation();
+ let block_inflation_year_before = block_inflation!();
+ MockBlockNumberProvider::set(YEAR * year + 1);
+ Inflation::on_initialize(0);
+ let block_inflation_year_after = block_inflation!();
// Assert that next year inflation is equal to previous year inflation
assert_eq!(block_inflation_year_before, block_inflation_year_after);
@@ -231,25 +273,32 @@
let _ = <Balances as Currency<_>>::deposit_creating(&1234, initial_issuance);
assert_eq!(Balances::free_balance(1234), initial_issuance);
+ // Start inflation as sudo
+ assert_ok!(Inflation::start_inflation(RawOrigin::Root.into(), 1));
+
for year in 0..=10 {
// Year first block
- Inflation::on_initialize(year * YEAR);
- let mut actual_payout = Inflation::block_inflation();
+ MockBlockNumberProvider::set(YEAR * year + 1);
+ Inflation::on_initialize(0);
+ let mut actual_payout = block_inflation!();
assert_eq!(actual_payout, payout_by_year[year as usize]);
// Year second block
- Inflation::on_initialize(year * YEAR + 1);
- actual_payout = Inflation::block_inflation();
+ MockBlockNumberProvider::set(YEAR * year + 2);
+ Inflation::on_initialize(0);
+ actual_payout = block_inflation!();
assert_eq!(actual_payout, payout_by_year[year as usize]);
// Year middle block
- Inflation::on_initialize(year * YEAR + YEAR / 2);
- actual_payout = Inflation::block_inflation();
+ MockBlockNumberProvider::set(year * YEAR + YEAR / 2);
+ Inflation::on_initialize(0);
+ actual_payout = block_inflation!();
assert_eq!(actual_payout, payout_by_year[year as usize]);
// Year last block
- Inflation::on_initialize((year + 1) * YEAR - 1);
- actual_payout = Inflation::block_inflation();
+ MockBlockNumberProvider::set((year + 1) * YEAR);
+ Inflation::on_initialize(0);
+ actual_payout = block_inflation!();
assert_eq!(actual_payout, payout_by_year[year as usize]);
}
});
runtime/Cargo.tomldiffbeforeafterboth--- a/runtime/Cargo.toml
+++ b/runtime/Cargo.toml
@@ -33,7 +33,7 @@
'pallet-refungible/runtime-benchmarks',
'pallet-nonfungible/runtime-benchmarks',
'pallet-unique/runtime-benchmarks',
-# 'pallet-inflation/runtime-benchmarks',
+ 'pallet-inflation/runtime-benchmarks',
'pallet-xcm/runtime-benchmarks',
'sp-runtime/runtime-benchmarks',
'xcm-builder/runtime-benchmarks',
@@ -75,7 +75,7 @@
'fp-self-contained/std',
'parachain-info/std',
'serde',
-# 'pallet-inflation/std',
+ 'pallet-inflation/std',
'pallet-common/std',
'pallet-fungible/std',
'pallet-refungible/std',
@@ -380,7 +380,7 @@
pallet-unique = { path = '../pallets/unique', default-features = false }
up-rpc = { path = "../primitives/rpc", default-features = false }
up-evm-mapping = { path = "../primitives/evm-mapping", default-features = false }
-# pallet-inflation = { path = '../pallets/inflation', default-features = false }
+pallet-inflation = { path = '../pallets/inflation', default-features = false }
up-data-structs = { path = '../primitives/data-structs', default-features = false }
pallet-common = { default-features = false, path = "../pallets/common" }
pallet-fungible = { default-features = false, path = "../pallets/fungible" }
runtime/src/lib.rsdiffbeforeafterboth1//2// This file is subject to the terms and conditions defined in3// file 'LICENSE', which is part of this source code package.4//56//! The Substrate Node Template runtime. This can be compiled with `#[no_std]`, ready for Wasm.78#![cfg_attr(not(feature = "std"), no_std)]9// `construct_runtime!` does a lot of recursion and requires us to increase the limit to 256.10#![recursion_limit = "1024"]11#![allow(clippy::from_over_into, clippy::identity_op)]12#![allow(clippy::fn_to_numeric_cast_with_truncation)]13// Make the WASM binary available.14#[cfg(feature = "std")]15include!(concat!(env!("OUT_DIR"), "/wasm_binary.rs"));1617use sp_api::impl_runtime_apis;18use sp_core::{crypto::KeyTypeId, OpaqueMetadata, H256, U256, H160};19use sp_runtime::DispatchError;20// #[cfg(any(feature = "std", test))]21// pub use sp_runtime::BuildStorage;2223use sp_runtime::{24 Permill, Perbill, Percent, create_runtime_str, generic, impl_opaque_keys,25 traits::{26 AccountIdLookup, BlakeTwo256, Block as BlockT, IdentifyAccount, Verify, AccountIdConversion,27 },28 transaction_validity::{TransactionSource, TransactionValidity},29 ApplyExtrinsicResult, MultiSignature,30};3132use sp_std::prelude::*;3334#[cfg(feature = "std")]35use sp_version::NativeVersion;36use sp_version::RuntimeVersion;37pub use pallet_transaction_payment::{38 Multiplier, TargetedFeeAdjustment, FeeDetails, RuntimeDispatchInfo,39};40// A few exports that help ease life for downstream crates.41pub use pallet_balances::Call as BalancesCall;42pub use pallet_evm::{EnsureAddressTruncated, HashedAddressMapping, Runner};43pub use frame_support::{44 construct_runtime, match_type,45 dispatch::DispatchResult,46 PalletId, parameter_types, StorageValue, ConsensusEngineId,47 traits::{48 Everything, Currency, ExistenceRequirement, Get, IsInVec, KeyOwnerProofSystem,49 LockIdentifier, OnUnbalanced, Randomness, FindAuthor,50 },51 weights::{52 constants::{BlockExecutionWeight, ExtrinsicBaseWeight, RocksDbWeight, WEIGHT_PER_SECOND},53 DispatchClass, DispatchInfo, GetDispatchInfo, IdentityFee, Pays, PostDispatchInfo, Weight,54 WeightToFeePolynomial, WeightToFeeCoefficient, WeightToFeeCoefficients,55 },56};57use up_data_structs::*;58// use pallet_contracts::weights::WeightInfo;59// #[cfg(any(feature = "std", test))]60use frame_system::{61 self as frame_system, EnsureRoot, EnsureSigned,62 limits::{BlockWeights, BlockLength},63};64use sp_arithmetic::{65 traits::{BaseArithmetic, Unsigned},66};67use smallvec::smallvec;68use codec::{Encode, Decode};69use pallet_evm::{Account as EVMAccount, FeeCalculator, GasWeightMapping, OnMethodCall};70use fp_rpc::TransactionStatus;71use sp_core::crypto::Public;72use sp_runtime::{73 traits::{BlockNumberProvider, Dispatchable, PostDispatchInfoOf},74 transaction_validity::TransactionValidityError,75};7677// pub use pallet_timestamp::Call as TimestampCall;78pub use sp_consensus_aura::sr25519::AuthorityId as AuraId;7980// Polkadot imports81use pallet_xcm::XcmPassthrough;82use polkadot_parachain::primitives::Sibling;83use xcm::v1::{BodyId, Junction::*, MultiLocation, NetworkId, Junctions::*};84use xcm_builder::{85 AccountId32Aliases, AllowTopLevelPaidExecutionFrom, AllowUnpaidExecutionFrom, CurrencyAdapter,86 EnsureXcmOrigin, FixedWeightBounds, IsConcrete, LocationInverter, NativeAsset,87 ParentAsSuperuser, ParentIsDefault, RelayChainAsNative, SiblingParachainAsNative,88 SiblingParachainConvertsVia, SignedAccountId32AsNative, SignedToAccountId32,89 SovereignSignedViaLocation, TakeWeightCredit, UsingComponents,90};91use xcm_executor::{Config, XcmExecutor};9293// mod chain_extension;94// use crate::chain_extension::{NFTExtension, Imbalance};9596/// An index to a block.97pub type BlockNumber = u32;9899/// Alias to 512-bit hash when used in the context of a transaction signature on the chain.100pub type Signature = MultiSignature;101102/// Some way of identifying an account on the chain. We intentionally make it equivalent103/// to the public key of our transaction signing scheme.104pub type AccountId = <<Signature as Verify>::Signer as IdentifyAccount>::AccountId;105106pub type CrossAccountId = pallet_common::account::BasicCrossAccountId<Runtime>;107108/// The type for looking up accounts. We don't expect more than 4 billion of them, but you109/// never know...110pub type AccountIndex = u32;111112/// Balance of an account.113pub type Balance = u128;114115/// Index of a transaction in the chain.116pub type Index = u32;117118/// A hash of some data used by the chain.119pub type Hash = sp_core::H256;120121/// Digest item type.122pub type DigestItem = generic::DigestItem;123124/// Opaque types. These are used by the CLI to instantiate machinery that don't need to know125/// the specifics of the runtime. They can then be made to be agnostic over specific formats126/// of data like extrinsics, allowing for them to continue syncing the network through upgrades127/// to even the core data structures.128pub mod opaque {129 use super::*;130131 pub use sp_runtime::OpaqueExtrinsic as UncheckedExtrinsic;132133 /// Opaque block type.134 pub type Block = generic::Block<Header, UncheckedExtrinsic>;135136 pub type SessionHandlers = ();137138 impl_opaque_keys! {139 pub struct SessionKeys {140 pub aura: Aura,141 }142 }143}144145/// This runtime version.146pub const VERSION: RuntimeVersion = RuntimeVersion {147 spec_name: create_runtime_str!("opal"),148 impl_name: create_runtime_str!("opal"),149 authoring_version: 1,150 spec_version: 913000,151 impl_version: 1,152 apis: RUNTIME_API_VERSIONS,153 transaction_version: 1,154};155156pub const MILLISECS_PER_BLOCK: u64 = 12000;157158pub const SLOT_DURATION: u64 = MILLISECS_PER_BLOCK;159160// These time units are defined in number of blocks.161pub const MINUTES: BlockNumber = 60_000 / (MILLISECS_PER_BLOCK as BlockNumber);162pub const HOURS: BlockNumber = MINUTES * 60;163pub const DAYS: BlockNumber = HOURS * 24;164165parameter_types! {166 pub const DefaultSponsoringRateLimit: BlockNumber = 1 * DAYS;167}168169#[derive(codec::Encode, codec::Decode)]170pub enum XCMPMessage<XAccountId, XBalance> {171 /// Transfer tokens to the given account from the Parachain account.172 TransferToken(XAccountId, XBalance),173}174175/// The version information used to identify this runtime when compiled natively.176#[cfg(feature = "std")]177pub fn native_version() -> NativeVersion {178 NativeVersion {179 runtime_version: VERSION,180 can_author_with: Default::default(),181 }182}183184type NegativeImbalance = <Balances as Currency<AccountId>>::NegativeImbalance;185186pub struct DealWithFees;187impl OnUnbalanced<NegativeImbalance> for DealWithFees {188 fn on_unbalanceds<B>(mut fees_then_tips: impl Iterator<Item = NegativeImbalance>) {189 if let Some(fees) = fees_then_tips.next() {190 // for fees, 100% to treasury191 let mut split = fees.ration(100, 0);192 if let Some(tips) = fees_then_tips.next() {193 // for tips, if any, 100% to treasury194 tips.ration_merge_into(100, 0, &mut split);195 }196 Treasury::on_unbalanced(split.0);197 // Author::on_unbalanced(split.1);198 }199 }200}201202/// We assume that ~10% of the block weight is consumed by `on_initalize` handlers.203/// This is used to limit the maximal weight of a single extrinsic.204const AVERAGE_ON_INITIALIZE_RATIO: Perbill = Perbill::from_percent(10);205/// We allow `Normal` extrinsics to fill up the block up to 75%, the rest can be used206/// by Operational extrinsics.207const NORMAL_DISPATCH_RATIO: Perbill = Perbill::from_percent(75);208/// We allow for 2 seconds of compute with a 6 second average block time.209const MAXIMUM_BLOCK_WEIGHT: Weight = WEIGHT_PER_SECOND / 2;210211parameter_types! {212 pub const BlockHashCount: BlockNumber = 2400;213 pub RuntimeBlockLength: BlockLength =214 BlockLength::max_with_normal_ratio(5 * 1024 * 1024, NORMAL_DISPATCH_RATIO);215 pub const AvailableBlockRatio: Perbill = Perbill::from_percent(75);216 pub const MaximumBlockLength: u32 = 5 * 1024 * 1024;217 pub RuntimeBlockWeights: BlockWeights = BlockWeights::builder()218 .base_block(BlockExecutionWeight::get())219 .for_class(DispatchClass::all(), |weights| {220 weights.base_extrinsic = ExtrinsicBaseWeight::get();221 })222 .for_class(DispatchClass::Normal, |weights| {223 weights.max_total = Some(NORMAL_DISPATCH_RATIO * MAXIMUM_BLOCK_WEIGHT);224 })225 .for_class(DispatchClass::Operational, |weights| {226 weights.max_total = Some(MAXIMUM_BLOCK_WEIGHT);227 // Operational transactions have some extra reserved space, so that they228 // are included even if block reached `MAXIMUM_BLOCK_WEIGHT`.229 weights.reserved = Some(230 MAXIMUM_BLOCK_WEIGHT - NORMAL_DISPATCH_RATIO * MAXIMUM_BLOCK_WEIGHT231 );232 })233 .avg_block_initialization(AVERAGE_ON_INITIALIZE_RATIO)234 .build_or_panic();235 pub const Version: RuntimeVersion = VERSION;236 pub const SS58Prefix: u8 = 42;237}238239parameter_types! {240 pub const ChainId: u64 = 8888;241}242243pub struct FixedFee;244impl FeeCalculator for FixedFee {245 fn min_gas_price() -> U256 {246 // Targeting 0.15 UNQ per transfer247 1_024_947_215_000u64.into()248 }249}250251// Assuming slowest ethereum opcode is SSTORE, with gas price of 20000 as our worst case252// (contract, which only writes a lot of data),253// approximating on top of our real store write weight254parameter_types! {255 pub const WritesPerSecond: u64 = WEIGHT_PER_SECOND / <Runtime as frame_system::Config>::DbWeight::get().write;256 pub const GasPerSecond: u64 = WritesPerSecond::get() * 20000;257 pub const WeightPerGas: u64 = WEIGHT_PER_SECOND / GasPerSecond::get();258}259260/// Limiting EVM execution to 50% of block for substrate users and management tasks261/// EVM transaction consumes more weight than substrate's, so we can't rely on them being262/// scheduled fairly263const EVM_DISPATCH_RATIO: Perbill = Perbill::from_percent(50);264parameter_types! {265 pub BlockGasLimit: U256 = U256::from(NORMAL_DISPATCH_RATIO * EVM_DISPATCH_RATIO * MAXIMUM_BLOCK_WEIGHT / WeightPerGas::get());266}267268pub enum FixedGasWeightMapping {}269impl GasWeightMapping for FixedGasWeightMapping {270 fn gas_to_weight(gas: u64) -> Weight {271 gas.saturating_mul(WeightPerGas::get())272 }273 fn weight_to_gas(weight: Weight) -> u64 {274 weight / WeightPerGas::get()275 }276}277278impl pallet_evm::Config for Runtime {279 type BlockGasLimit = BlockGasLimit;280 type FeeCalculator = FixedFee;281 type GasWeightMapping = FixedGasWeightMapping;282 type BlockHashMapping = pallet_ethereum::EthereumBlockHashMapping<Self>;283 type CallOrigin = EnsureAddressTruncated;284 type WithdrawOrigin = EnsureAddressTruncated;285 type AddressMapping = HashedAddressMapping<Self::Hashing>;286 type Precompiles = ();287 type Currency = Balances;288 type Event = Event;289 type OnMethodCall = (290 pallet_evm_migration::OnMethodCall<Self>,291 pallet_unique::UniqueErcSupport<Self>,292 pallet_evm_contract_helpers::HelpersOnMethodCall<Self>,293 );294 type OnCreate = pallet_evm_contract_helpers::HelpersOnCreate<Self>;295 type ChainId = ChainId;296 type Runner = pallet_evm::runner::stack::Runner<Self>;297 type OnChargeTransaction = pallet_evm_transaction_payment::OnChargeTransaction<Self>;298 type TransactionValidityHack = pallet_evm_transaction_payment::TransactionValidityHack<Self>;299 type FindAuthor = EthereumFindAuthor<Aura>;300}301302impl pallet_evm_migration::Config for Runtime {303 type WeightInfo = pallet_evm_migration::weights::SubstrateWeight<Self>;304}305306pub struct EthereumFindAuthor<F>(core::marker::PhantomData<F>);307impl<F: FindAuthor<u32>> FindAuthor<H160> for EthereumFindAuthor<F> {308 fn find_author<'a, I>(digests: I) -> Option<H160>309 where310 I: 'a + IntoIterator<Item = (ConsensusEngineId, &'a [u8])>,311 {312 if let Some(author_index) = F::find_author(digests) {313 let authority_id = Aura::authorities()[author_index as usize].clone();314 return Some(H160::from_slice(&authority_id.to_raw_vec()[4..24]));315 }316 None317 }318}319320impl pallet_ethereum::Config for Runtime {321 type Event = Event;322 type StateRoot = pallet_ethereum::IntermediateStateRoot;323}324325impl pallet_randomness_collective_flip::Config for Runtime {}326327impl frame_system::Config for Runtime {328 /// The data to be stored in an account.329 type AccountData = pallet_balances::AccountData<Balance>;330 /// The identifier used to distinguish between accounts.331 type AccountId = AccountId;332 /// The basic call filter to use in dispatchable.333 type BaseCallFilter = Everything;334 /// Maximum number of block number to block hash mappings to keep (oldest pruned first).335 type BlockHashCount = BlockHashCount;336 /// The maximum length of a block (in bytes).337 type BlockLength = RuntimeBlockLength;338 /// The index type for blocks.339 type BlockNumber = BlockNumber;340 /// The weight of the overhead invoked on the block import process, independent of the extrinsics included in that block.341 type BlockWeights = RuntimeBlockWeights;342 /// The aggregated dispatch type that is available for extrinsics.343 type Call = Call;344 /// The weight of database operations that the runtime can invoke.345 type DbWeight = RocksDbWeight;346 /// The ubiquitous event type.347 type Event = Event;348 /// The type for hashing blocks and tries.349 type Hash = Hash;350 /// The hashing algorithm used.351 type Hashing = BlakeTwo256;352 /// The header type.353 type Header = generic::Header<BlockNumber, BlakeTwo256>;354 /// The index type for storing how many extrinsics an account has signed.355 type Index = Index;356 /// The lookup mechanism to get account ID from whatever is passed in dispatchers.357 type Lookup = AccountIdLookup<AccountId, ()>;358 /// What to do if an account is fully reaped from the system.359 type OnKilledAccount = ();360 /// What to do if a new account is created.361 type OnNewAccount = ();362 type OnSetCode = cumulus_pallet_parachain_system::ParachainSetCode<Self>;363 /// The ubiquitous origin type.364 type Origin = Origin;365 /// This type is being generated by `construct_runtime!`.366 type PalletInfo = PalletInfo;367 /// This is used as an identifier of the chain. 42 is the generic substrate prefix.368 type SS58Prefix = SS58Prefix;369 /// Weight information for the extrinsics of this pallet.370 type SystemWeightInfo = frame_system::weights::SubstrateWeight<Self>;371 /// Version of the runtime.372 type Version = Version;373}374375parameter_types! {376 pub const MinimumPeriod: u64 = SLOT_DURATION / 2;377}378379impl pallet_timestamp::Config for Runtime {380 /// A timestamp: milliseconds since the unix epoch.381 type Moment = u64;382 type OnTimestampSet = ();383 type MinimumPeriod = MinimumPeriod;384 type WeightInfo = ();385}386387parameter_types! {388 // pub const ExistentialDeposit: u128 = 500;389 pub const ExistentialDeposit: u128 = 0;390 pub const MaxLocks: u32 = 50;391}392393impl pallet_balances::Config for Runtime {394 type MaxLocks = MaxLocks;395 type MaxReserves = ();396 type ReserveIdentifier = [u8; 8];397 /// The type for recording an account's balance.398 type Balance = Balance;399 /// The ubiquitous event type.400 type Event = Event;401 type DustRemoval = Treasury;402 type ExistentialDeposit = ExistentialDeposit;403 type AccountStore = System;404 type WeightInfo = pallet_balances::weights::SubstrateWeight<Self>;405}406407pub const MICROUNIQUE: Balance = 1_000_000_000_000;408pub const MILLIUNIQUE: Balance = 1_000 * MICROUNIQUE;409pub const CENTIUNIQUE: Balance = 10 * MILLIUNIQUE;410pub const UNIQUE: Balance = 100 * CENTIUNIQUE;411412pub const fn deposit(items: u32, bytes: u32) -> Balance {413 items as Balance * 15 * CENTIUNIQUE + (bytes as Balance) * 6 * CENTIUNIQUE414}415416/*417parameter_types! {418 pub TombstoneDeposit: Balance = deposit(419 1,420 sp_std::mem::size_of::<pallet_contracts::Pallet<Runtime>> as u32,421 );422 pub DepositPerContract: Balance = TombstoneDeposit::get();423 pub const DepositPerStorageByte: Balance = deposit(0, 1);424 pub const DepositPerStorageItem: Balance = deposit(1, 0);425 pub RentFraction: Perbill = Perbill::from_rational(1u32, 30 * DAYS);426 pub const SurchargeReward: Balance = 150 * MILLIUNIQUE;427 pub const SignedClaimHandicap: u32 = 2;428 pub const MaxDepth: u32 = 32;429 pub const MaxValueSize: u32 = 16 * 1024;430 pub const MaxCodeSize: u32 = 1024 * 1024 * 25; // 25 Mb431 // The lazy deletion runs inside on_initialize.432 pub DeletionWeightLimit: Weight = AVERAGE_ON_INITIALIZE_RATIO *433 RuntimeBlockWeights::get().max_block;434 // The weight needed for decoding the queue should be less or equal than a fifth435 // of the overall weight dedicated to the lazy deletion.436 pub DeletionQueueDepth: u32 = ((DeletionWeightLimit::get() / (437 <Runtime as pallet_contracts::Config>::WeightInfo::on_initialize_per_queue_item(1) -438 <Runtime as pallet_contracts::Config>::WeightInfo::on_initialize_per_queue_item(0)439 )) / 5) as u32;440 pub Schedule: pallet_contracts::Schedule<Runtime> = Default::default();441}442443impl pallet_contracts::Config for Runtime {444 type Time = Timestamp;445 type Randomness = RandomnessCollectiveFlip;446 type Currency = Balances;447 type Event = Event;448 type RentPayment = ();449 type SignedClaimHandicap = SignedClaimHandicap;450 type TombstoneDeposit = TombstoneDeposit;451 type DepositPerContract = DepositPerContract;452 type DepositPerStorageByte = DepositPerStorageByte;453 type DepositPerStorageItem = DepositPerStorageItem;454 type RentFraction = RentFraction;455 type SurchargeReward = SurchargeReward;456 type WeightPrice = pallet_transaction_payment::Pallet<Self>;457 type WeightInfo = pallet_contracts::weights::SubstrateWeight<Self>;458 type ChainExtension = NFTExtension;459 type DeletionQueueDepth = DeletionQueueDepth;460 type DeletionWeightLimit = DeletionWeightLimit;461 type Schedule = Schedule;462 type CallStack = [pallet_contracts::Frame<Self>; 31];463}464*/465466parameter_types! {467 pub const TransactionByteFee: Balance = 501 * MICROUNIQUE; // Targeting 0.1 Unique per NFT transfer468 /// This value increases the priority of `Operational` transactions by adding469 /// a "virtual tip" that's equal to the `OperationalFeeMultiplier * final_fee`.470 pub const OperationalFeeMultiplier: u8 = 5;471}472473/// Linear implementor of `WeightToFeePolynomial`474pub struct LinearFee<T>(sp_std::marker::PhantomData<T>);475476impl<T> WeightToFeePolynomial for LinearFee<T>477where478 T: BaseArithmetic + From<u32> + Copy + Unsigned,479{480 type Balance = T;481482 fn polynomial() -> WeightToFeeCoefficients<Self::Balance> {483 smallvec!(WeightToFeeCoefficient {484 // Targeting 0.1 Unique per NFT transfer485 coeff_integer: 142_688_000u32.into(),486 coeff_frac: Perbill::zero(),487 negative: false,488 degree: 1,489 })490 }491}492493impl pallet_transaction_payment::Config for Runtime {494 type OnChargeTransaction = pallet_transaction_payment::CurrencyAdapter<Balances, DealWithFees>;495 type TransactionByteFee = TransactionByteFee;496 type OperationalFeeMultiplier = OperationalFeeMultiplier;497 type WeightToFee = LinearFee<Balance>;498 type FeeMultiplierUpdate = ();499}500501parameter_types! {502 pub const ProposalBond: Permill = Permill::from_percent(5);503 pub const ProposalBondMinimum: Balance = 1 * UNIQUE;504 pub const SpendPeriod: BlockNumber = 5 * MINUTES;505 pub const Burn: Permill = Permill::from_percent(0);506 pub const TipCountdown: BlockNumber = 1 * DAYS;507 pub const TipFindersFee: Percent = Percent::from_percent(20);508 pub const TipReportDepositBase: Balance = 1 * UNIQUE;509 pub const DataDepositPerByte: Balance = 1 * CENTIUNIQUE;510 pub const BountyDepositBase: Balance = 1 * UNIQUE;511 pub const BountyDepositPayoutDelay: BlockNumber = 1 * DAYS;512 pub const TreasuryModuleId: PalletId = PalletId(*b"py/trsry");513 pub const BountyUpdatePeriod: BlockNumber = 14 * DAYS;514 pub const MaximumReasonLength: u32 = 16384;515 pub const BountyCuratorDeposit: Permill = Permill::from_percent(50);516 pub const BountyValueMinimum: Balance = 5 * UNIQUE;517 pub const MaxApprovals: u32 = 100;518}519520impl pallet_treasury::Config for Runtime {521 type PalletId = TreasuryModuleId;522 type Currency = Balances;523 type ApproveOrigin = EnsureRoot<AccountId>;524 type RejectOrigin = EnsureRoot<AccountId>;525 type Event = Event;526 type OnSlash = ();527 type ProposalBond = ProposalBond;528 type ProposalBondMinimum = ProposalBondMinimum;529 type SpendPeriod = SpendPeriod;530 type Burn = Burn;531 type BurnDestination = ();532 type SpendFunds = ();533 type WeightInfo = pallet_treasury::weights::SubstrateWeight<Self>;534 type MaxApprovals = MaxApprovals;535}536537impl pallet_sudo::Config for Runtime {538 type Event = Event;539 type Call = Call;540}541542pub struct RelayChainBlockNumberProvider<T>(sp_std::marker::PhantomData<T>);543544impl<T: cumulus_pallet_parachain_system::Config> BlockNumberProvider545 for RelayChainBlockNumberProvider<T>546{547 type BlockNumber = BlockNumber;548549 fn current_block_number() -> Self::BlockNumber {550 cumulus_pallet_parachain_system::Pallet::<T>::validation_data()551 .map(|d| d.relay_parent_number)552 .unwrap_or_default()553 }554}555556parameter_types! {557 pub const MinVestedTransfer: Balance = 10 * UNIQUE;558 pub const MaxVestingSchedules: u32 = 28;559}560561impl orml_vesting::Config for Runtime {562 type Event = Event;563 type Currency = pallet_balances::Pallet<Runtime>;564 type MinVestedTransfer = MinVestedTransfer;565 type VestedTransferOrigin = EnsureSigned<AccountId>;566 type WeightInfo = ();567 type MaxVestingSchedules = MaxVestingSchedules;568 type BlockNumberProvider = RelayChainBlockNumberProvider<Runtime>;569}570571parameter_types! {572 pub const ReservedDmpWeight: Weight = MAXIMUM_BLOCK_WEIGHT / 4;573 pub const ReservedXcmpWeight: Weight = MAXIMUM_BLOCK_WEIGHT / 4;574}575576impl cumulus_pallet_parachain_system::Config for Runtime {577 type Event = Event;578 type OnValidationData = ();579 type SelfParaId = parachain_info::Pallet<Self>;580 // type DownwardMessageHandlers = cumulus_primitives_utility::UnqueuedDmpAsParent<581 // MaxDownwardMessageWeight,582 // XcmExecutor<XcmConfig>,583 // Call,584 // >;585 type OutboundXcmpMessageSource = XcmpQueue;586 type DmpMessageHandler = DmpQueue;587 type ReservedDmpWeight = ReservedDmpWeight;588 type ReservedXcmpWeight = ReservedXcmpWeight;589 type XcmpMessageHandler = XcmpQueue;590}591592impl parachain_info::Config for Runtime {}593594impl cumulus_pallet_aura_ext::Config for Runtime {}595596parameter_types! {597 pub const RelayLocation: MultiLocation = MultiLocation::parent();598 pub const RelayNetwork: NetworkId = NetworkId::Polkadot;599 pub RelayOrigin: Origin = cumulus_pallet_xcm::Origin::Relay.into();600 pub Ancestry: MultiLocation = Parachain(ParachainInfo::parachain_id().into()).into();601}602603/// Type for specifying how a `MultiLocation` can be converted into an `AccountId`. This is used604/// when determining ownership of accounts for asset transacting and when attempting to use XCM605/// `Transact` in order to determine the dispatch Origin.606pub type LocationToAccountId = (607 // The parent (Relay-chain) origin converts to the default `AccountId`.608 ParentIsDefault<AccountId>,609 // Sibling parachain origins convert to AccountId via the `ParaId::into`.610 SiblingParachainConvertsVia<Sibling, AccountId>,611 // Straight up local `AccountId32` origins just alias directly to `AccountId`.612 AccountId32Aliases<RelayNetwork, AccountId>,613);614615/// Means for transacting assets on this chain.616pub type LocalAssetTransactor = CurrencyAdapter<617 // Use this currency:618 Balances,619 // Use this currency when it is a fungible asset matching the given location or name:620 IsConcrete<RelayLocation>,621 // Do a simple punn to convert an AccountId32 MultiLocation into a native chain account ID:622 LocationToAccountId,623 // Our chain's account ID type (we can't get away without mentioning it explicitly):624 AccountId,625 // We don't track any teleports.626 (),627>;628629/// This is the type we use to convert an (incoming) XCM origin into a local `Origin` instance,630/// ready for dispatching a transaction with Xcm's `Transact`. There is an `OriginKind` which can631/// biases the kind of local `Origin` it will become.632pub type XcmOriginToTransactDispatchOrigin = (633 // Sovereign account converter; this attempts to derive an `AccountId` from the origin location634 // using `LocationToAccountId` and then turn that into the usual `Signed` origin. Useful for635 // foreign chains who want to have a local sovereign account on this chain which they control.636 SovereignSignedViaLocation<LocationToAccountId, Origin>,637 // Native converter for Relay-chain (Parent) location; will converts to a `Relay` origin when638 // recognised.639 RelayChainAsNative<RelayOrigin, Origin>,640 // Native converter for sibling Parachains; will convert to a `SiblingPara` origin when641 // recognised.642 SiblingParachainAsNative<cumulus_pallet_xcm::Origin, Origin>,643 // Superuser converter for the Relay-chain (Parent) location. This will allow it to issue a644 // transaction from the Root origin.645 ParentAsSuperuser<Origin>,646 // Native signed account converter; this just converts an `AccountId32` origin into a normal647 // `Origin::Signed` origin of the same 32-byte value.648 SignedAccountId32AsNative<RelayNetwork, Origin>,649 // Xcm origins can be represented natively under the Xcm pallet's Xcm origin.650 XcmPassthrough<Origin>,651);652653parameter_types! {654 // One XCM operation is 1_000_000 weight - almost certainly a conservative estimate.655 pub UnitWeightCost: Weight = 1_000_000;656 // 1200 UNIQUEs buy 1 second of weight.657 pub const WeightPrice: (MultiLocation, u128) = (MultiLocation::parent(), 1_200 * UNIQUE);658 pub const MaxInstructions: u32 = 100;659 pub const MaxAuthorities: u32 = 100_000;660}661662match_type! {663 pub type ParentOrParentsUnitPlurality: impl Contains<MultiLocation> = {664 MultiLocation { parents: 1, interior: Here } |665 MultiLocation { parents: 1, interior: X1(Plurality { id: BodyId::Unit, .. }) }666 };667}668669pub type Barrier = (670 TakeWeightCredit,671 AllowTopLevelPaidExecutionFrom<Everything>,672 AllowUnpaidExecutionFrom<ParentOrParentsUnitPlurality>,673 // ^^^ Parent & its unit plurality gets free execution674);675676pub struct XcmConfig;677impl Config for XcmConfig {678 type Call = Call;679 type XcmSender = XcmRouter;680 // How to withdraw and deposit an asset.681 type AssetTransactor = LocalAssetTransactor;682 type OriginConverter = XcmOriginToTransactDispatchOrigin;683 type IsReserve = NativeAsset;684 type IsTeleporter = (); // Teleportation is disabled685 type LocationInverter = LocationInverter<Ancestry>;686 type Barrier = Barrier;687 type Weigher = FixedWeightBounds<UnitWeightCost, Call, MaxInstructions>;688 type Trader = UsingComponents<IdentityFee<Balance>, RelayLocation, AccountId, Balances, ()>;689 type ResponseHandler = (); // Don't handle responses for now.690 type SubscriptionService = PolkadotXcm;691692 type AssetTrap = PolkadotXcm;693 type AssetClaims = PolkadotXcm;694}695696// parameter_types! {697// pub const MaxDownwardMessageWeight: Weight = MAXIMUM_BLOCK_WEIGHT / 10;698// }699700/// No local origins on this chain are allowed to dispatch XCM sends/executions.701pub type LocalOriginToLocation = (SignedToAccountId32<Origin, AccountId, RelayNetwork>,);702703/// The means for routing XCM messages which are not for local execution into the right message704/// queues.705pub type XcmRouter = (706 // Two routers - use UMP to communicate with the relay chain:707 cumulus_primitives_utility::ParentAsUmp<ParachainSystem, ()>,708 // ..and XCMP to communicate with the sibling chains.709 XcmpQueue,710);711712impl pallet_evm_coder_substrate::Config for Runtime {713 type EthereumTransactionSender = pallet_ethereum::Pallet<Self>;714 type GasWeightMapping = FixedGasWeightMapping;715}716717impl pallet_xcm::Config for Runtime {718 type Event = Event;719 type SendXcmOrigin = EnsureXcmOrigin<Origin, LocalOriginToLocation>;720 type XcmRouter = XcmRouter;721 type ExecuteXcmOrigin = EnsureXcmOrigin<Origin, LocalOriginToLocation>;722 type XcmExecuteFilter = Everything;723 type XcmExecutor = XcmExecutor<XcmConfig>;724 type XcmTeleportFilter = Everything;725 type XcmReserveTransferFilter = Everything;726 type Weigher = FixedWeightBounds<UnitWeightCost, Call, MaxInstructions>;727 type LocationInverter = LocationInverter<Ancestry>;728 type Origin = Origin;729 type Call = Call;730 const VERSION_DISCOVERY_QUEUE_SIZE: u32 = 100;731 type AdvertisedXcmVersion = pallet_xcm::CurrentXcmVersion;732}733734impl cumulus_pallet_xcm::Config for Runtime {735 type Event = Event;736 type XcmExecutor = XcmExecutor<XcmConfig>;737}738739impl cumulus_pallet_xcmp_queue::Config for Runtime {740 type Event = Event;741 type XcmExecutor = XcmExecutor<XcmConfig>;742 type ChannelInfo = ParachainSystem;743 type VersionWrapper = ();744}745746impl cumulus_pallet_dmp_queue::Config for Runtime {747 type Event = Event;748 type XcmExecutor = XcmExecutor<XcmConfig>;749 type ExecuteOverweightOrigin = frame_system::EnsureRoot<AccountId>;750}751752impl pallet_aura::Config for Runtime {753 type AuthorityId = AuraId;754 type DisabledValidators = ();755 type MaxAuthorities = MaxAuthorities;756}757758parameter_types! {759 pub TreasuryAccountId: AccountId = TreasuryModuleId::get().into_account();760 pub const CollectionCreationPrice: Balance = 100 * UNIQUE;761}762763impl pallet_common::Config for Runtime {764 type Event = Event;765 type EvmBackwardsAddressMapping = up_evm_mapping::MapBackwardsAddressTruncated;766 type EvmAddressMapping = HashedAddressMapping<Self::Hashing>;767 type CrossAccountId = pallet_common::account::BasicCrossAccountId<Self>;768769 type Currency = Balances;770 type CollectionCreationPrice = CollectionCreationPrice;771 type TreasuryAccountId = TreasuryAccountId;772}773774impl pallet_fungible::Config for Runtime {775 type WeightInfo = pallet_fungible::weights::SubstrateWeight<Self>;776}777impl pallet_refungible::Config for Runtime {778 type WeightInfo = pallet_refungible::weights::SubstrateWeight<Self>;779}780impl pallet_nonfungible::Config for Runtime {781 type WeightInfo = pallet_nonfungible::weights::SubstrateWeight<Self>;782}783784impl pallet_unique::Config for Runtime {785 type Event = Event;786 type WeightInfo = pallet_unique::weights::SubstrateWeight<Self>;787}788/*789parameter_types! {790 pub const InflationBlockInterval: BlockNumber = 100; // every time per how many blocks inflation is applied791} */792793/// Used for the pallet inflation794/* impl pallet_inflation::Config for Runtime {795 type Currency = Balances;796 type TreasuryAccountId = TreasuryAccountId;797 type InflationBlockInterval = InflationBlockInterval;798} */799800// parameter_types! {801// pub MaximumSchedulerWeight: Weight = Perbill::from_percent(50) *802// RuntimeBlockWeights::get().max_block;803// pub const MaxScheduledPerBlock: u32 = 50;804// }805806type EvmSponsorshipHandler = (807 pallet_unique::UniqueEthSponsorshipHandler<Runtime>,808 pallet_evm_contract_helpers::HelpersContractSponsoring<Runtime>,809);810type SponsorshipHandler = (811 pallet_unique::UniqueSponsorshipHandler<Runtime>,812 //pallet_contract_helpers::ContractSponsorshipHandler<Runtime>,813 pallet_evm_transaction_payment::BridgeSponsorshipHandler<Runtime>,814);815816// impl pallet_unq_scheduler::Config for Runtime {817// type Event = Event;818// type Origin = Origin;819// type PalletsOrigin = OriginCaller;820// type Call = Call;821// type MaximumWeight = MaximumSchedulerWeight;822// type ScheduleOrigin = EnsureSigned<AccountId>;823// type MaxScheduledPerBlock = MaxScheduledPerBlock;824// type SponsorshipHandler = SponsorshipHandler;825// type WeightInfo = ();826// }827828impl pallet_evm_transaction_payment::Config for Runtime {829 type EvmSponsorshipHandler = EvmSponsorshipHandler;830 type Currency = Balances;831 type EvmAddressMapping = HashedAddressMapping<Self::Hashing>;832 type EvmBackwardsAddressMapping = up_evm_mapping::MapBackwardsAddressTruncated;833}834835impl pallet_charge_transaction::Config for Runtime {836 type SponsorshipHandler = SponsorshipHandler;837}838839// impl pallet_contract_helpers::Config for Runtime {840// type DefaultSponsoringRateLimit = DefaultSponsoringRateLimit;841// }842843parameter_types! {844 // 0x842899ECF380553E8a4de75bF534cdf6fBF64049845 pub const HelpersContractAddress: H160 = H160([846 0x84, 0x28, 0x99, 0xec, 0xf3, 0x80, 0x55, 0x3e, 0x8a, 0x4d, 0xe7, 0x5b, 0xf5, 0x34, 0xcd, 0xf6, 0xfb, 0xf6, 0x40, 0x49,847 ]);848}849850impl pallet_evm_contract_helpers::Config for Runtime {851 type ContractAddress = HelpersContractAddress;852 type DefaultSponsoringRateLimit = DefaultSponsoringRateLimit;853}854855construct_runtime!(856 pub enum Runtime where857 Block = Block,858 NodeBlock = opaque::Block,859 UncheckedExtrinsic = UncheckedExtrinsic860 {861 ParachainSystem: cumulus_pallet_parachain_system::{Pallet, Call, Storage, Inherent, Event<T>, ValidateUnsigned} = 20,862 ParachainInfo: parachain_info::{Pallet, Storage, Config} = 21,863864 Aura: pallet_aura::{Pallet, Config<T>} = 22,865 AuraExt: cumulus_pallet_aura_ext::{Pallet, Config} = 23,866867 Balances: pallet_balances::{Pallet, Call, Storage, Config<T>, Event<T>} = 30,868 RandomnessCollectiveFlip: pallet_randomness_collective_flip::{Pallet, Storage} = 31,869 Timestamp: pallet_timestamp::{Pallet, Call, Storage, Inherent} = 32,870 TransactionPayment: pallet_transaction_payment::{Pallet, Storage} = 33,871 Treasury: pallet_treasury::{Pallet, Call, Storage, Config, Event<T>} = 34,872 Sudo: pallet_sudo::{Pallet, Call, Storage, Config<T>, Event<T>} = 35,873 System: frame_system::{Pallet, Call, Storage, Config, Event<T>} = 36,874 Vesting: orml_vesting::{Pallet, Storage, Call, Event<T>, Config<T>} = 37,875 // Vesting: pallet_vesting::{Pallet, Call, Config<T>, Storage, Event<T>} = 37,876 // Contracts: pallet_contracts::{Pallet, Call, Storage, Event<T>} = 38,877878 // XCM helpers.879 XcmpQueue: cumulus_pallet_xcmp_queue::{Pallet, Call, Storage, Event<T>} = 50,880 PolkadotXcm: pallet_xcm::{Pallet, Call, Event<T>, Origin} = 51,881 CumulusXcm: cumulus_pallet_xcm::{Pallet, Call, Event<T>, Origin} = 52,882 DmpQueue: cumulus_pallet_dmp_queue::{Pallet, Call, Storage, Event<T>} = 53,883884 // Unique Pallets885 // Inflation: pallet_inflation::{Pallet, Call, Storage} = 60,886 Unique: pallet_unique::{Pallet, Call, Storage, Event<T>} = 61,887 // Scheduler: pallet_unq_scheduler::{Pallet, Call, Storage, Event<T>} = 62,888 // free = 63889 Charging: pallet_charge_transaction::{Pallet, Call, Storage } = 64,890 // ContractHelpers: pallet_contract_helpers::{Pallet, Call, Storage} = 65,891 Common: pallet_common::{Pallet, Storage, Event<T>} = 66,892 Fungible: pallet_fungible::{Pallet, Storage} = 67,893 Refungible: pallet_refungible::{Pallet, Storage} = 68,894 Nonfungible: pallet_nonfungible::{Pallet, Storage} = 69,895896 // Frontier897 EVM: pallet_evm::{Pallet, Config, Call, Storage, Event<T>} = 100,898 Ethereum: pallet_ethereum::{Pallet, Config, Call, Storage, Event, Origin} = 101,899900 EvmCoderSubstrate: pallet_evm_coder_substrate::{Pallet, Storage} = 150,901 EvmContractHelpers: pallet_evm_contract_helpers::{Pallet, Storage} = 151,902 EvmTransactionPayment: pallet_evm_transaction_payment::{Pallet} = 152,903 EvmMigration: pallet_evm_migration::{Pallet, Call, Storage} = 153,904 }905);906907pub struct TransactionConverter;908909impl fp_rpc::ConvertTransaction<UncheckedExtrinsic> for TransactionConverter {910 fn convert_transaction(&self, transaction: pallet_ethereum::Transaction) -> UncheckedExtrinsic {911 UncheckedExtrinsic::new_unsigned(912 pallet_ethereum::Call::<Runtime>::transact { transaction }.into(),913 )914 }915}916917impl fp_rpc::ConvertTransaction<opaque::UncheckedExtrinsic> for TransactionConverter {918 fn convert_transaction(919 &self,920 transaction: pallet_ethereum::Transaction,921 ) -> opaque::UncheckedExtrinsic {922 let extrinsic = UncheckedExtrinsic::new_unsigned(923 pallet_ethereum::Call::<Runtime>::transact { transaction }.into(),924 );925 let encoded = extrinsic.encode();926 opaque::UncheckedExtrinsic::decode(&mut &encoded[..])927 .expect("Encoded extrinsic is always valid")928 }929}930931/// The address format for describing accounts.932pub type Address = sp_runtime::MultiAddress<AccountId, ()>;933/// Block header type as expected by this runtime.934pub type Header = generic::Header<BlockNumber, BlakeTwo256>;935/// Block type as expected by this runtime.936pub type Block = generic::Block<Header, UncheckedExtrinsic>;937/// A Block signed with a Justification938pub type SignedBlock = generic::SignedBlock<Block>;939/// BlockId type as expected by this runtime.940pub type BlockId = generic::BlockId<Block>;941/// The SignedExtension to the basic transaction logic.942pub type SignedExtra = (943 frame_system::CheckSpecVersion<Runtime>,944 // system::CheckTxVersion<Runtime>,945 frame_system::CheckGenesis<Runtime>,946 frame_system::CheckEra<Runtime>,947 frame_system::CheckNonce<Runtime>,948 frame_system::CheckWeight<Runtime>,949 pallet_charge_transaction::ChargeTransactionPayment<Runtime>,950 //pallet_contract_helpers::ContractHelpersExtension<Runtime>,951);952/// Unchecked extrinsic type as expected by this runtime.953pub type UncheckedExtrinsic =954 fp_self_contained::UncheckedExtrinsic<Address, Call, Signature, SignedExtra>;955/// Extrinsic type that has already been checked.956pub type CheckedExtrinsic = fp_self_contained::CheckedExtrinsic<AccountId, Call, SignedExtra, H160>;957/// Executive: handles dispatch to the various modules.958pub type Executive = frame_executive::Executive<959 Runtime,960 Block,961 frame_system::ChainContext<Runtime>,962 Runtime,963 AllPallets,964>;965966impl_opaque_keys! {967 pub struct SessionKeys {968 pub aura: Aura,969 }970}971972impl fp_self_contained::SelfContainedCall for Call {973 type SignedInfo = H160;974975 fn is_self_contained(&self) -> bool {976 match self {977 Call::Ethereum(call) => call.is_self_contained(),978 _ => false,979 }980 }981982 fn check_self_contained(&self) -> Option<Result<Self::SignedInfo, TransactionValidityError>> {983 match self {984 Call::Ethereum(call) => call.check_self_contained(),985 _ => None,986 }987 }988989 fn validate_self_contained(&self, info: &Self::SignedInfo) -> Option<TransactionValidity> {990 match self {991 Call::Ethereum(call) => call.validate_self_contained(info),992 _ => None,993 }994 }995996 fn pre_dispatch_self_contained(997 &self,998 info: &Self::SignedInfo,999 ) -> Option<Result<(), TransactionValidityError>> {1000 match self {1001 Call::Ethereum(call) => call.pre_dispatch_self_contained(info),1002 _ => None,1003 }1004 }10051006 fn apply_self_contained(1007 self,1008 info: Self::SignedInfo,1009 ) -> Option<sp_runtime::DispatchResultWithInfo<PostDispatchInfoOf<Self>>> {1010 match self {1011 call @ Call::Ethereum(pallet_ethereum::Call::transact { .. }) => Some(call.dispatch(1012 Origin::from(pallet_ethereum::RawOrigin::EthereumTransaction(info)),1013 )),1014 _ => None,1015 }1016 }1017}10181019macro_rules! dispatch_unique_runtime {1020 ($collection:ident.$method:ident($($name:ident),*)) => {{1021 use pallet_unique::dispatch::Dispatched;10221023 let collection = Dispatched::dispatch(<pallet_common::CollectionHandle<Runtime>>::try_get($collection)?);1024 let dispatch = collection.as_dyn();10251026 Ok(dispatch.$method($($name),*))1027 }};1028}1029impl_runtime_apis! {1030 impl up_rpc::UniqueApi<Block, CrossAccountId, AccountId>1031 for Runtime1032 {1033 fn account_tokens(collection: CollectionId, account: CrossAccountId) -> Result<Vec<TokenId>, DispatchError> {1034 dispatch_unique_runtime!(collection.account_tokens(account))1035 }1036 fn token_exists(collection: CollectionId, token: TokenId) -> Result<bool, DispatchError> {1037 dispatch_unique_runtime!(collection.token_exists(token))1038 }10391040 fn token_owner(collection: CollectionId, token: TokenId) -> Result<CrossAccountId, DispatchError> {1041 dispatch_unique_runtime!(collection.token_owner(token))1042 }1043 fn const_metadata(collection: CollectionId, token: TokenId) -> Result<Vec<u8>, DispatchError> {1044 dispatch_unique_runtime!(collection.const_metadata(token))1045 }1046 fn variable_metadata(collection: CollectionId, token: TokenId) -> Result<Vec<u8>, DispatchError> {1047 dispatch_unique_runtime!(collection.variable_metadata(token))1048 }10491050 fn collection_tokens(collection: CollectionId) -> Result<u32, DispatchError> {1051 dispatch_unique_runtime!(collection.collection_tokens())1052 }1053 fn account_balance(collection: CollectionId, account: CrossAccountId) -> Result<u32, DispatchError> {1054 dispatch_unique_runtime!(collection.account_balance(account))1055 }1056 fn balance(collection: CollectionId, account: CrossAccountId, token: TokenId) -> Result<u128, DispatchError> {1057 dispatch_unique_runtime!(collection.balance(account, token))1058 }1059 fn allowance(1060 collection: CollectionId,1061 sender: CrossAccountId,1062 spender: CrossAccountId,1063 token: TokenId,1064 ) -> Result<u128, DispatchError> {1065 dispatch_unique_runtime!(collection.allowance(sender, spender, token))1066 }10671068 fn eth_contract_code(account: H160) -> Option<Vec<u8>> {1069 <pallet_unique::UniqueErcSupport<Runtime>>::get_code(&account)1070 .or_else(|| <pallet_evm_migration::OnMethodCall<Runtime>>::get_code(&account))1071 .or_else(|| <pallet_evm_contract_helpers::HelpersOnMethodCall<Self>>::get_code(&account))1072 }1073 fn adminlist(collection: CollectionId) -> Result<Vec<CrossAccountId>, DispatchError> {1074 Ok(<pallet_common::Pallet<Runtime>>::adminlist(collection))1075 }1076 fn allowlist(collection: CollectionId) -> Result<Vec<CrossAccountId>, DispatchError> {1077 Ok(<pallet_common::Pallet<Runtime>>::allowlist(collection))1078 }1079 fn allowed(collection: CollectionId, user: CrossAccountId) -> Result<bool, DispatchError> {1080 Ok(<pallet_common::Pallet<Runtime>>::allowed(collection, user))1081 }1082 fn last_token_id(collection: CollectionId) -> Result<TokenId, DispatchError> {1083 dispatch_unique_runtime!(collection.last_token_id())1084 }1085 fn collection_by_id(collection: CollectionId) -> Result<Option<Collection<AccountId>>, DispatchError> {1086 Ok(<pallet_common::CollectionById<Runtime>>::get(collection))1087 }1088 fn collection_stats() -> Result<CollectionStats, DispatchError> {1089 Ok(<pallet_common::Pallet<Runtime>>::collection_stats())1090 }1091 }10921093 impl sp_api::Core<Block> for Runtime {1094 fn version() -> RuntimeVersion {1095 VERSION1096 }10971098 fn execute_block(block: Block) {1099 Executive::execute_block(block)1100 }11011102 fn initialize_block(header: &<Block as BlockT>::Header) {1103 Executive::initialize_block(header)1104 }1105 }11061107 impl sp_api::Metadata<Block> for Runtime {1108 fn metadata() -> OpaqueMetadata {1109 OpaqueMetadata::new(Runtime::metadata().into())1110 }1111 }11121113 impl sp_block_builder::BlockBuilder<Block> for Runtime {1114 fn apply_extrinsic(extrinsic: <Block as BlockT>::Extrinsic) -> ApplyExtrinsicResult {1115 Executive::apply_extrinsic(extrinsic)1116 }11171118 fn finalize_block() -> <Block as BlockT>::Header {1119 Executive::finalize_block()1120 }11211122 fn inherent_extrinsics(data: sp_inherents::InherentData) -> Vec<<Block as BlockT>::Extrinsic> {1123 data.create_extrinsics()1124 }11251126 fn check_inherents(1127 block: Block,1128 data: sp_inherents::InherentData,1129 ) -> sp_inherents::CheckInherentsResult {1130 data.check_extrinsics(&block)1131 }11321133 // fn random_seed() -> <Block as BlockT>::Hash {1134 // RandomnessCollectiveFlip::random_seed().01135 // }1136 }11371138 impl sp_transaction_pool::runtime_api::TaggedTransactionQueue<Block> for Runtime {1139 fn validate_transaction(1140 source: TransactionSource,1141 tx: <Block as BlockT>::Extrinsic,1142 hash: <Block as BlockT>::Hash,1143 ) -> TransactionValidity {1144 Executive::validate_transaction(source, tx, hash)1145 }1146 }11471148 impl sp_offchain::OffchainWorkerApi<Block> for Runtime {1149 fn offchain_worker(header: &<Block as BlockT>::Header) {1150 Executive::offchain_worker(header)1151 }1152 }11531154 impl fp_rpc::EthereumRuntimeRPCApi<Block> for Runtime {1155 fn chain_id() -> u64 {1156 <Runtime as pallet_evm::Config>::ChainId::get()1157 }11581159 fn account_basic(address: H160) -> EVMAccount {1160 EVM::account_basic(&address)1161 }11621163 fn gas_price() -> U256 {1164 <Runtime as pallet_evm::Config>::FeeCalculator::min_gas_price()1165 }11661167 fn account_code_at(address: H160) -> Vec<u8> {1168 EVM::account_codes(address)1169 }11701171 fn author() -> H160 {1172 <pallet_evm::Pallet<Runtime>>::find_author()1173 }11741175 fn storage_at(address: H160, index: U256) -> H256 {1176 let mut tmp = [0u8; 32];1177 index.to_big_endian(&mut tmp);1178 EVM::account_storages(address, H256::from_slice(&tmp[..]))1179 }11801181 #[allow(clippy::redundant_closure)]1182 fn call(1183 from: H160,1184 to: H160,1185 data: Vec<u8>,1186 value: U256,1187 gas_limit: U256,1188 gas_price: Option<U256>,1189 nonce: Option<U256>,1190 estimate: bool,1191 ) -> Result<pallet_evm::CallInfo, sp_runtime::DispatchError> {1192 let config = if estimate {1193 let mut config = <Runtime as pallet_evm::Config>::config().clone();1194 config.estimate = true;1195 Some(config)1196 } else {1197 None1198 };11991200 <Runtime as pallet_evm::Config>::Runner::call(1201 from,1202 to,1203 data,1204 value,1205 gas_limit.low_u64(),1206 gas_price,1207 nonce,1208 config.as_ref().unwrap_or_else(|| <Runtime as pallet_evm::Config>::config()),1209 ).map_err(|err| err.into())1210 }12111212 #[allow(clippy::redundant_closure)]1213 fn create(1214 from: H160,1215 data: Vec<u8>,1216 value: U256,1217 gas_limit: U256,1218 gas_price: Option<U256>,1219 nonce: Option<U256>,1220 estimate: bool,1221 ) -> Result<pallet_evm::CreateInfo, sp_runtime::DispatchError> {1222 let config = if estimate {1223 let mut config = <Runtime as pallet_evm::Config>::config().clone();1224 config.estimate = true;1225 Some(config)1226 } else {1227 None1228 };12291230 <Runtime as pallet_evm::Config>::Runner::create(1231 from,1232 data,1233 value,1234 gas_limit.low_u64(),1235 gas_price,1236 nonce,1237 config.as_ref().unwrap_or_else(|| <Runtime as pallet_evm::Config>::config()),1238 ).map_err(|err| err.into())1239 }12401241 fn current_transaction_statuses() -> Option<Vec<TransactionStatus>> {1242 Ethereum::current_transaction_statuses()1243 }12441245 fn current_block() -> Option<pallet_ethereum::Block> {1246 Ethereum::current_block()1247 }12481249 fn current_receipts() -> Option<Vec<pallet_ethereum::Receipt>> {1250 Ethereum::current_receipts()1251 }12521253 fn current_all() -> (1254 Option<pallet_ethereum::Block>,1255 Option<Vec<pallet_ethereum::Receipt>>,1256 Option<Vec<TransactionStatus>>1257 ) {1258 (1259 Ethereum::current_block(),1260 Ethereum::current_receipts(),1261 Ethereum::current_transaction_statuses()1262 )1263 }12641265 fn extrinsic_filter(xts: Vec<<Block as sp_api::BlockT>::Extrinsic>) -> Vec<pallet_ethereum::Transaction> {1266 xts.into_iter().filter_map(|xt| match xt.0.function {1267 Call::Ethereum(pallet_ethereum::Call::transact { transaction }) => Some(transaction),1268 _ => None1269 }).collect()1270 }1271 }12721273 impl sp_session::SessionKeys<Block> for Runtime {1274 fn decode_session_keys(1275 encoded: Vec<u8>,1276 ) -> Option<Vec<(Vec<u8>, KeyTypeId)>> {1277 SessionKeys::decode_into_raw_public_keys(&encoded)1278 }12791280 fn generate_session_keys(seed: Option<Vec<u8>>) -> Vec<u8> {1281 SessionKeys::generate(seed)1282 }1283 }12841285 impl sp_consensus_aura::AuraApi<Block, AuraId> for Runtime {1286 fn slot_duration() -> sp_consensus_aura::SlotDuration {1287 sp_consensus_aura::SlotDuration::from_millis(Aura::slot_duration())1288 }12891290 fn authorities() -> Vec<AuraId> {1291 Aura::authorities().to_vec()1292 }1293 }12941295 impl cumulus_primitives_core::CollectCollationInfo<Block> for Runtime {1296 fn collect_collation_info() -> cumulus_primitives_core::CollationInfo {1297 ParachainSystem::collect_collation_info()1298 }1299 }13001301 impl frame_system_rpc_runtime_api::AccountNonceApi<Block, AccountId, Index> for Runtime {1302 fn account_nonce(account: AccountId) -> Index {1303 System::account_nonce(account)1304 }1305 }13061307 impl pallet_transaction_payment_rpc_runtime_api::TransactionPaymentApi<Block, Balance> for Runtime {1308 fn query_info(uxt: <Block as BlockT>::Extrinsic, len: u32) -> RuntimeDispatchInfo<Balance> {1309 TransactionPayment::query_info(uxt, len)1310 }1311 fn query_fee_details(uxt: <Block as BlockT>::Extrinsic, len: u32) -> FeeDetails<Balance> {1312 TransactionPayment::query_fee_details(uxt, len)1313 }1314 }13151316 /*1317 impl pallet_contracts_rpc_runtime_api::ContractsApi<Block, AccountId, Balance, BlockNumber, Hash>1318 for Runtime1319 {1320 fn call(1321 origin: AccountId,1322 dest: AccountId,1323 value: Balance,1324 gas_limit: u64,1325 input_data: Vec<u8>,1326 ) -> pallet_contracts_primitives::ContractExecResult {1327 Contracts::bare_call(origin, dest, value, gas_limit, input_data, false)1328 }13291330 fn instantiate(1331 origin: AccountId,1332 endowment: Balance,1333 gas_limit: u64,1334 code: pallet_contracts_primitives::Code<Hash>,1335 data: Vec<u8>,1336 salt: Vec<u8>,1337 ) -> pallet_contracts_primitives::ContractInstantiateResult<AccountId, BlockNumber>1338 {1339 Contracts::bare_instantiate(origin, endowment, gas_limit, code, data, salt, true, false)1340 }13411342 fn get_storage(1343 address: AccountId,1344 key: [u8; 32],1345 ) -> pallet_contracts_primitives::GetStorageResult {1346 Contracts::get_storage(address, key)1347 }13481349 fn rent_projection(1350 address: AccountId,1351 ) -> pallet_contracts_primitives::RentProjectionResult<BlockNumber> {1352 Contracts::rent_projection(address)1353 }1354 }1355 */13561357 #[cfg(feature = "runtime-benchmarks")]1358 impl frame_benchmarking::Benchmark<Block> for Runtime {1359 fn benchmark_metadata(extra: bool) -> (1360 Vec<frame_benchmarking::BenchmarkList>,1361 Vec<frame_support::traits::StorageInfo>,1362 ) {1363 use frame_benchmarking::{list_benchmark, Benchmarking, BenchmarkList};1364 use frame_support::traits::StorageInfoTrait;13651366 let mut list = Vec::<BenchmarkList>::new();13671368 list_benchmark!(list, extra, pallet_evm_migration, EvmMigration);1369 list_benchmark!(list, extra, pallet_unique, Unique);1370 //list_benchmark!(list, extra, pallet_inflation, Inflation);1371 list_benchmark!(list, extra, pallet_fungible, Fungible);1372 list_benchmark!(list, extra, pallet_refungible, Refungible);1373 list_benchmark!(list, extra, pallet_nonfungible, Nonfungible);1374 // list_benchmark!(list, extra, pallet_evm_coder_substrate, EvmCoderSubstrate);13751376 let storage_info = AllPalletsWithSystem::storage_info();13771378 return (list, storage_info)1379 }13801381 fn dispatch_benchmark(1382 config: frame_benchmarking::BenchmarkConfig1383 ) -> Result<Vec<frame_benchmarking::BenchmarkBatch>, sp_runtime::RuntimeString> {1384 use frame_benchmarking::{Benchmarking, BenchmarkBatch, add_benchmark, TrackedStorageKey};13851386 let allowlist: Vec<TrackedStorageKey> = vec![1387 // Block Number1388 hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef702a5c1b19ab7a04f536c519aca4983ac").to_vec().into(),1389 // Total Issuance1390 hex_literal::hex!("c2261276cc9d1f8598ea4b6a74b15c2f57c875e4cff74148e4628f264b974c80").to_vec().into(),1391 // Execution Phase1392 hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef7ff553b5a9862a516939d82b3d3d8661a").to_vec().into(),1393 // Event Count1394 hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef70a98fdbe9ce6c55837576c60c7af3850").to_vec().into(),1395 // System Events1396 hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef780d41e5e16056765bc8461851072c9d7").to_vec().into(),1397 ];13981399 let mut batches = Vec::<BenchmarkBatch>::new();1400 let params = (&config, &allowlist);14011402 add_benchmark!(params, batches, pallet_evm_migration, EvmMigration);1403 add_benchmark!(params, batches, pallet_unique, Unique);1404 //add_benchmark!(params, batches, pallet_inflation, Inflation);1405 add_benchmark!(params, batches, pallet_fungible, Fungible);1406 add_benchmark!(params, batches, pallet_refungible, Refungible);1407 add_benchmark!(params, batches, pallet_nonfungible, Nonfungible);1408 // add_benchmark!(params, batches, pallet_evm_coder_substrate, EvmCoderSubstrate);14091410 if batches.is_empty() { return Err("Benchmark not found for this pallet.".into()) }1411 Ok(batches)1412 }1413 }1414}14151416struct CheckInherents;14171418impl cumulus_pallet_parachain_system::CheckInherents<Block> for CheckInherents {1419 fn check_inherents(1420 block: &Block,1421 relay_state_proof: &cumulus_pallet_parachain_system::RelayChainStateProof,1422 ) -> sp_inherents::CheckInherentsResult {1423 let relay_chain_slot = relay_state_proof1424 .read_slot()1425 .expect("Could not read the relay chain slot from the proof");14261427 let inherent_data =1428 cumulus_primitives_timestamp::InherentDataProvider::from_relay_chain_slot_and_duration(1429 relay_chain_slot,1430 sp_std::time::Duration::from_secs(6),1431 )1432 .create_inherent_data()1433 .expect("Could not create the timestamp inherent data");14341435 inherent_data.check_extrinsics(block)1436 }1437}14381439cumulus_pallet_parachain_system::register_validate_block!(1440 Runtime = Runtime,1441 BlockExecutor = cumulus_pallet_aura_ext::BlockExecutor::<Runtime, Executive>,1442 CheckInherents = CheckInherents,1443);1//2// This file is subject to the terms and conditions defined in3// file 'LICENSE', which is part of this source code package.4//56//! The Substrate Node Template runtime. This can be compiled with `#[no_std]`, ready for Wasm.78#![cfg_attr(not(feature = "std"), no_std)]9// `construct_runtime!` does a lot of recursion and requires us to increase the limit to 256.10#![recursion_limit = "1024"]11#![allow(clippy::from_over_into, clippy::identity_op)]12#![allow(clippy::fn_to_numeric_cast_with_truncation)]13// Make the WASM binary available.14#[cfg(feature = "std")]15include!(concat!(env!("OUT_DIR"), "/wasm_binary.rs"));1617use sp_api::impl_runtime_apis;18use sp_core::{crypto::KeyTypeId, OpaqueMetadata, H256, U256, H160};19use sp_runtime::DispatchError;20// #[cfg(any(feature = "std", test))]21// pub use sp_runtime::BuildStorage;2223use sp_runtime::{24 Permill, Perbill, Percent, create_runtime_str, generic, impl_opaque_keys,25 traits::{26 AccountIdLookup, BlakeTwo256, Block as BlockT, IdentifyAccount, Verify, AccountIdConversion,27 },28 transaction_validity::{TransactionSource, TransactionValidity},29 ApplyExtrinsicResult, MultiSignature,30};3132use sp_std::prelude::*;3334#[cfg(feature = "std")]35use sp_version::NativeVersion;36use sp_version::RuntimeVersion;37pub use pallet_transaction_payment::{38 Multiplier, TargetedFeeAdjustment, FeeDetails, RuntimeDispatchInfo,39};40// A few exports that help ease life for downstream crates.41pub use pallet_balances::Call as BalancesCall;42pub use pallet_evm::{EnsureAddressTruncated, HashedAddressMapping, Runner};43pub use frame_support::{44 construct_runtime, match_type,45 dispatch::DispatchResult,46 PalletId, parameter_types, StorageValue, ConsensusEngineId,47 traits::{48 Everything, Currency, ExistenceRequirement, Get, IsInVec, KeyOwnerProofSystem,49 LockIdentifier, OnUnbalanced, Randomness, FindAuthor,50 },51 weights::{52 constants::{BlockExecutionWeight, ExtrinsicBaseWeight, RocksDbWeight, WEIGHT_PER_SECOND},53 DispatchClass, DispatchInfo, GetDispatchInfo, IdentityFee, Pays, PostDispatchInfo, Weight,54 WeightToFeePolynomial, WeightToFeeCoefficient, WeightToFeeCoefficients,55 },56};57use up_data_structs::*;58// use pallet_contracts::weights::WeightInfo;59// #[cfg(any(feature = "std", test))]60use frame_system::{61 self as frame_system, EnsureRoot, EnsureSigned,62 limits::{BlockWeights, BlockLength},63};64use sp_arithmetic::{65 traits::{BaseArithmetic, Unsigned},66};67use smallvec::smallvec;68use codec::{Encode, Decode};69use pallet_evm::{Account as EVMAccount, FeeCalculator, GasWeightMapping, OnMethodCall};70use fp_rpc::TransactionStatus;71use sp_core::crypto::Public;72use sp_runtime::{73 traits::{BlockNumberProvider, Dispatchable, PostDispatchInfoOf},74 transaction_validity::TransactionValidityError,75};7677// pub use pallet_timestamp::Call as TimestampCall;78pub use sp_consensus_aura::sr25519::AuthorityId as AuraId;7980// Polkadot imports81use pallet_xcm::XcmPassthrough;82use polkadot_parachain::primitives::Sibling;83use xcm::v1::{BodyId, Junction::*, MultiLocation, NetworkId, Junctions::*};84use xcm_builder::{85 AccountId32Aliases, AllowTopLevelPaidExecutionFrom, AllowUnpaidExecutionFrom, CurrencyAdapter,86 EnsureXcmOrigin, FixedWeightBounds, IsConcrete, LocationInverter, NativeAsset,87 ParentAsSuperuser, ParentIsDefault, RelayChainAsNative, SiblingParachainAsNative,88 SiblingParachainConvertsVia, SignedAccountId32AsNative, SignedToAccountId32,89 SovereignSignedViaLocation, TakeWeightCredit, UsingComponents,90};91use xcm_executor::{Config, XcmExecutor};9293// mod chain_extension;94// use crate::chain_extension::{NFTExtension, Imbalance};9596/// An index to a block.97pub type BlockNumber = u32;9899/// Alias to 512-bit hash when used in the context of a transaction signature on the chain.100pub type Signature = MultiSignature;101102/// Some way of identifying an account on the chain. We intentionally make it equivalent103/// to the public key of our transaction signing scheme.104pub type AccountId = <<Signature as Verify>::Signer as IdentifyAccount>::AccountId;105106pub type CrossAccountId = pallet_common::account::BasicCrossAccountId<Runtime>;107108/// The type for looking up accounts. We don't expect more than 4 billion of them, but you109/// never know...110pub type AccountIndex = u32;111112/// Balance of an account.113pub type Balance = u128;114115/// Index of a transaction in the chain.116pub type Index = u32;117118/// A hash of some data used by the chain.119pub type Hash = sp_core::H256;120121/// Digest item type.122pub type DigestItem = generic::DigestItem;123124/// Opaque types. These are used by the CLI to instantiate machinery that don't need to know125/// the specifics of the runtime. They can then be made to be agnostic over specific formats126/// of data like extrinsics, allowing for them to continue syncing the network through upgrades127/// to even the core data structures.128pub mod opaque {129 use super::*;130131 pub use sp_runtime::OpaqueExtrinsic as UncheckedExtrinsic;132133 /// Opaque block type.134 pub type Block = generic::Block<Header, UncheckedExtrinsic>;135136 pub type SessionHandlers = ();137138 impl_opaque_keys! {139 pub struct SessionKeys {140 pub aura: Aura,141 }142 }143}144145/// This runtime version.146pub const VERSION: RuntimeVersion = RuntimeVersion {147 spec_name: create_runtime_str!("opal"),148 impl_name: create_runtime_str!("opal"),149 authoring_version: 1,150 spec_version: 913000,151 impl_version: 1,152 apis: RUNTIME_API_VERSIONS,153 transaction_version: 1,154};155156pub const MILLISECS_PER_BLOCK: u64 = 12000;157158pub const SLOT_DURATION: u64 = MILLISECS_PER_BLOCK;159160// These time units are defined in number of blocks.161pub const MINUTES: BlockNumber = 60_000 / (MILLISECS_PER_BLOCK as BlockNumber);162pub const HOURS: BlockNumber = MINUTES * 60;163pub const DAYS: BlockNumber = HOURS * 24;164165parameter_types! {166 pub const DefaultSponsoringRateLimit: BlockNumber = 1 * DAYS;167}168169#[derive(codec::Encode, codec::Decode)]170pub enum XCMPMessage<XAccountId, XBalance> {171 /// Transfer tokens to the given account from the Parachain account.172 TransferToken(XAccountId, XBalance),173}174175/// The version information used to identify this runtime when compiled natively.176#[cfg(feature = "std")]177pub fn native_version() -> NativeVersion {178 NativeVersion {179 runtime_version: VERSION,180 can_author_with: Default::default(),181 }182}183184type NegativeImbalance = <Balances as Currency<AccountId>>::NegativeImbalance;185186pub struct DealWithFees;187impl OnUnbalanced<NegativeImbalance> for DealWithFees {188 fn on_unbalanceds<B>(mut fees_then_tips: impl Iterator<Item = NegativeImbalance>) {189 if let Some(fees) = fees_then_tips.next() {190 // for fees, 100% to treasury191 let mut split = fees.ration(100, 0);192 if let Some(tips) = fees_then_tips.next() {193 // for tips, if any, 100% to treasury194 tips.ration_merge_into(100, 0, &mut split);195 }196 Treasury::on_unbalanced(split.0);197 // Author::on_unbalanced(split.1);198 }199 }200}201202/// We assume that ~10% of the block weight is consumed by `on_initalize` handlers.203/// This is used to limit the maximal weight of a single extrinsic.204const AVERAGE_ON_INITIALIZE_RATIO: Perbill = Perbill::from_percent(10);205/// We allow `Normal` extrinsics to fill up the block up to 75%, the rest can be used206/// by Operational extrinsics.207const NORMAL_DISPATCH_RATIO: Perbill = Perbill::from_percent(75);208/// We allow for 2 seconds of compute with a 6 second average block time.209const MAXIMUM_BLOCK_WEIGHT: Weight = WEIGHT_PER_SECOND / 2;210211parameter_types! {212 pub const BlockHashCount: BlockNumber = 2400;213 pub RuntimeBlockLength: BlockLength =214 BlockLength::max_with_normal_ratio(5 * 1024 * 1024, NORMAL_DISPATCH_RATIO);215 pub const AvailableBlockRatio: Perbill = Perbill::from_percent(75);216 pub const MaximumBlockLength: u32 = 5 * 1024 * 1024;217 pub RuntimeBlockWeights: BlockWeights = BlockWeights::builder()218 .base_block(BlockExecutionWeight::get())219 .for_class(DispatchClass::all(), |weights| {220 weights.base_extrinsic = ExtrinsicBaseWeight::get();221 })222 .for_class(DispatchClass::Normal, |weights| {223 weights.max_total = Some(NORMAL_DISPATCH_RATIO * MAXIMUM_BLOCK_WEIGHT);224 })225 .for_class(DispatchClass::Operational, |weights| {226 weights.max_total = Some(MAXIMUM_BLOCK_WEIGHT);227 // Operational transactions have some extra reserved space, so that they228 // are included even if block reached `MAXIMUM_BLOCK_WEIGHT`.229 weights.reserved = Some(230 MAXIMUM_BLOCK_WEIGHT - NORMAL_DISPATCH_RATIO * MAXIMUM_BLOCK_WEIGHT231 );232 })233 .avg_block_initialization(AVERAGE_ON_INITIALIZE_RATIO)234 .build_or_panic();235 pub const Version: RuntimeVersion = VERSION;236 pub const SS58Prefix: u8 = 42;237}238239parameter_types! {240 pub const ChainId: u64 = 8888;241}242243pub struct FixedFee;244impl FeeCalculator for FixedFee {245 fn min_gas_price() -> U256 {246 // Targeting 0.15 UNQ per transfer247 1_024_947_215_000u64.into()248 }249}250251// Assuming slowest ethereum opcode is SSTORE, with gas price of 20000 as our worst case252// (contract, which only writes a lot of data),253// approximating on top of our real store write weight254parameter_types! {255 pub const WritesPerSecond: u64 = WEIGHT_PER_SECOND / <Runtime as frame_system::Config>::DbWeight::get().write;256 pub const GasPerSecond: u64 = WritesPerSecond::get() * 20000;257 pub const WeightPerGas: u64 = WEIGHT_PER_SECOND / GasPerSecond::get();258}259260/// Limiting EVM execution to 50% of block for substrate users and management tasks261/// EVM transaction consumes more weight than substrate's, so we can't rely on them being262/// scheduled fairly263const EVM_DISPATCH_RATIO: Perbill = Perbill::from_percent(50);264parameter_types! {265 pub BlockGasLimit: U256 = U256::from(NORMAL_DISPATCH_RATIO * EVM_DISPATCH_RATIO * MAXIMUM_BLOCK_WEIGHT / WeightPerGas::get());266}267268pub enum FixedGasWeightMapping {}269impl GasWeightMapping for FixedGasWeightMapping {270 fn gas_to_weight(gas: u64) -> Weight {271 gas.saturating_mul(WeightPerGas::get())272 }273 fn weight_to_gas(weight: Weight) -> u64 {274 weight / WeightPerGas::get()275 }276}277278impl pallet_evm::Config for Runtime {279 type BlockGasLimit = BlockGasLimit;280 type FeeCalculator = FixedFee;281 type GasWeightMapping = FixedGasWeightMapping;282 type BlockHashMapping = pallet_ethereum::EthereumBlockHashMapping<Self>;283 type CallOrigin = EnsureAddressTruncated;284 type WithdrawOrigin = EnsureAddressTruncated;285 type AddressMapping = HashedAddressMapping<Self::Hashing>;286 type Precompiles = ();287 type Currency = Balances;288 type Event = Event;289 type OnMethodCall = (290 pallet_evm_migration::OnMethodCall<Self>,291 pallet_unique::UniqueErcSupport<Self>,292 pallet_evm_contract_helpers::HelpersOnMethodCall<Self>,293 );294 type OnCreate = pallet_evm_contract_helpers::HelpersOnCreate<Self>;295 type ChainId = ChainId;296 type Runner = pallet_evm::runner::stack::Runner<Self>;297 type OnChargeTransaction = pallet_evm_transaction_payment::OnChargeTransaction<Self>;298 type TransactionValidityHack = pallet_evm_transaction_payment::TransactionValidityHack<Self>;299 type FindAuthor = EthereumFindAuthor<Aura>;300}301302impl pallet_evm_migration::Config for Runtime {303 type WeightInfo = pallet_evm_migration::weights::SubstrateWeight<Self>;304}305306pub struct EthereumFindAuthor<F>(core::marker::PhantomData<F>);307impl<F: FindAuthor<u32>> FindAuthor<H160> for EthereumFindAuthor<F> {308 fn find_author<'a, I>(digests: I) -> Option<H160>309 where310 I: 'a + IntoIterator<Item = (ConsensusEngineId, &'a [u8])>,311 {312 if let Some(author_index) = F::find_author(digests) {313 let authority_id = Aura::authorities()[author_index as usize].clone();314 return Some(H160::from_slice(&authority_id.to_raw_vec()[4..24]));315 }316 None317 }318}319320impl pallet_ethereum::Config for Runtime {321 type Event = Event;322 type StateRoot = pallet_ethereum::IntermediateStateRoot;323}324325impl pallet_randomness_collective_flip::Config for Runtime {}326327impl frame_system::Config for Runtime {328 /// The data to be stored in an account.329 type AccountData = pallet_balances::AccountData<Balance>;330 /// The identifier used to distinguish between accounts.331 type AccountId = AccountId;332 /// The basic call filter to use in dispatchable.333 type BaseCallFilter = Everything;334 /// Maximum number of block number to block hash mappings to keep (oldest pruned first).335 type BlockHashCount = BlockHashCount;336 /// The maximum length of a block (in bytes).337 type BlockLength = RuntimeBlockLength;338 /// The index type for blocks.339 type BlockNumber = BlockNumber;340 /// The weight of the overhead invoked on the block import process, independent of the extrinsics included in that block.341 type BlockWeights = RuntimeBlockWeights;342 /// The aggregated dispatch type that is available for extrinsics.343 type Call = Call;344 /// The weight of database operations that the runtime can invoke.345 type DbWeight = RocksDbWeight;346 /// The ubiquitous event type.347 type Event = Event;348 /// The type for hashing blocks and tries.349 type Hash = Hash;350 /// The hashing algorithm used.351 type Hashing = BlakeTwo256;352 /// The header type.353 type Header = generic::Header<BlockNumber, BlakeTwo256>;354 /// The index type for storing how many extrinsics an account has signed.355 type Index = Index;356 /// The lookup mechanism to get account ID from whatever is passed in dispatchers.357 type Lookup = AccountIdLookup<AccountId, ()>;358 /// What to do if an account is fully reaped from the system.359 type OnKilledAccount = ();360 /// What to do if a new account is created.361 type OnNewAccount = ();362 type OnSetCode = cumulus_pallet_parachain_system::ParachainSetCode<Self>;363 /// The ubiquitous origin type.364 type Origin = Origin;365 /// This type is being generated by `construct_runtime!`.366 type PalletInfo = PalletInfo;367 /// This is used as an identifier of the chain. 42 is the generic substrate prefix.368 type SS58Prefix = SS58Prefix;369 /// Weight information for the extrinsics of this pallet.370 type SystemWeightInfo = frame_system::weights::SubstrateWeight<Self>;371 /// Version of the runtime.372 type Version = Version;373}374375parameter_types! {376 pub const MinimumPeriod: u64 = SLOT_DURATION / 2;377}378379impl pallet_timestamp::Config for Runtime {380 /// A timestamp: milliseconds since the unix epoch.381 type Moment = u64;382 type OnTimestampSet = ();383 type MinimumPeriod = MinimumPeriod;384 type WeightInfo = ();385}386387parameter_types! {388 // pub const ExistentialDeposit: u128 = 500;389 pub const ExistentialDeposit: u128 = 0;390 pub const MaxLocks: u32 = 50;391}392393impl pallet_balances::Config for Runtime {394 type MaxLocks = MaxLocks;395 type MaxReserves = ();396 type ReserveIdentifier = [u8; 8];397 /// The type for recording an account's balance.398 type Balance = Balance;399 /// The ubiquitous event type.400 type Event = Event;401 type DustRemoval = Treasury;402 type ExistentialDeposit = ExistentialDeposit;403 type AccountStore = System;404 type WeightInfo = pallet_balances::weights::SubstrateWeight<Self>;405}406407pub const MICROUNIQUE: Balance = 1_000_000_000_000;408pub const MILLIUNIQUE: Balance = 1_000 * MICROUNIQUE;409pub const CENTIUNIQUE: Balance = 10 * MILLIUNIQUE;410pub const UNIQUE: Balance = 100 * CENTIUNIQUE;411412pub const fn deposit(items: u32, bytes: u32) -> Balance {413 items as Balance * 15 * CENTIUNIQUE + (bytes as Balance) * 6 * CENTIUNIQUE414}415416/*417parameter_types! {418 pub TombstoneDeposit: Balance = deposit(419 1,420 sp_std::mem::size_of::<pallet_contracts::Pallet<Runtime>> as u32,421 );422 pub DepositPerContract: Balance = TombstoneDeposit::get();423 pub const DepositPerStorageByte: Balance = deposit(0, 1);424 pub const DepositPerStorageItem: Balance = deposit(1, 0);425 pub RentFraction: Perbill = Perbill::from_rational(1u32, 30 * DAYS);426 pub const SurchargeReward: Balance = 150 * MILLIUNIQUE;427 pub const SignedClaimHandicap: u32 = 2;428 pub const MaxDepth: u32 = 32;429 pub const MaxValueSize: u32 = 16 * 1024;430 pub const MaxCodeSize: u32 = 1024 * 1024 * 25; // 25 Mb431 // The lazy deletion runs inside on_initialize.432 pub DeletionWeightLimit: Weight = AVERAGE_ON_INITIALIZE_RATIO *433 RuntimeBlockWeights::get().max_block;434 // The weight needed for decoding the queue should be less or equal than a fifth435 // of the overall weight dedicated to the lazy deletion.436 pub DeletionQueueDepth: u32 = ((DeletionWeightLimit::get() / (437 <Runtime as pallet_contracts::Config>::WeightInfo::on_initialize_per_queue_item(1) -438 <Runtime as pallet_contracts::Config>::WeightInfo::on_initialize_per_queue_item(0)439 )) / 5) as u32;440 pub Schedule: pallet_contracts::Schedule<Runtime> = Default::default();441}442443impl pallet_contracts::Config for Runtime {444 type Time = Timestamp;445 type Randomness = RandomnessCollectiveFlip;446 type Currency = Balances;447 type Event = Event;448 type RentPayment = ();449 type SignedClaimHandicap = SignedClaimHandicap;450 type TombstoneDeposit = TombstoneDeposit;451 type DepositPerContract = DepositPerContract;452 type DepositPerStorageByte = DepositPerStorageByte;453 type DepositPerStorageItem = DepositPerStorageItem;454 type RentFraction = RentFraction;455 type SurchargeReward = SurchargeReward;456 type WeightPrice = pallet_transaction_payment::Pallet<Self>;457 type WeightInfo = pallet_contracts::weights::SubstrateWeight<Self>;458 type ChainExtension = NFTExtension;459 type DeletionQueueDepth = DeletionQueueDepth;460 type DeletionWeightLimit = DeletionWeightLimit;461 type Schedule = Schedule;462 type CallStack = [pallet_contracts::Frame<Self>; 31];463}464*/465466parameter_types! {467 pub const TransactionByteFee: Balance = 501 * MICROUNIQUE; // Targeting 0.1 Unique per NFT transfer468 /// This value increases the priority of `Operational` transactions by adding469 /// a "virtual tip" that's equal to the `OperationalFeeMultiplier * final_fee`.470 pub const OperationalFeeMultiplier: u8 = 5;471}472473/// Linear implementor of `WeightToFeePolynomial`474pub struct LinearFee<T>(sp_std::marker::PhantomData<T>);475476impl<T> WeightToFeePolynomial for LinearFee<T>477where478 T: BaseArithmetic + From<u32> + Copy + Unsigned,479{480 type Balance = T;481482 fn polynomial() -> WeightToFeeCoefficients<Self::Balance> {483 smallvec!(WeightToFeeCoefficient {484 // Targeting 0.1 Unique per NFT transfer485 coeff_integer: 142_688_000u32.into(),486 coeff_frac: Perbill::zero(),487 negative: false,488 degree: 1,489 })490 }491}492493impl pallet_transaction_payment::Config for Runtime {494 type OnChargeTransaction = pallet_transaction_payment::CurrencyAdapter<Balances, DealWithFees>;495 type TransactionByteFee = TransactionByteFee;496 type OperationalFeeMultiplier = OperationalFeeMultiplier;497 type WeightToFee = LinearFee<Balance>;498 type FeeMultiplierUpdate = ();499}500501parameter_types! {502 pub const ProposalBond: Permill = Permill::from_percent(5);503 pub const ProposalBondMinimum: Balance = 1 * UNIQUE;504 pub const SpendPeriod: BlockNumber = 5 * MINUTES;505 pub const Burn: Permill = Permill::from_percent(0);506 pub const TipCountdown: BlockNumber = 1 * DAYS;507 pub const TipFindersFee: Percent = Percent::from_percent(20);508 pub const TipReportDepositBase: Balance = 1 * UNIQUE;509 pub const DataDepositPerByte: Balance = 1 * CENTIUNIQUE;510 pub const BountyDepositBase: Balance = 1 * UNIQUE;511 pub const BountyDepositPayoutDelay: BlockNumber = 1 * DAYS;512 pub const TreasuryModuleId: PalletId = PalletId(*b"py/trsry");513 pub const BountyUpdatePeriod: BlockNumber = 14 * DAYS;514 pub const MaximumReasonLength: u32 = 16384;515 pub const BountyCuratorDeposit: Permill = Permill::from_percent(50);516 pub const BountyValueMinimum: Balance = 5 * UNIQUE;517 pub const MaxApprovals: u32 = 100;518}519520impl pallet_treasury::Config for Runtime {521 type PalletId = TreasuryModuleId;522 type Currency = Balances;523 type ApproveOrigin = EnsureRoot<AccountId>;524 type RejectOrigin = EnsureRoot<AccountId>;525 type Event = Event;526 type OnSlash = ();527 type ProposalBond = ProposalBond;528 type ProposalBondMinimum = ProposalBondMinimum;529 type SpendPeriod = SpendPeriod;530 type Burn = Burn;531 type BurnDestination = ();532 type SpendFunds = ();533 type WeightInfo = pallet_treasury::weights::SubstrateWeight<Self>;534 type MaxApprovals = MaxApprovals;535}536537impl pallet_sudo::Config for Runtime {538 type Event = Event;539 type Call = Call;540}541542pub struct RelayChainBlockNumberProvider<T>(sp_std::marker::PhantomData<T>);543544impl<T: cumulus_pallet_parachain_system::Config> BlockNumberProvider545 for RelayChainBlockNumberProvider<T>546{547 type BlockNumber = BlockNumber;548549 fn current_block_number() -> Self::BlockNumber {550 cumulus_pallet_parachain_system::Pallet::<T>::validation_data()551 .map(|d| d.relay_parent_number)552 .unwrap_or_default()553 }554}555556parameter_types! {557 pub const MinVestedTransfer: Balance = 10 * UNIQUE;558 pub const MaxVestingSchedules: u32 = 28;559}560561impl orml_vesting::Config for Runtime {562 type Event = Event;563 type Currency = pallet_balances::Pallet<Runtime>;564 type MinVestedTransfer = MinVestedTransfer;565 type VestedTransferOrigin = EnsureSigned<AccountId>;566 type WeightInfo = ();567 type MaxVestingSchedules = MaxVestingSchedules;568 type BlockNumberProvider = RelayChainBlockNumberProvider<Runtime>;569}570571parameter_types! {572 pub const ReservedDmpWeight: Weight = MAXIMUM_BLOCK_WEIGHT / 4;573 pub const ReservedXcmpWeight: Weight = MAXIMUM_BLOCK_WEIGHT / 4;574}575576impl cumulus_pallet_parachain_system::Config for Runtime {577 type Event = Event;578 type OnValidationData = ();579 type SelfParaId = parachain_info::Pallet<Self>;580 // type DownwardMessageHandlers = cumulus_primitives_utility::UnqueuedDmpAsParent<581 // MaxDownwardMessageWeight,582 // XcmExecutor<XcmConfig>,583 // Call,584 // >;585 type OutboundXcmpMessageSource = XcmpQueue;586 type DmpMessageHandler = DmpQueue;587 type ReservedDmpWeight = ReservedDmpWeight;588 type ReservedXcmpWeight = ReservedXcmpWeight;589 type XcmpMessageHandler = XcmpQueue;590}591592impl parachain_info::Config for Runtime {}593594impl cumulus_pallet_aura_ext::Config for Runtime {}595596parameter_types! {597 pub const RelayLocation: MultiLocation = MultiLocation::parent();598 pub const RelayNetwork: NetworkId = NetworkId::Polkadot;599 pub RelayOrigin: Origin = cumulus_pallet_xcm::Origin::Relay.into();600 pub Ancestry: MultiLocation = Parachain(ParachainInfo::parachain_id().into()).into();601}602603/// Type for specifying how a `MultiLocation` can be converted into an `AccountId`. This is used604/// when determining ownership of accounts for asset transacting and when attempting to use XCM605/// `Transact` in order to determine the dispatch Origin.606pub type LocationToAccountId = (607 // The parent (Relay-chain) origin converts to the default `AccountId`.608 ParentIsDefault<AccountId>,609 // Sibling parachain origins convert to AccountId via the `ParaId::into`.610 SiblingParachainConvertsVia<Sibling, AccountId>,611 // Straight up local `AccountId32` origins just alias directly to `AccountId`.612 AccountId32Aliases<RelayNetwork, AccountId>,613);614615/// Means for transacting assets on this chain.616pub type LocalAssetTransactor = CurrencyAdapter<617 // Use this currency:618 Balances,619 // Use this currency when it is a fungible asset matching the given location or name:620 IsConcrete<RelayLocation>,621 // Do a simple punn to convert an AccountId32 MultiLocation into a native chain account ID:622 LocationToAccountId,623 // Our chain's account ID type (we can't get away without mentioning it explicitly):624 AccountId,625 // We don't track any teleports.626 (),627>;628629/// This is the type we use to convert an (incoming) XCM origin into a local `Origin` instance,630/// ready for dispatching a transaction with Xcm's `Transact`. There is an `OriginKind` which can631/// biases the kind of local `Origin` it will become.632pub type XcmOriginToTransactDispatchOrigin = (633 // Sovereign account converter; this attempts to derive an `AccountId` from the origin location634 // using `LocationToAccountId` and then turn that into the usual `Signed` origin. Useful for635 // foreign chains who want to have a local sovereign account on this chain which they control.636 SovereignSignedViaLocation<LocationToAccountId, Origin>,637 // Native converter for Relay-chain (Parent) location; will converts to a `Relay` origin when638 // recognised.639 RelayChainAsNative<RelayOrigin, Origin>,640 // Native converter for sibling Parachains; will convert to a `SiblingPara` origin when641 // recognised.642 SiblingParachainAsNative<cumulus_pallet_xcm::Origin, Origin>,643 // Superuser converter for the Relay-chain (Parent) location. This will allow it to issue a644 // transaction from the Root origin.645 ParentAsSuperuser<Origin>,646 // Native signed account converter; this just converts an `AccountId32` origin into a normal647 // `Origin::Signed` origin of the same 32-byte value.648 SignedAccountId32AsNative<RelayNetwork, Origin>,649 // Xcm origins can be represented natively under the Xcm pallet's Xcm origin.650 XcmPassthrough<Origin>,651);652653parameter_types! {654 // One XCM operation is 1_000_000 weight - almost certainly a conservative estimate.655 pub UnitWeightCost: Weight = 1_000_000;656 // 1200 UNIQUEs buy 1 second of weight.657 pub const WeightPrice: (MultiLocation, u128) = (MultiLocation::parent(), 1_200 * UNIQUE);658 pub const MaxInstructions: u32 = 100;659 pub const MaxAuthorities: u32 = 100_000;660}661662match_type! {663 pub type ParentOrParentsUnitPlurality: impl Contains<MultiLocation> = {664 MultiLocation { parents: 1, interior: Here } |665 MultiLocation { parents: 1, interior: X1(Plurality { id: BodyId::Unit, .. }) }666 };667}668669pub type Barrier = (670 TakeWeightCredit,671 AllowTopLevelPaidExecutionFrom<Everything>,672 AllowUnpaidExecutionFrom<ParentOrParentsUnitPlurality>,673 // ^^^ Parent & its unit plurality gets free execution674);675676pub struct XcmConfig;677impl Config for XcmConfig {678 type Call = Call;679 type XcmSender = XcmRouter;680 // How to withdraw and deposit an asset.681 type AssetTransactor = LocalAssetTransactor;682 type OriginConverter = XcmOriginToTransactDispatchOrigin;683 type IsReserve = NativeAsset;684 type IsTeleporter = (); // Teleportation is disabled685 type LocationInverter = LocationInverter<Ancestry>;686 type Barrier = Barrier;687 type Weigher = FixedWeightBounds<UnitWeightCost, Call, MaxInstructions>;688 type Trader = UsingComponents<IdentityFee<Balance>, RelayLocation, AccountId, Balances, ()>;689 type ResponseHandler = (); // Don't handle responses for now.690 type SubscriptionService = PolkadotXcm;691692 type AssetTrap = PolkadotXcm;693 type AssetClaims = PolkadotXcm;694}695696// parameter_types! {697// pub const MaxDownwardMessageWeight: Weight = MAXIMUM_BLOCK_WEIGHT / 10;698// }699700/// No local origins on this chain are allowed to dispatch XCM sends/executions.701pub type LocalOriginToLocation = (SignedToAccountId32<Origin, AccountId, RelayNetwork>,);702703/// The means for routing XCM messages which are not for local execution into the right message704/// queues.705pub type XcmRouter = (706 // Two routers - use UMP to communicate with the relay chain:707 cumulus_primitives_utility::ParentAsUmp<ParachainSystem, ()>,708 // ..and XCMP to communicate with the sibling chains.709 XcmpQueue,710);711712impl pallet_evm_coder_substrate::Config for Runtime {713 type EthereumTransactionSender = pallet_ethereum::Pallet<Self>;714 type GasWeightMapping = FixedGasWeightMapping;715}716717impl pallet_xcm::Config for Runtime {718 type Event = Event;719 type SendXcmOrigin = EnsureXcmOrigin<Origin, LocalOriginToLocation>;720 type XcmRouter = XcmRouter;721 type ExecuteXcmOrigin = EnsureXcmOrigin<Origin, LocalOriginToLocation>;722 type XcmExecuteFilter = Everything;723 type XcmExecutor = XcmExecutor<XcmConfig>;724 type XcmTeleportFilter = Everything;725 type XcmReserveTransferFilter = Everything;726 type Weigher = FixedWeightBounds<UnitWeightCost, Call, MaxInstructions>;727 type LocationInverter = LocationInverter<Ancestry>;728 type Origin = Origin;729 type Call = Call;730 const VERSION_DISCOVERY_QUEUE_SIZE: u32 = 100;731 type AdvertisedXcmVersion = pallet_xcm::CurrentXcmVersion;732}733734impl cumulus_pallet_xcm::Config for Runtime {735 type Event = Event;736 type XcmExecutor = XcmExecutor<XcmConfig>;737}738739impl cumulus_pallet_xcmp_queue::Config for Runtime {740 type Event = Event;741 type XcmExecutor = XcmExecutor<XcmConfig>;742 type ChannelInfo = ParachainSystem;743 type VersionWrapper = ();744}745746impl cumulus_pallet_dmp_queue::Config for Runtime {747 type Event = Event;748 type XcmExecutor = XcmExecutor<XcmConfig>;749 type ExecuteOverweightOrigin = frame_system::EnsureRoot<AccountId>;750}751752impl pallet_aura::Config for Runtime {753 type AuthorityId = AuraId;754 type DisabledValidators = ();755 type MaxAuthorities = MaxAuthorities;756}757758parameter_types! {759 pub TreasuryAccountId: AccountId = TreasuryModuleId::get().into_account();760 pub const CollectionCreationPrice: Balance = 100 * UNIQUE;761}762763impl pallet_common::Config for Runtime {764 type Event = Event;765 type EvmBackwardsAddressMapping = up_evm_mapping::MapBackwardsAddressTruncated;766 type EvmAddressMapping = HashedAddressMapping<Self::Hashing>;767 type CrossAccountId = pallet_common::account::BasicCrossAccountId<Self>;768769 type Currency = Balances;770 type CollectionCreationPrice = CollectionCreationPrice;771 type TreasuryAccountId = TreasuryAccountId;772}773774impl pallet_fungible::Config for Runtime {775 type WeightInfo = pallet_fungible::weights::SubstrateWeight<Self>;776}777impl pallet_refungible::Config for Runtime {778 type WeightInfo = pallet_refungible::weights::SubstrateWeight<Self>;779}780impl pallet_nonfungible::Config for Runtime {781 type WeightInfo = pallet_nonfungible::weights::SubstrateWeight<Self>;782}783784impl pallet_unique::Config for Runtime {785 type Event = Event;786 type WeightInfo = pallet_unique::weights::SubstrateWeight<Self>;787}788789parameter_types! {790 pub const InflationBlockInterval: BlockNumber = 100; // every time per how many blocks inflation is applied791}792793/// Used for the pallet inflation794impl pallet_inflation::Config for Runtime {795 type Currency = Balances;796 type TreasuryAccountId = TreasuryAccountId;797 type InflationBlockInterval = InflationBlockInterval;798 type BlockNumberProvider = RelayChainBlockNumberProvider<Runtime>;799}800801// parameter_types! {802// pub MaximumSchedulerWeight: Weight = Perbill::from_percent(50) *803// RuntimeBlockWeights::get().max_block;804// pub const MaxScheduledPerBlock: u32 = 50;805// }806807type EvmSponsorshipHandler = (808 pallet_unique::UniqueEthSponsorshipHandler<Runtime>,809 pallet_evm_contract_helpers::HelpersContractSponsoring<Runtime>,810);811type SponsorshipHandler = (812 pallet_unique::UniqueSponsorshipHandler<Runtime>,813 //pallet_contract_helpers::ContractSponsorshipHandler<Runtime>,814 pallet_evm_transaction_payment::BridgeSponsorshipHandler<Runtime>,815);816817// impl pallet_unq_scheduler::Config for Runtime {818// type Event = Event;819// type Origin = Origin;820// type PalletsOrigin = OriginCaller;821// type Call = Call;822// type MaximumWeight = MaximumSchedulerWeight;823// type ScheduleOrigin = EnsureSigned<AccountId>;824// type MaxScheduledPerBlock = MaxScheduledPerBlock;825// type SponsorshipHandler = SponsorshipHandler;826// type WeightInfo = ();827// }828829impl pallet_evm_transaction_payment::Config for Runtime {830 type EvmSponsorshipHandler = EvmSponsorshipHandler;831 type Currency = Balances;832 type EvmAddressMapping = HashedAddressMapping<Self::Hashing>;833 type EvmBackwardsAddressMapping = up_evm_mapping::MapBackwardsAddressTruncated;834}835836impl pallet_charge_transaction::Config for Runtime {837 type SponsorshipHandler = SponsorshipHandler;838}839840// impl pallet_contract_helpers::Config for Runtime {841// type DefaultSponsoringRateLimit = DefaultSponsoringRateLimit;842// }843844parameter_types! {845 // 0x842899ECF380553E8a4de75bF534cdf6fBF64049846 pub const HelpersContractAddress: H160 = H160([847 0x84, 0x28, 0x99, 0xec, 0xf3, 0x80, 0x55, 0x3e, 0x8a, 0x4d, 0xe7, 0x5b, 0xf5, 0x34, 0xcd, 0xf6, 0xfb, 0xf6, 0x40, 0x49,848 ]);849}850851impl pallet_evm_contract_helpers::Config for Runtime {852 type ContractAddress = HelpersContractAddress;853 type DefaultSponsoringRateLimit = DefaultSponsoringRateLimit;854}855856construct_runtime!(857 pub enum Runtime where858 Block = Block,859 NodeBlock = opaque::Block,860 UncheckedExtrinsic = UncheckedExtrinsic861 {862 ParachainSystem: cumulus_pallet_parachain_system::{Pallet, Call, Storage, Inherent, Event<T>, ValidateUnsigned} = 20,863 ParachainInfo: parachain_info::{Pallet, Storage, Config} = 21,864865 Aura: pallet_aura::{Pallet, Config<T>} = 22,866 AuraExt: cumulus_pallet_aura_ext::{Pallet, Config} = 23,867868 Balances: pallet_balances::{Pallet, Call, Storage, Config<T>, Event<T>} = 30,869 RandomnessCollectiveFlip: pallet_randomness_collective_flip::{Pallet, Storage} = 31,870 Timestamp: pallet_timestamp::{Pallet, Call, Storage, Inherent} = 32,871 TransactionPayment: pallet_transaction_payment::{Pallet, Storage} = 33,872 Treasury: pallet_treasury::{Pallet, Call, Storage, Config, Event<T>} = 34,873 Sudo: pallet_sudo::{Pallet, Call, Storage, Config<T>, Event<T>} = 35,874 System: frame_system::{Pallet, Call, Storage, Config, Event<T>} = 36,875 Vesting: orml_vesting::{Pallet, Storage, Call, Event<T>, Config<T>} = 37,876 // Vesting: pallet_vesting::{Pallet, Call, Config<T>, Storage, Event<T>} = 37,877 // Contracts: pallet_contracts::{Pallet, Call, Storage, Event<T>} = 38,878879 // XCM helpers.880 XcmpQueue: cumulus_pallet_xcmp_queue::{Pallet, Call, Storage, Event<T>} = 50,881 PolkadotXcm: pallet_xcm::{Pallet, Call, Event<T>, Origin} = 51,882 CumulusXcm: cumulus_pallet_xcm::{Pallet, Call, Event<T>, Origin} = 52,883 DmpQueue: cumulus_pallet_dmp_queue::{Pallet, Call, Storage, Event<T>} = 53,884885 // Unique Pallets886 Inflation: pallet_inflation::{Pallet, Call, Storage} = 60,887 Unique: pallet_unique::{Pallet, Call, Storage, Event<T>} = 61,888 // Scheduler: pallet_unq_scheduler::{Pallet, Call, Storage, Event<T>} = 62,889 // free = 63890 Charging: pallet_charge_transaction::{Pallet, Call, Storage } = 64,891 // ContractHelpers: pallet_contract_helpers::{Pallet, Call, Storage} = 65,892 Common: pallet_common::{Pallet, Storage, Event<T>} = 66,893 Fungible: pallet_fungible::{Pallet, Storage} = 67,894 Refungible: pallet_refungible::{Pallet, Storage} = 68,895 Nonfungible: pallet_nonfungible::{Pallet, Storage} = 69,896897 // Frontier898 EVM: pallet_evm::{Pallet, Config, Call, Storage, Event<T>} = 100,899 Ethereum: pallet_ethereum::{Pallet, Config, Call, Storage, Event, Origin} = 101,900901 EvmCoderSubstrate: pallet_evm_coder_substrate::{Pallet, Storage} = 150,902 EvmContractHelpers: pallet_evm_contract_helpers::{Pallet, Storage} = 151,903 EvmTransactionPayment: pallet_evm_transaction_payment::{Pallet} = 152,904 EvmMigration: pallet_evm_migration::{Pallet, Call, Storage} = 153,905 }906);907908pub struct TransactionConverter;909910impl fp_rpc::ConvertTransaction<UncheckedExtrinsic> for TransactionConverter {911 fn convert_transaction(&self, transaction: pallet_ethereum::Transaction) -> UncheckedExtrinsic {912 UncheckedExtrinsic::new_unsigned(913 pallet_ethereum::Call::<Runtime>::transact { transaction }.into(),914 )915 }916}917918impl fp_rpc::ConvertTransaction<opaque::UncheckedExtrinsic> for TransactionConverter {919 fn convert_transaction(920 &self,921 transaction: pallet_ethereum::Transaction,922 ) -> opaque::UncheckedExtrinsic {923 let extrinsic = UncheckedExtrinsic::new_unsigned(924 pallet_ethereum::Call::<Runtime>::transact { transaction }.into(),925 );926 let encoded = extrinsic.encode();927 opaque::UncheckedExtrinsic::decode(&mut &encoded[..])928 .expect("Encoded extrinsic is always valid")929 }930}931932/// The address format for describing accounts.933pub type Address = sp_runtime::MultiAddress<AccountId, ()>;934/// Block header type as expected by this runtime.935pub type Header = generic::Header<BlockNumber, BlakeTwo256>;936/// Block type as expected by this runtime.937pub type Block = generic::Block<Header, UncheckedExtrinsic>;938/// A Block signed with a Justification939pub type SignedBlock = generic::SignedBlock<Block>;940/// BlockId type as expected by this runtime.941pub type BlockId = generic::BlockId<Block>;942/// The SignedExtension to the basic transaction logic.943pub type SignedExtra = (944 frame_system::CheckSpecVersion<Runtime>,945 // system::CheckTxVersion<Runtime>,946 frame_system::CheckGenesis<Runtime>,947 frame_system::CheckEra<Runtime>,948 frame_system::CheckNonce<Runtime>,949 frame_system::CheckWeight<Runtime>,950 pallet_charge_transaction::ChargeTransactionPayment<Runtime>,951 //pallet_contract_helpers::ContractHelpersExtension<Runtime>,952);953/// Unchecked extrinsic type as expected by this runtime.954pub type UncheckedExtrinsic =955 fp_self_contained::UncheckedExtrinsic<Address, Call, Signature, SignedExtra>;956/// Extrinsic type that has already been checked.957pub type CheckedExtrinsic = fp_self_contained::CheckedExtrinsic<AccountId, Call, SignedExtra, H160>;958/// Executive: handles dispatch to the various modules.959pub type Executive = frame_executive::Executive<960 Runtime,961 Block,962 frame_system::ChainContext<Runtime>,963 Runtime,964 AllPallets,965>;966967impl_opaque_keys! {968 pub struct SessionKeys {969 pub aura: Aura,970 }971}972973impl fp_self_contained::SelfContainedCall for Call {974 type SignedInfo = H160;975976 fn is_self_contained(&self) -> bool {977 match self {978 Call::Ethereum(call) => call.is_self_contained(),979 _ => false,980 }981 }982983 fn check_self_contained(&self) -> Option<Result<Self::SignedInfo, TransactionValidityError>> {984 match self {985 Call::Ethereum(call) => call.check_self_contained(),986 _ => None,987 }988 }989990 fn validate_self_contained(&self, info: &Self::SignedInfo) -> Option<TransactionValidity> {991 match self {992 Call::Ethereum(call) => call.validate_self_contained(info),993 _ => None,994 }995 }996997 fn pre_dispatch_self_contained(998 &self,999 info: &Self::SignedInfo,1000 ) -> Option<Result<(), TransactionValidityError>> {1001 match self {1002 Call::Ethereum(call) => call.pre_dispatch_self_contained(info),1003 _ => None,1004 }1005 }10061007 fn apply_self_contained(1008 self,1009 info: Self::SignedInfo,1010 ) -> Option<sp_runtime::DispatchResultWithInfo<PostDispatchInfoOf<Self>>> {1011 match self {1012 call @ Call::Ethereum(pallet_ethereum::Call::transact { .. }) => Some(call.dispatch(1013 Origin::from(pallet_ethereum::RawOrigin::EthereumTransaction(info)),1014 )),1015 _ => None,1016 }1017 }1018}10191020macro_rules! dispatch_unique_runtime {1021 ($collection:ident.$method:ident($($name:ident),*)) => {{1022 use pallet_unique::dispatch::Dispatched;10231024 let collection = Dispatched::dispatch(<pallet_common::CollectionHandle<Runtime>>::try_get($collection)?);1025 let dispatch = collection.as_dyn();10261027 Ok(dispatch.$method($($name),*))1028 }};1029}1030impl_runtime_apis! {1031 impl up_rpc::UniqueApi<Block, CrossAccountId, AccountId>1032 for Runtime1033 {1034 fn account_tokens(collection: CollectionId, account: CrossAccountId) -> Result<Vec<TokenId>, DispatchError> {1035 dispatch_unique_runtime!(collection.account_tokens(account))1036 }1037 fn token_exists(collection: CollectionId, token: TokenId) -> Result<bool, DispatchError> {1038 dispatch_unique_runtime!(collection.token_exists(token))1039 }10401041 fn token_owner(collection: CollectionId, token: TokenId) -> Result<CrossAccountId, DispatchError> {1042 dispatch_unique_runtime!(collection.token_owner(token))1043 }1044 fn const_metadata(collection: CollectionId, token: TokenId) -> Result<Vec<u8>, DispatchError> {1045 dispatch_unique_runtime!(collection.const_metadata(token))1046 }1047 fn variable_metadata(collection: CollectionId, token: TokenId) -> Result<Vec<u8>, DispatchError> {1048 dispatch_unique_runtime!(collection.variable_metadata(token))1049 }10501051 fn collection_tokens(collection: CollectionId) -> Result<u32, DispatchError> {1052 dispatch_unique_runtime!(collection.collection_tokens())1053 }1054 fn account_balance(collection: CollectionId, account: CrossAccountId) -> Result<u32, DispatchError> {1055 dispatch_unique_runtime!(collection.account_balance(account))1056 }1057 fn balance(collection: CollectionId, account: CrossAccountId, token: TokenId) -> Result<u128, DispatchError> {1058 dispatch_unique_runtime!(collection.balance(account, token))1059 }1060 fn allowance(1061 collection: CollectionId,1062 sender: CrossAccountId,1063 spender: CrossAccountId,1064 token: TokenId,1065 ) -> Result<u128, DispatchError> {1066 dispatch_unique_runtime!(collection.allowance(sender, spender, token))1067 }10681069 fn eth_contract_code(account: H160) -> Option<Vec<u8>> {1070 <pallet_unique::UniqueErcSupport<Runtime>>::get_code(&account)1071 .or_else(|| <pallet_evm_migration::OnMethodCall<Runtime>>::get_code(&account))1072 .or_else(|| <pallet_evm_contract_helpers::HelpersOnMethodCall<Self>>::get_code(&account))1073 }1074 fn adminlist(collection: CollectionId) -> Result<Vec<CrossAccountId>, DispatchError> {1075 Ok(<pallet_common::Pallet<Runtime>>::adminlist(collection))1076 }1077 fn allowlist(collection: CollectionId) -> Result<Vec<CrossAccountId>, DispatchError> {1078 Ok(<pallet_common::Pallet<Runtime>>::allowlist(collection))1079 }1080 fn allowed(collection: CollectionId, user: CrossAccountId) -> Result<bool, DispatchError> {1081 Ok(<pallet_common::Pallet<Runtime>>::allowed(collection, user))1082 }1083 fn last_token_id(collection: CollectionId) -> Result<TokenId, DispatchError> {1084 dispatch_unique_runtime!(collection.last_token_id())1085 }1086 fn collection_by_id(collection: CollectionId) -> Result<Option<Collection<AccountId>>, DispatchError> {1087 Ok(<pallet_common::CollectionById<Runtime>>::get(collection))1088 }1089 fn collection_stats() -> Result<CollectionStats, DispatchError> {1090 Ok(<pallet_common::Pallet<Runtime>>::collection_stats())1091 }1092 }10931094 impl sp_api::Core<Block> for Runtime {1095 fn version() -> RuntimeVersion {1096 VERSION1097 }10981099 fn execute_block(block: Block) {1100 Executive::execute_block(block)1101 }11021103 fn initialize_block(header: &<Block as BlockT>::Header) {1104 Executive::initialize_block(header)1105 }1106 }11071108 impl sp_api::Metadata<Block> for Runtime {1109 fn metadata() -> OpaqueMetadata {1110 OpaqueMetadata::new(Runtime::metadata().into())1111 }1112 }11131114 impl sp_block_builder::BlockBuilder<Block> for Runtime {1115 fn apply_extrinsic(extrinsic: <Block as BlockT>::Extrinsic) -> ApplyExtrinsicResult {1116 Executive::apply_extrinsic(extrinsic)1117 }11181119 fn finalize_block() -> <Block as BlockT>::Header {1120 Executive::finalize_block()1121 }11221123 fn inherent_extrinsics(data: sp_inherents::InherentData) -> Vec<<Block as BlockT>::Extrinsic> {1124 data.create_extrinsics()1125 }11261127 fn check_inherents(1128 block: Block,1129 data: sp_inherents::InherentData,1130 ) -> sp_inherents::CheckInherentsResult {1131 data.check_extrinsics(&block)1132 }11331134 // fn random_seed() -> <Block as BlockT>::Hash {1135 // RandomnessCollectiveFlip::random_seed().01136 // }1137 }11381139 impl sp_transaction_pool::runtime_api::TaggedTransactionQueue<Block> for Runtime {1140 fn validate_transaction(1141 source: TransactionSource,1142 tx: <Block as BlockT>::Extrinsic,1143 hash: <Block as BlockT>::Hash,1144 ) -> TransactionValidity {1145 Executive::validate_transaction(source, tx, hash)1146 }1147 }11481149 impl sp_offchain::OffchainWorkerApi<Block> for Runtime {1150 fn offchain_worker(header: &<Block as BlockT>::Header) {1151 Executive::offchain_worker(header)1152 }1153 }11541155 impl fp_rpc::EthereumRuntimeRPCApi<Block> for Runtime {1156 fn chain_id() -> u64 {1157 <Runtime as pallet_evm::Config>::ChainId::get()1158 }11591160 fn account_basic(address: H160) -> EVMAccount {1161 EVM::account_basic(&address)1162 }11631164 fn gas_price() -> U256 {1165 <Runtime as pallet_evm::Config>::FeeCalculator::min_gas_price()1166 }11671168 fn account_code_at(address: H160) -> Vec<u8> {1169 EVM::account_codes(address)1170 }11711172 fn author() -> H160 {1173 <pallet_evm::Pallet<Runtime>>::find_author()1174 }11751176 fn storage_at(address: H160, index: U256) -> H256 {1177 let mut tmp = [0u8; 32];1178 index.to_big_endian(&mut tmp);1179 EVM::account_storages(address, H256::from_slice(&tmp[..]))1180 }11811182 #[allow(clippy::redundant_closure)]1183 fn call(1184 from: H160,1185 to: H160,1186 data: Vec<u8>,1187 value: U256,1188 gas_limit: U256,1189 gas_price: Option<U256>,1190 nonce: Option<U256>,1191 estimate: bool,1192 ) -> Result<pallet_evm::CallInfo, sp_runtime::DispatchError> {1193 let config = if estimate {1194 let mut config = <Runtime as pallet_evm::Config>::config().clone();1195 config.estimate = true;1196 Some(config)1197 } else {1198 None1199 };12001201 <Runtime as pallet_evm::Config>::Runner::call(1202 from,1203 to,1204 data,1205 value,1206 gas_limit.low_u64(),1207 gas_price,1208 nonce,1209 config.as_ref().unwrap_or_else(|| <Runtime as pallet_evm::Config>::config()),1210 ).map_err(|err| err.into())1211 }12121213 #[allow(clippy::redundant_closure)]1214 fn create(1215 from: H160,1216 data: Vec<u8>,1217 value: U256,1218 gas_limit: U256,1219 gas_price: Option<U256>,1220 nonce: Option<U256>,1221 estimate: bool,1222 ) -> Result<pallet_evm::CreateInfo, sp_runtime::DispatchError> {1223 let config = if estimate {1224 let mut config = <Runtime as pallet_evm::Config>::config().clone();1225 config.estimate = true;1226 Some(config)1227 } else {1228 None1229 };12301231 <Runtime as pallet_evm::Config>::Runner::create(1232 from,1233 data,1234 value,1235 gas_limit.low_u64(),1236 gas_price,1237 nonce,1238 config.as_ref().unwrap_or_else(|| <Runtime as pallet_evm::Config>::config()),1239 ).map_err(|err| err.into())1240 }12411242 fn current_transaction_statuses() -> Option<Vec<TransactionStatus>> {1243 Ethereum::current_transaction_statuses()1244 }12451246 fn current_block() -> Option<pallet_ethereum::Block> {1247 Ethereum::current_block()1248 }12491250 fn current_receipts() -> Option<Vec<pallet_ethereum::Receipt>> {1251 Ethereum::current_receipts()1252 }12531254 fn current_all() -> (1255 Option<pallet_ethereum::Block>,1256 Option<Vec<pallet_ethereum::Receipt>>,1257 Option<Vec<TransactionStatus>>1258 ) {1259 (1260 Ethereum::current_block(),1261 Ethereum::current_receipts(),1262 Ethereum::current_transaction_statuses()1263 )1264 }12651266 fn extrinsic_filter(xts: Vec<<Block as sp_api::BlockT>::Extrinsic>) -> Vec<pallet_ethereum::Transaction> {1267 xts.into_iter().filter_map(|xt| match xt.0.function {1268 Call::Ethereum(pallet_ethereum::Call::transact { transaction }) => Some(transaction),1269 _ => None1270 }).collect()1271 }1272 }12731274 impl sp_session::SessionKeys<Block> for Runtime {1275 fn decode_session_keys(1276 encoded: Vec<u8>,1277 ) -> Option<Vec<(Vec<u8>, KeyTypeId)>> {1278 SessionKeys::decode_into_raw_public_keys(&encoded)1279 }12801281 fn generate_session_keys(seed: Option<Vec<u8>>) -> Vec<u8> {1282 SessionKeys::generate(seed)1283 }1284 }12851286 impl sp_consensus_aura::AuraApi<Block, AuraId> for Runtime {1287 fn slot_duration() -> sp_consensus_aura::SlotDuration {1288 sp_consensus_aura::SlotDuration::from_millis(Aura::slot_duration())1289 }12901291 fn authorities() -> Vec<AuraId> {1292 Aura::authorities().to_vec()1293 }1294 }12951296 impl cumulus_primitives_core::CollectCollationInfo<Block> for Runtime {1297 fn collect_collation_info() -> cumulus_primitives_core::CollationInfo {1298 ParachainSystem::collect_collation_info()1299 }1300 }13011302 impl frame_system_rpc_runtime_api::AccountNonceApi<Block, AccountId, Index> for Runtime {1303 fn account_nonce(account: AccountId) -> Index {1304 System::account_nonce(account)1305 }1306 }13071308 impl pallet_transaction_payment_rpc_runtime_api::TransactionPaymentApi<Block, Balance> for Runtime {1309 fn query_info(uxt: <Block as BlockT>::Extrinsic, len: u32) -> RuntimeDispatchInfo<Balance> {1310 TransactionPayment::query_info(uxt, len)1311 }1312 fn query_fee_details(uxt: <Block as BlockT>::Extrinsic, len: u32) -> FeeDetails<Balance> {1313 TransactionPayment::query_fee_details(uxt, len)1314 }1315 }13161317 /*1318 impl pallet_contracts_rpc_runtime_api::ContractsApi<Block, AccountId, Balance, BlockNumber, Hash>1319 for Runtime1320 {1321 fn call(1322 origin: AccountId,1323 dest: AccountId,1324 value: Balance,1325 gas_limit: u64,1326 input_data: Vec<u8>,1327 ) -> pallet_contracts_primitives::ContractExecResult {1328 Contracts::bare_call(origin, dest, value, gas_limit, input_data, false)1329 }13301331 fn instantiate(1332 origin: AccountId,1333 endowment: Balance,1334 gas_limit: u64,1335 code: pallet_contracts_primitives::Code<Hash>,1336 data: Vec<u8>,1337 salt: Vec<u8>,1338 ) -> pallet_contracts_primitives::ContractInstantiateResult<AccountId, BlockNumber>1339 {1340 Contracts::bare_instantiate(origin, endowment, gas_limit, code, data, salt, true, false)1341 }13421343 fn get_storage(1344 address: AccountId,1345 key: [u8; 32],1346 ) -> pallet_contracts_primitives::GetStorageResult {1347 Contracts::get_storage(address, key)1348 }13491350 fn rent_projection(1351 address: AccountId,1352 ) -> pallet_contracts_primitives::RentProjectionResult<BlockNumber> {1353 Contracts::rent_projection(address)1354 }1355 }1356 */13571358 #[cfg(feature = "runtime-benchmarks")]1359 impl frame_benchmarking::Benchmark<Block> for Runtime {1360 fn benchmark_metadata(extra: bool) -> (1361 Vec<frame_benchmarking::BenchmarkList>,1362 Vec<frame_support::traits::StorageInfo>,1363 ) {1364 use frame_benchmarking::{list_benchmark, Benchmarking, BenchmarkList};1365 use frame_support::traits::StorageInfoTrait;13661367 let mut list = Vec::<BenchmarkList>::new();13681369 list_benchmark!(list, extra, pallet_evm_migration, EvmMigration);1370 list_benchmark!(list, extra, pallet_unique, Unique);1371 list_benchmark!(list, extra, pallet_inflation, Inflation);1372 list_benchmark!(list, extra, pallet_fungible, Fungible);1373 list_benchmark!(list, extra, pallet_refungible, Refungible);1374 list_benchmark!(list, extra, pallet_nonfungible, Nonfungible);1375 // list_benchmark!(list, extra, pallet_evm_coder_substrate, EvmCoderSubstrate);13761377 let storage_info = AllPalletsWithSystem::storage_info();13781379 return (list, storage_info)1380 }13811382 fn dispatch_benchmark(1383 config: frame_benchmarking::BenchmarkConfig1384 ) -> Result<Vec<frame_benchmarking::BenchmarkBatch>, sp_runtime::RuntimeString> {1385 use frame_benchmarking::{Benchmarking, BenchmarkBatch, add_benchmark, TrackedStorageKey};13861387 let allowlist: Vec<TrackedStorageKey> = vec![1388 // Block Number1389 hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef702a5c1b19ab7a04f536c519aca4983ac").to_vec().into(),1390 // Total Issuance1391 hex_literal::hex!("c2261276cc9d1f8598ea4b6a74b15c2f57c875e4cff74148e4628f264b974c80").to_vec().into(),1392 // Execution Phase1393 hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef7ff553b5a9862a516939d82b3d3d8661a").to_vec().into(),1394 // Event Count1395 hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef70a98fdbe9ce6c55837576c60c7af3850").to_vec().into(),1396 // System Events1397 hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef780d41e5e16056765bc8461851072c9d7").to_vec().into(),1398 ];13991400 let mut batches = Vec::<BenchmarkBatch>::new();1401 let params = (&config, &allowlist);14021403 add_benchmark!(params, batches, pallet_evm_migration, EvmMigration);1404 add_benchmark!(params, batches, pallet_unique, Unique);1405 add_benchmark!(params, batches, pallet_inflation, Inflation);1406 add_benchmark!(params, batches, pallet_fungible, Fungible);1407 add_benchmark!(params, batches, pallet_refungible, Refungible);1408 add_benchmark!(params, batches, pallet_nonfungible, Nonfungible);1409 // add_benchmark!(params, batches, pallet_evm_coder_substrate, EvmCoderSubstrate);14101411 if batches.is_empty() { return Err("Benchmark not found for this pallet.".into()) }1412 Ok(batches)1413 }1414 }1415}14161417struct CheckInherents;14181419impl cumulus_pallet_parachain_system::CheckInherents<Block> for CheckInherents {1420 fn check_inherents(1421 block: &Block,1422 relay_state_proof: &cumulus_pallet_parachain_system::RelayChainStateProof,1423 ) -> sp_inherents::CheckInherentsResult {1424 let relay_chain_slot = relay_state_proof1425 .read_slot()1426 .expect("Could not read the relay chain slot from the proof");14271428 let inherent_data =1429 cumulus_primitives_timestamp::InherentDataProvider::from_relay_chain_slot_and_duration(1430 relay_chain_slot,1431 sp_std::time::Duration::from_secs(6),1432 )1433 .create_inherent_data()1434 .expect("Could not create the timestamp inherent data");14351436 inherent_data.check_extrinsics(block)1437 }1438}14391440cumulus_pallet_parachain_system::register_validate_block!(1441 Runtime = Runtime,1442 BlockExecutor = cumulus_pallet_aura_ext::BlockExecutor::<Runtime, Executive>,1443 CheckInherents = CheckInherents,1444);tests/src/creditFeesToTreasury.test.tsdiffbeforeafterboth--- a/tests/src/creditFeesToTreasury.test.ts
+++ b/tests/src/creditFeesToTreasury.test.ts
@@ -34,7 +34,7 @@
// Skip the inflation block pauses if the block is close to inflation block
// until the inflation happens
/*eslint no-async-promise-executor: "off"*/
-/*function skipInflationBlock(api: ApiPromise): Promise<void> {
+function skipInflationBlock(api: ApiPromise): Promise<void> {
const promise = new Promise<void>(async (resolve) => {
const blockInterval = (await api.consts.inflation.inflationBlockInterval).toNumber();
const unsubscribe = await api.rpc.chain.subscribeNewHeads(head => {
@@ -49,7 +49,7 @@
});
return promise;
-}*/
+}
describe('integration test: Fees must be credited to Treasury:', () => {
before(async () => {
@@ -61,7 +61,7 @@
it('Total issuance does not change', async () => {
await usingApi(async (api) => {
- //await skipInflationBlock(api);
+ await skipInflationBlock(api);
await waitNewBlocks(api, 1);
const totalBefore = (await api.query.balances.totalIssuance()).toBigInt();
@@ -81,7 +81,7 @@
it('Sender balance decreased by fee+sent amount, Treasury balance increased by fee', async () => {
await usingApi(async (api) => {
- //await skipInflationBlock(api);
+ await skipInflationBlock(api);
await waitNewBlocks(api, 1);
const alicePrivateKey = privateKey('//Alice');
@@ -125,7 +125,7 @@
it('NFT Transactions also send fees to Treasury', async () => {
await usingApi(async (api) => {
- //await skipInflationBlock(api);
+ await skipInflationBlock(api);
await waitNewBlocks(api, 1);
const treasuryBalanceBefore = (await api.query.system.account(TREASURY)).data.free.toBigInt();
@@ -144,7 +144,7 @@
it('Fees are sane', async () => {
await usingApi(async (api) => {
- //await skipInflationBlock(api);
+ await skipInflationBlock(api);
await waitNewBlocks(api, 1);
const aliceBalanceBefore: bigint = (await api.query.system.account(alicesPublicKey)).data.free.toBigInt();
@@ -161,7 +161,7 @@
it('NFT Transfer fee is close to 0.1 Unique', async () => {
await usingApi(async (api) => {
- //await skipInflationBlock(api);
+ await skipInflationBlock(api);
await waitNewBlocks(api, 1);
const collectionId = await createCollectionExpectSuccess();
tests/src/inflation.test.tsdiffbeforeafterboth--- a/tests/src/inflation.test.ts
+++ b/tests/src/inflation.test.ts
@@ -5,21 +5,32 @@
import chai from 'chai';
import chaiAsPromised from 'chai-as-promised';
-import {default as usingApi} from './substrate/substrate-api';
+import {default as usingApi, submitTransactionAsync, submitTransactionExpectFailAsync} from './substrate/substrate-api';
+import privateKey from './substrate/privateKey';
chai.use(chaiAsPromised);
const expect = chai.expect;
-describe.skip('integration test: Inflation', () => {
+describe('integration test: Inflation', () => {
it('First year inflation is 10%', async () => {
await usingApi(async (api) => {
+ // Make sure non-sudo can't start inflation
+ const tx = api.tx.inflation.startInflation(1);
+ const bob = privateKey('//Bob');
+ await expect(submitTransactionExpectFailAsync(bob, tx)).to.be.rejected;
+
+ // Start inflation on relay block 1 (Alice is sudo)
+ const alice = privateKey('//Alice');
+ const sudoTx = api.tx.sudo.sudo(tx as any);
+ await submitTransactionAsync(alice, sudoTx);
+
const blockInterval = (api.consts.inflation.inflationBlockInterval).toBigInt();
const totalIssuanceStart = (await api.query.inflation.startingYearTotalIssuance()).toBigInt();
const blockInflation = (await api.query.inflation.blockInflation()).toBigInt();
- // const YEAR = 5259600n; // 6-second block. Blocks in one year
- const YEAR = 2629800n; // 12-second block. Blocks in one year
+ const YEAR = 5259600n; // 6-second block. Blocks in one year
+ // const YEAR = 2629800n; // 12-second block. Blocks in one year
const totalExpectedInflation = totalIssuanceStart / 10n;
const totalActualInflation = blockInflation * YEAR / blockInterval;
tests/src/pallet-presence.test.tsdiffbeforeafterboth--- a/tests/src/pallet-presence.test.ts
+++ b/tests/src/pallet-presence.test.ts
@@ -34,7 +34,7 @@
'polkadotxcm',
'cumulusxcm',
'dmpqueue',
- //'inflation',
+ 'inflation',
'unique',
'nonfungible',
'refungible',