mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 10:27:59 +00:00
cd8741c8b5
Step in https://github.com/paritytech/polkadot-sdk/issues/171 This PR adds `derive_impl` on all `frame_system` config impls for mock runtimes. The overridden configs are maintained as of now to ensure minimal changes. --------- Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
399 lines
13 KiB
Rust
399 lines
13 KiB
Rust
// Copyright (C) Parity Technologies (UK) Ltd.
|
|
// This file is part of Polkadot.
|
|
|
|
// Polkadot is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// Polkadot is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Polkadot. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//! Auxiliary `struct`/`enum`s for polkadot runtime.
|
|
|
|
use crate::NegativeImbalance;
|
|
use frame_support::traits::{Currency, Imbalance, OnUnbalanced};
|
|
use parity_scale_codec::{Decode, Encode, MaxEncodedLen};
|
|
use primitives::Balance;
|
|
use sp_runtime::{traits::TryConvert, Perquintill, RuntimeDebug};
|
|
use xcm::VersionedMultiLocation;
|
|
|
|
/// Logic for the author to get a portion of fees.
|
|
pub struct ToAuthor<R>(sp_std::marker::PhantomData<R>);
|
|
impl<R> OnUnbalanced<NegativeImbalance<R>> for ToAuthor<R>
|
|
where
|
|
R: pallet_balances::Config + pallet_authorship::Config,
|
|
<R as frame_system::Config>::AccountId: From<primitives::AccountId>,
|
|
<R as frame_system::Config>::AccountId: Into<primitives::AccountId>,
|
|
{
|
|
fn on_nonzero_unbalanced(amount: NegativeImbalance<R>) {
|
|
if let Some(author) = <pallet_authorship::Pallet<R>>::author() {
|
|
<pallet_balances::Pallet<R>>::resolve_creating(&author, amount);
|
|
}
|
|
}
|
|
}
|
|
|
|
pub struct DealWithFees<R>(sp_std::marker::PhantomData<R>);
|
|
impl<R> OnUnbalanced<NegativeImbalance<R>> for DealWithFees<R>
|
|
where
|
|
R: pallet_balances::Config + pallet_treasury::Config + pallet_authorship::Config,
|
|
pallet_treasury::Pallet<R>: OnUnbalanced<NegativeImbalance<R>>,
|
|
<R as frame_system::Config>::AccountId: From<primitives::AccountId>,
|
|
<R as frame_system::Config>::AccountId: Into<primitives::AccountId>,
|
|
{
|
|
fn on_unbalanceds<B>(mut fees_then_tips: impl Iterator<Item = NegativeImbalance<R>>) {
|
|
if let Some(fees) = fees_then_tips.next() {
|
|
// for fees, 80% to treasury, 20% to author
|
|
let mut split = fees.ration(80, 20);
|
|
if let Some(tips) = fees_then_tips.next() {
|
|
// for tips, if any, 100% to author
|
|
tips.merge_into(&mut split.1);
|
|
}
|
|
use pallet_treasury::Pallet as Treasury;
|
|
<Treasury<R> as OnUnbalanced<_>>::on_unbalanced(split.0);
|
|
<ToAuthor<R> as OnUnbalanced<_>>::on_unbalanced(split.1);
|
|
}
|
|
}
|
|
}
|
|
|
|
pub fn era_payout(
|
|
total_staked: Balance,
|
|
total_stakable: Balance,
|
|
max_annual_inflation: Perquintill,
|
|
period_fraction: Perquintill,
|
|
auctioned_slots: u64,
|
|
) -> (Balance, Balance) {
|
|
use pallet_staking_reward_fn::compute_inflation;
|
|
use sp_runtime::traits::Saturating;
|
|
|
|
let min_annual_inflation = Perquintill::from_rational(25u64, 1000u64);
|
|
let delta_annual_inflation = max_annual_inflation.saturating_sub(min_annual_inflation);
|
|
|
|
// 30% reserved for up to 60 slots.
|
|
let auction_proportion = Perquintill::from_rational(auctioned_slots.min(60), 200u64);
|
|
|
|
// Therefore the ideal amount at stake (as a percentage of total issuance) is 75% less the
|
|
// amount that we expect to be taken up with auctions.
|
|
let ideal_stake = Perquintill::from_percent(75).saturating_sub(auction_proportion);
|
|
|
|
let stake = Perquintill::from_rational(total_staked, total_stakable);
|
|
let falloff = Perquintill::from_percent(5);
|
|
let adjustment = compute_inflation(stake, ideal_stake, falloff);
|
|
let staking_inflation =
|
|
min_annual_inflation.saturating_add(delta_annual_inflation * adjustment);
|
|
|
|
let max_payout = period_fraction * max_annual_inflation * total_stakable;
|
|
let staking_payout = (period_fraction * staking_inflation) * total_stakable;
|
|
let rest = max_payout.saturating_sub(staking_payout);
|
|
|
|
let other_issuance = total_stakable.saturating_sub(total_staked);
|
|
if total_staked > other_issuance {
|
|
let _cap_rest = Perquintill::from_rational(other_issuance, total_staked) * staking_payout;
|
|
// We don't do anything with this, but if we wanted to, we could introduce a cap on the
|
|
// treasury amount with: `rest = rest.min(cap_rest);`
|
|
}
|
|
(staking_payout, rest)
|
|
}
|
|
|
|
/// Versioned locatable asset type which contains both an XCM `location` and `asset_id` to identify
|
|
/// an asset which exists on some chain.
|
|
#[derive(
|
|
Encode, Decode, Eq, PartialEq, Clone, RuntimeDebug, scale_info::TypeInfo, MaxEncodedLen,
|
|
)]
|
|
pub enum VersionedLocatableAsset {
|
|
#[codec(index = 3)]
|
|
V3 {
|
|
/// The (relative) location in which the asset ID is meaningful.
|
|
location: xcm::v3::MultiLocation,
|
|
/// The asset's ID.
|
|
asset_id: xcm::v3::AssetId,
|
|
},
|
|
}
|
|
|
|
/// Converts the [`VersionedLocatableAsset`] to the [`xcm_builder::LocatableAssetId`].
|
|
pub struct LocatableAssetConverter;
|
|
impl TryConvert<VersionedLocatableAsset, xcm_builder::LocatableAssetId>
|
|
for LocatableAssetConverter
|
|
{
|
|
fn try_convert(
|
|
asset: VersionedLocatableAsset,
|
|
) -> Result<xcm_builder::LocatableAssetId, VersionedLocatableAsset> {
|
|
match asset {
|
|
VersionedLocatableAsset::V3 { location, asset_id } =>
|
|
Ok(xcm_builder::LocatableAssetId { asset_id, location }),
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Converts the [`VersionedMultiLocation`] to the [`xcm::latest::MultiLocation`].
|
|
pub struct VersionedMultiLocationConverter;
|
|
impl TryConvert<&VersionedMultiLocation, xcm::latest::MultiLocation>
|
|
for VersionedMultiLocationConverter
|
|
{
|
|
fn try_convert(
|
|
location: &VersionedMultiLocation,
|
|
) -> Result<xcm::latest::MultiLocation, &VersionedMultiLocation> {
|
|
let latest = match location.clone() {
|
|
VersionedMultiLocation::V2(l) => l.try_into().map_err(|_| location)?,
|
|
VersionedMultiLocation::V3(l) => l,
|
|
};
|
|
Ok(latest)
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "runtime-benchmarks")]
|
|
pub mod benchmarks {
|
|
use super::VersionedLocatableAsset;
|
|
use pallet_asset_rate::AssetKindFactory;
|
|
use pallet_treasury::ArgumentsFactory as TreasuryArgumentsFactory;
|
|
use xcm::prelude::*;
|
|
|
|
/// Provides a factory method for the [`VersionedLocatableAsset`].
|
|
/// The location of the asset is determined as a Parachain with an ID equal to the passed seed.
|
|
pub struct AssetRateArguments;
|
|
impl AssetKindFactory<VersionedLocatableAsset> for AssetRateArguments {
|
|
fn create_asset_kind(seed: u32) -> VersionedLocatableAsset {
|
|
VersionedLocatableAsset::V3 {
|
|
location: xcm::v3::MultiLocation::new(0, X1(Parachain(seed))),
|
|
asset_id: xcm::v3::MultiLocation::new(
|
|
0,
|
|
X2(PalletInstance(seed.try_into().unwrap()), GeneralIndex(seed.into())),
|
|
)
|
|
.into(),
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Provide factory methods for the [`VersionedLocatableAsset`] and the `Beneficiary` of the
|
|
/// [`VersionedMultiLocation`]. The location of the asset is determined as a Parachain with an
|
|
/// ID equal to the passed seed.
|
|
pub struct TreasuryArguments;
|
|
impl TreasuryArgumentsFactory<VersionedLocatableAsset, VersionedMultiLocation>
|
|
for TreasuryArguments
|
|
{
|
|
fn create_asset_kind(seed: u32) -> VersionedLocatableAsset {
|
|
AssetRateArguments::create_asset_kind(seed)
|
|
}
|
|
fn create_beneficiary(seed: [u8; 32]) -> VersionedMultiLocation {
|
|
VersionedMultiLocation::V3(xcm::v3::MultiLocation::new(
|
|
0,
|
|
X1(AccountId32 { network: None, id: seed }),
|
|
))
|
|
}
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
use frame_support::{
|
|
derive_impl,
|
|
dispatch::DispatchClass,
|
|
parameter_types,
|
|
traits::{
|
|
tokens::{PayFromAccount, UnityAssetBalanceConversion},
|
|
ConstU32, FindAuthor,
|
|
},
|
|
weights::Weight,
|
|
PalletId,
|
|
};
|
|
use frame_system::limits;
|
|
use primitives::AccountId;
|
|
use sp_core::{ConstU64, H256};
|
|
use sp_runtime::{
|
|
traits::{BlakeTwo256, IdentityLookup},
|
|
BuildStorage, Perbill,
|
|
};
|
|
|
|
type Block = frame_system::mocking::MockBlock<Test>;
|
|
const TEST_ACCOUNT: AccountId = AccountId::new([1; 32]);
|
|
|
|
frame_support::construct_runtime!(
|
|
pub enum Test
|
|
{
|
|
System: frame_system::{Pallet, Call, Config<T>, Storage, Event<T>},
|
|
Authorship: pallet_authorship::{Pallet, Storage},
|
|
Balances: pallet_balances::{Pallet, Call, Storage, Config<T>, Event<T>},
|
|
Treasury: pallet_treasury::{Pallet, Call, Storage, Config<T>, Event<T>},
|
|
}
|
|
);
|
|
|
|
parameter_types! {
|
|
pub const BlockHashCount: u64 = 250;
|
|
pub BlockWeights: limits::BlockWeights = limits::BlockWeights::builder()
|
|
.base_block(Weight::from_parts(10, 0))
|
|
.for_class(DispatchClass::all(), |weight| {
|
|
weight.base_extrinsic = Weight::from_parts(100, 0);
|
|
})
|
|
.for_class(DispatchClass::non_mandatory(), |weight| {
|
|
weight.max_total = Some(Weight::from_parts(1024, u64::MAX));
|
|
})
|
|
.build_or_panic();
|
|
pub BlockLength: limits::BlockLength = limits::BlockLength::max(2 * 1024);
|
|
pub const AvailableBlockRatio: Perbill = Perbill::one();
|
|
}
|
|
|
|
#[derive_impl(frame_system::config_preludes::TestDefaultConfig as frame_system::DefaultConfig)]
|
|
impl frame_system::Config for Test {
|
|
type BaseCallFilter = frame_support::traits::Everything;
|
|
type RuntimeOrigin = RuntimeOrigin;
|
|
type Nonce = u64;
|
|
type RuntimeCall = RuntimeCall;
|
|
type Hash = H256;
|
|
type Hashing = BlakeTwo256;
|
|
type AccountId = AccountId;
|
|
type Lookup = IdentityLookup<Self::AccountId>;
|
|
type Block = Block;
|
|
type RuntimeEvent = RuntimeEvent;
|
|
type BlockHashCount = BlockHashCount;
|
|
type BlockLength = BlockLength;
|
|
type BlockWeights = BlockWeights;
|
|
type DbWeight = ();
|
|
type Version = ();
|
|
type PalletInfo = PalletInfo;
|
|
type AccountData = pallet_balances::AccountData<u64>;
|
|
type OnNewAccount = ();
|
|
type OnKilledAccount = ();
|
|
type SystemWeightInfo = ();
|
|
type SS58Prefix = ();
|
|
type OnSetCode = ();
|
|
type MaxConsumers = frame_support::traits::ConstU32<16>;
|
|
}
|
|
|
|
impl pallet_balances::Config for Test {
|
|
type Balance = u64;
|
|
type RuntimeEvent = RuntimeEvent;
|
|
type DustRemoval = ();
|
|
type ExistentialDeposit = ConstU64<1>;
|
|
type AccountStore = System;
|
|
type MaxLocks = ();
|
|
type MaxReserves = ();
|
|
type ReserveIdentifier = [u8; 8];
|
|
type WeightInfo = ();
|
|
type RuntimeHoldReason = RuntimeHoldReason;
|
|
type RuntimeFreezeReason = RuntimeFreezeReason;
|
|
type FreezeIdentifier = ();
|
|
type MaxHolds = ConstU32<1>;
|
|
type MaxFreezes = ConstU32<1>;
|
|
}
|
|
|
|
parameter_types! {
|
|
pub const TreasuryPalletId: PalletId = PalletId(*b"py/trsry");
|
|
pub const MaxApprovals: u32 = 100;
|
|
pub TreasuryAccount: AccountId = Treasury::account_id();
|
|
}
|
|
|
|
impl pallet_treasury::Config for Test {
|
|
type Currency = pallet_balances::Pallet<Test>;
|
|
type ApproveOrigin = frame_system::EnsureRoot<AccountId>;
|
|
type RejectOrigin = frame_system::EnsureRoot<AccountId>;
|
|
type RuntimeEvent = RuntimeEvent;
|
|
type OnSlash = ();
|
|
type ProposalBond = ();
|
|
type ProposalBondMinimum = ();
|
|
type ProposalBondMaximum = ();
|
|
type SpendPeriod = ();
|
|
type Burn = ();
|
|
type BurnDestination = ();
|
|
type PalletId = TreasuryPalletId;
|
|
type SpendFunds = ();
|
|
type MaxApprovals = MaxApprovals;
|
|
type WeightInfo = ();
|
|
type SpendOrigin = frame_support::traits::NeverEnsureOrigin<u64>;
|
|
type AssetKind = ();
|
|
type Beneficiary = Self::AccountId;
|
|
type BeneficiaryLookup = IdentityLookup<Self::AccountId>;
|
|
type Paymaster = PayFromAccount<Balances, TreasuryAccount>;
|
|
type BalanceConverter = UnityAssetBalanceConversion;
|
|
type PayoutPeriod = ConstU64<0>;
|
|
#[cfg(feature = "runtime-benchmarks")]
|
|
type BenchmarkHelper = ();
|
|
}
|
|
|
|
pub struct OneAuthor;
|
|
impl FindAuthor<AccountId> for OneAuthor {
|
|
fn find_author<'a, I>(_: I) -> Option<AccountId>
|
|
where
|
|
I: 'a,
|
|
{
|
|
Some(TEST_ACCOUNT)
|
|
}
|
|
}
|
|
impl pallet_authorship::Config for Test {
|
|
type FindAuthor = OneAuthor;
|
|
type EventHandler = ();
|
|
}
|
|
|
|
pub fn new_test_ext() -> sp_io::TestExternalities {
|
|
let mut t = frame_system::GenesisConfig::<Test>::default().build_storage().unwrap();
|
|
// We use default for brevity, but you can configure as desired if needed.
|
|
pallet_balances::GenesisConfig::<Test>::default()
|
|
.assimilate_storage(&mut t)
|
|
.unwrap();
|
|
t.into()
|
|
}
|
|
|
|
#[test]
|
|
fn test_fees_and_tip_split() {
|
|
new_test_ext().execute_with(|| {
|
|
let fee = Balances::issue(10);
|
|
let tip = Balances::issue(20);
|
|
|
|
assert_eq!(Balances::free_balance(Treasury::account_id()), 0);
|
|
assert_eq!(Balances::free_balance(TEST_ACCOUNT), 0);
|
|
|
|
DealWithFees::on_unbalanceds(vec![fee, tip].into_iter());
|
|
|
|
// Author gets 100% of tip and 20% of fee = 22
|
|
assert_eq!(Balances::free_balance(TEST_ACCOUNT), 22);
|
|
// Treasury gets 80% of fee
|
|
assert_eq!(Balances::free_balance(Treasury::account_id()), 8);
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn compute_inflation_should_give_sensible_results() {
|
|
assert_eq!(
|
|
pallet_staking_reward_fn::compute_inflation(
|
|
Perquintill::from_percent(75),
|
|
Perquintill::from_percent(75),
|
|
Perquintill::from_percent(5),
|
|
),
|
|
Perquintill::one()
|
|
);
|
|
assert_eq!(
|
|
pallet_staking_reward_fn::compute_inflation(
|
|
Perquintill::from_percent(50),
|
|
Perquintill::from_percent(75),
|
|
Perquintill::from_percent(5),
|
|
),
|
|
Perquintill::from_rational(2u64, 3u64)
|
|
);
|
|
assert_eq!(
|
|
pallet_staking_reward_fn::compute_inflation(
|
|
Perquintill::from_percent(80),
|
|
Perquintill::from_percent(75),
|
|
Perquintill::from_percent(5),
|
|
),
|
|
Perquintill::from_rational(1u64, 2u64)
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn era_payout_should_give_sensible_results() {
|
|
assert_eq!(
|
|
era_payout(75, 100, Perquintill::from_percent(10), Perquintill::one(), 0,),
|
|
(10, 0)
|
|
);
|
|
assert_eq!(
|
|
era_payout(80, 100, Perquintill::from_percent(10), Perquintill::one(), 0,),
|
|
(6, 4)
|
|
);
|
|
}
|
|
}
|