mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 23:21:02 +00:00
097308e385
This PR adds [Rococo People](https://github.com/paritytech/polkadot-sdk/pull/2281) <> [Rococo Bulletin](https://github.com/zdave-parity/polkadot-bulletin-chain) to the Rococo Bridge Hub code. There's a couple of things left to do here: - [x] add remaining tests - it'd need some refactoring in the `bridge-hub-test-utils` - will do in a separate PR; - [x] actually run benchmarks for new messaging pallet (do we have bot nowadays?). The reason why I'm opening it before this ^^^ is ready, is that I'd like to hear others opinion on how to deal with hacks with that bridge. Initially I was assuming that Rococo Bulletin will be the 1:1 copy of the Polkadot Bulletin (to avoid maintaining multiple runtimes/releases/...), so you can see many `PolkadotBulletin` mentions in this PR, even though we are going to bridge with the parallel chain (`RococoBulletin`). That's because e.g. pallet names from `construct_runtime` are affecting runtime storage keys and bridges are using runtime storage proofs => it is important to use names that the Bulletin chain expects. But in the end, this hack won't work - we can't use Polkadot Bulletin runtime to bridge with Rococo Bridge Hub, because Polkadot Bulletin expects Polkadot Bridge hub to use `1002` parachain id and Rococo Bridge Hub seats on the `1013`. This also affects storage keys using in bridging, so I had to add the [`rococo` feature](https://github.com/svyatonik/polkadot-bulletin-chain/blob/add-bridge-pallets/runtime/Cargo.toml#L198) to the Bulletin chain. So now we can actually alter its runtime and adapt it for Rococo. So the question here is - what's better for us here - to leave everything as is (seems hacky and non-trivial); - change Bulletin chain runtime when `rococo` feature is used - e.g. use proper names there (`WithPolkadotGrandpa` -> `WithRococoGrandpa`, ...) - add another set of pallets to the Bulletin chain runtime to bridge with Rococo and never use them in production. Similar to hack that we had in Rococo/Wococo cc @acatangiu @bkontur @serban300 also cc @joepetrowski as the main "client" of this bridge --- A couple words on how this bridge is different from the Rococo <> Westend bridge: - it is a bridge with a chain that uses GRANDPA finality, not the parachain finality (hence the tests needs to be changed); - it is a fee-free bridge. So `AllowExplicitUnpaidExecutionFrom<Equals<SiblingPeople>>` + we are not paying any rewards to relayers (apart from compensating transaction costs). --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Andrei Sandu <andrei-mihail@parity.io> Co-authored-by: Adrian Catangiu <adrian@parity.io> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Andrei Sandu <54316454+sandreim@users.noreply.github.com> Co-authored-by: Egor_P <egor@parity.io> Co-authored-by: command-bot <>
156 lines
5.2 KiB
Rust
156 lines
5.2 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/>.
|
|
|
|
#![cfg_attr(not(feature = "std"), no_std)]
|
|
|
|
pub mod weights;
|
|
|
|
/// Money matters.
|
|
pub mod currency {
|
|
use primitives::Balance;
|
|
|
|
/// The existential deposit.
|
|
pub const EXISTENTIAL_DEPOSIT: Balance = 1 * CENTS;
|
|
|
|
pub const UNITS: Balance = 1_000_000_000_000;
|
|
pub const CENTS: Balance = UNITS / 30_000;
|
|
pub const GRAND: Balance = CENTS * 100_000;
|
|
pub const MILLICENTS: Balance = CENTS / 1_000;
|
|
|
|
pub const fn deposit(items: u32, bytes: u32) -> Balance {
|
|
items as Balance * 2_000 * CENTS + (bytes as Balance) * 100 * MILLICENTS
|
|
}
|
|
}
|
|
|
|
/// Time and blocks.
|
|
pub mod time {
|
|
use runtime_common::prod_or_fast;
|
|
|
|
use primitives::{BlockNumber, Moment};
|
|
pub const MILLISECS_PER_BLOCK: Moment = 6000;
|
|
pub const SLOT_DURATION: Moment = MILLISECS_PER_BLOCK;
|
|
|
|
frame_support::parameter_types! {
|
|
pub EpochDurationInBlocks: BlockNumber =
|
|
prod_or_fast!(1 * HOURS, 1 * MINUTES, "ROCOCO_EPOCH_DURATION");
|
|
}
|
|
|
|
// These time units are defined in number of blocks.
|
|
pub const MINUTES: BlockNumber = 60_000 / (MILLISECS_PER_BLOCK as BlockNumber);
|
|
pub const HOURS: BlockNumber = MINUTES * 60;
|
|
pub const DAYS: BlockNumber = HOURS * 24;
|
|
pub const WEEKS: BlockNumber = DAYS * 7;
|
|
|
|
// 1 in 4 blocks (on average, not counting collisions) will be primary babe blocks.
|
|
// The choice of is done in accordance to the slot duration and expected target
|
|
// block time, for safely resisting network delays of maximum two seconds.
|
|
// <https://research.web3.foundation/en/latest/polkadot/BABE/Babe/#6-practical-results>
|
|
pub const PRIMARY_PROBABILITY: (u64, u64) = (1, 4);
|
|
}
|
|
|
|
/// Fee-related.
|
|
pub mod fee {
|
|
use crate::weights::ExtrinsicBaseWeight;
|
|
use frame_support::weights::{
|
|
WeightToFeeCoefficient, WeightToFeeCoefficients, WeightToFeePolynomial,
|
|
};
|
|
use primitives::Balance;
|
|
use smallvec::smallvec;
|
|
pub use sp_runtime::Perbill;
|
|
|
|
/// The block saturation level. Fees will be updates based on this value.
|
|
pub const TARGET_BLOCK_FULLNESS: Perbill = Perbill::from_percent(25);
|
|
|
|
/// Handles converting a weight scalar to a fee value, based on the scale and granularity of the
|
|
/// node's balance type.
|
|
///
|
|
/// This should typically create a mapping between the following ranges:
|
|
/// - [0, `frame_system::MaximumBlockWeight`]
|
|
/// - [Balance::min, Balance::max]
|
|
///
|
|
/// Yet, it can be used for any other sort of change to weight-fee. Some examples being:
|
|
/// - Setting it to `0` will essentially disable the weight fee.
|
|
/// - Setting it to `1` will cause the literal `#[weight = x]` values to be charged.
|
|
pub struct WeightToFee;
|
|
impl WeightToFeePolynomial for WeightToFee {
|
|
type Balance = Balance;
|
|
fn polynomial() -> WeightToFeeCoefficients<Self::Balance> {
|
|
// in Rococo, extrinsic base weight (smallest non-zero weight) is mapped to 1/10 CENT:
|
|
let p = super::currency::CENTS;
|
|
let q = 10 * Balance::from(ExtrinsicBaseWeight::get().ref_time());
|
|
smallvec![WeightToFeeCoefficient {
|
|
degree: 1,
|
|
negative: false,
|
|
coeff_frac: Perbill::from_rational(p % q, q),
|
|
coeff_integer: p / q,
|
|
}]
|
|
}
|
|
}
|
|
}
|
|
|
|
/// System Parachains.
|
|
pub mod system_parachain {
|
|
use primitives::Id;
|
|
use xcm_builder::IsChildSystemParachain;
|
|
|
|
/// Network's Asset Hub parachain ID.
|
|
pub const ASSET_HUB_ID: u32 = 1000;
|
|
/// Contracts parachain ID.
|
|
pub const CONTRACTS_ID: u32 = 1002;
|
|
/// Encointer parachain ID.
|
|
pub const ENCOINTER_ID: u32 = 1003;
|
|
/// People parachain ID.
|
|
pub const PEOPLE_ID: u32 = 1004;
|
|
/// BridgeHub parachain ID.
|
|
pub const BRIDGE_HUB_ID: u32 = 1013;
|
|
|
|
/// All system parachains of Rococo.
|
|
pub type SystemParachains = IsChildSystemParachain<Id>;
|
|
}
|
|
|
|
/// Rococo Treasury pallet instance.
|
|
pub const TREASURY_PALLET_ID: u8 = 18;
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::{
|
|
currency::{CENTS, MILLICENTS},
|
|
fee::WeightToFee,
|
|
};
|
|
use crate::weights::ExtrinsicBaseWeight;
|
|
use frame_support::weights::WeightToFee as WeightToFeeT;
|
|
use runtime_common::MAXIMUM_BLOCK_WEIGHT;
|
|
|
|
#[test]
|
|
// Test that the fee for `MAXIMUM_BLOCK_WEIGHT` of weight has sane bounds.
|
|
fn full_block_fee_is_correct() {
|
|
// A full block should cost between 1,000 and 10,000 CENTS.
|
|
let full_block = WeightToFee::weight_to_fee(&MAXIMUM_BLOCK_WEIGHT);
|
|
assert!(full_block >= 1_000 * CENTS);
|
|
assert!(full_block <= 10_000 * CENTS);
|
|
}
|
|
|
|
#[test]
|
|
// This function tests that the fee for `ExtrinsicBaseWeight` of weight is correct
|
|
fn extrinsic_base_fee_is_correct() {
|
|
// `ExtrinsicBaseWeight` should cost 1/10 of a CENT
|
|
println!("Base: {}", ExtrinsicBaseWeight::get());
|
|
let x = WeightToFee::weight_to_fee(&ExtrinsicBaseWeight::get());
|
|
let y = CENTS / 10;
|
|
assert!(x.max(y) - x.min(y) < MILLICENTS);
|
|
}
|
|
}
|