subspace_runtime_primitives/lib.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354
// Copyright (C) 2021 Subspace Labs, Inc.
// SPDX-License-Identifier: GPL-3.0-or-later
// This program 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.
// This program 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 this program. If not, see <https://www.gnu.org/licenses/>.
//! Runtime primitives for Subspace Network.
#![cfg_attr(not(feature = "std"), no_std)]
#[cfg(not(feature = "std"))]
extern crate alloc;
use crate::time::{BLOCKS_IN_AN_MINUTE, BLOCKS_IN_A_DAY};
#[cfg(not(feature = "std"))]
use alloc::vec::Vec;
use codec::{Codec, Decode, Encode, MaxEncodedLen};
use frame_support::pallet_prelude::Weight;
use frame_support::traits::tokens;
use frame_support::weights::constants::WEIGHT_REF_TIME_PER_SECOND;
use frame_support::{Deserialize, Serialize};
use frame_system::limits::BlockLength;
use pallet_transaction_payment::{Multiplier, TargetedFeeAdjustment};
use scale_info::TypeInfo;
use sp_core::parameter_types;
use sp_runtime::traits::{Bounded, IdentifyAccount, Verify};
use sp_runtime::{FixedPointNumber, MultiSignature, Perbill, Perquintill};
pub use subspace_core_primitives::BlockNumber;
/// Minimum desired number of replicas of the blockchain to be stored by the network,
/// impacts storage fees.
pub const MIN_REPLICATION_FACTOR: u16 = 25;
/// The smallest unit of the token is called Shannon.
pub const SHANNON: Balance = 1;
/// Subspace Credits have 18 decimal places.
pub const DECIMAL_PLACES: u8 = 18;
/// One Subspace Credit.
pub const SSC: Balance = (10 * SHANNON).pow(DECIMAL_PLACES as u32);
/// A ratio of `Normal` dispatch class within block, for `BlockWeight` and `BlockLength`.
pub const NORMAL_DISPATCH_RATIO: Perbill = Perbill::from_percent(75);
/// 1 in 6 slots (on average, not counting collisions) will have a block.
/// Must match ratio between block and slot duration in constants above.
pub const SLOT_PROBABILITY: (u64, u64) = (1, 6);
/// The block weight for 2 seconds of compute
pub const BLOCK_WEIGHT_FOR_2_SEC: Weight =
Weight::from_parts(WEIGHT_REF_TIME_PER_SECOND.saturating_mul(2), u64::MAX);
/// Maximum block length for non-`Normal` extrinsic is 5 MiB.
pub const MAX_BLOCK_LENGTH: u32 = 5 * 1024 * 1024;
/// We allow for 3.75 MiB for `Normal` extrinsic with 5 MiB maximum block length.
pub fn maximum_normal_block_length() -> BlockLength {
BlockLength::max_with_normal_ratio(MAX_BLOCK_LENGTH, NORMAL_DISPATCH_RATIO)
}
/// Alias to 512-bit hash when used in the context of a transaction signature on the chain.
pub type Signature = MultiSignature;
/// Some way of identifying an account on the chain. We intentionally make it equivalent
/// to the public key of our transaction signing scheme.
pub type AccountId = <<Signature as Verify>::Signer as IdentifyAccount>::AccountId;
/// Balance of an account.
pub type Balance = u128;
/// Index of a transaction in the chain.
pub type Nonce = u32;
/// A hash of some data used by the chain.
pub type Hash = sp_core::H256;
/// Type used for expressing timestamp.
pub type Moment = u64;
/// Opaque types.
///
/// These are used by the CLI to instantiate machinery that don't need to know the specifics of the
/// runtime. They can then be made to be agnostic over specific formats of data like extrinsics,
/// allowing for them to continue syncing the network through upgrades to even the core data
/// structures.
pub mod opaque {
use super::BlockNumber;
use sp_runtime::generic;
use sp_runtime::traits::BlakeTwo256;
pub use sp_runtime::OpaqueExtrinsic as UncheckedExtrinsic;
/// Opaque block header type.
pub type Header = generic::Header<BlockNumber, BlakeTwo256>;
/// Opaque block type.
pub type Block = generic::Block<Header, UncheckedExtrinsic>;
}
pub mod time {
/// Expected block time in milliseconds.
///
/// Since Subspace is probabilistic this is the average expected block time that
/// we are targeting. Blocks will be produced at a minimum duration defined
/// by `SLOT_DURATION`, but some slots will not be allocated to any
/// farmer and hence no block will be produced. We expect to have this
/// block time on average following the defined slot duration and the value
/// of `c` configured for Subspace (where `1 - c` represents the probability of
/// a slot being empty).
/// This value is only used indirectly to define the unit constants below
/// that are expressed in blocks. The rest of the code should use
/// `SLOT_DURATION` instead (like the Timestamp pallet for calculating the
/// minimum period).
///
/// Based on:
/// <https://research.web3.foundation/en/latest/polkadot/block-production/Babe.html#-6.-practical-results>
pub const MILLISECS_PER_BLOCK: u64 = 6000;
/// Approximate number of block in a minute.
pub const BLOCKS_IN_AN_MINUTE: u32 = (60 * 1000) / MILLISECS_PER_BLOCK as u32;
/// Approximate number of blocks in an hour.
pub const BLOCKS_IN_AN_HOUR: u32 = 60 * BLOCKS_IN_AN_MINUTE;
/// Approximate number of blocks in a day.
pub const BLOCKS_IN_A_DAY: u32 = 24 * BLOCKS_IN_AN_HOUR;
}
#[derive(Copy, Clone, Encode, Decode, TypeInfo, Serialize, Deserialize, MaxEncodedLen, Debug)]
pub struct CouncilDemocracyConfigParams<BlockNumber> {
/// Council motion duration.
pub council_motion_duration: BlockNumber,
/// Democracy cooloff period.
pub democracy_cooloff_period: BlockNumber,
/// Democracy enactment period.
pub democracy_enactment_period: BlockNumber,
/// Fast track voting period.
pub democracy_fast_track_voting_period: BlockNumber,
/// Launch period.
pub democracy_launch_period: BlockNumber,
/// Vote locking period.
pub democracy_vote_locking_period: BlockNumber,
/// Voting period.
pub democracy_voting_period: BlockNumber,
}
impl<BlockNumber: From<u32>> Default for CouncilDemocracyConfigParams<BlockNumber> {
fn default() -> Self {
Self {
council_motion_duration: BLOCKS_IN_A_DAY.into(),
democracy_cooloff_period: BLOCKS_IN_A_DAY.into(),
democracy_enactment_period: BLOCKS_IN_A_DAY.into(),
democracy_fast_track_voting_period: (2 * BLOCKS_IN_A_DAY).into(),
democracy_launch_period: (2 * BLOCKS_IN_A_DAY).into(),
democracy_vote_locking_period: BLOCKS_IN_A_DAY.into(),
democracy_voting_period: BLOCKS_IN_A_DAY.into(),
}
}
}
impl<BlockNumber: From<u32>> CouncilDemocracyConfigParams<BlockNumber> {
/// Production params for Council democracy config.
pub fn production_params() -> Self {
Self::default()
}
/// Fast period params for Council democracy config.
pub fn fast_params() -> Self {
Self {
council_motion_duration: (15 * BLOCKS_IN_AN_MINUTE).into(),
democracy_cooloff_period: (5 * BLOCKS_IN_AN_MINUTE).into(),
democracy_enactment_period: (15 * BLOCKS_IN_AN_MINUTE).into(),
democracy_fast_track_voting_period: (5 * BLOCKS_IN_AN_MINUTE).into(),
democracy_launch_period: (15 * BLOCKS_IN_AN_MINUTE).into(),
democracy_vote_locking_period: BLOCKS_IN_AN_MINUTE.into(),
democracy_voting_period: (15 * BLOCKS_IN_AN_MINUTE).into(),
}
}
}
/// A trait for determining whether rewards are enabled or not
pub trait RewardsEnabled {
/// Determine whether rewards are enabled or not
fn rewards_enabled() -> bool;
}
/// A trait for finding the address for a block reward based on the `PreRuntime` digests contained within it.
pub trait FindBlockRewardAddress<RewardAddress> {
/// Find the address for a block rewards based on the pre-runtime digests.
fn find_block_reward_address() -> Option<RewardAddress>;
}
/// A trait for finding the addresses for voting reward based on transactions found in the block.
pub trait FindVotingRewardAddresses<RewardAddress> {
/// Find the addresses for voting rewards based on transactions found in the block.
fn find_voting_reward_addresses() -> Vec<RewardAddress>;
}
pub trait StorageFee<Balance> {
/// Return the consensus transaction byte fee.
fn transaction_byte_fee() -> Balance;
/// Note the charged storage fee.
fn note_storage_fees(fee: Balance);
}
parameter_types! {
/// The portion of the `NORMAL_DISPATCH_RATIO` that we adjust the fees with. Blocks filled less
/// than this will decrease the weight and more will increase.
pub const TargetBlockFullness: Perquintill = Perquintill::from_percent(50);
/// The adjustment variable of the runtime. Higher values will cause `TargetBlockFullness` to
/// change the fees more rapidly.
pub AdjustmentVariable: Multiplier = Multiplier::saturating_from_rational(75, 1_000_000);
/// Minimum amount of the multiplier. This value cannot be too low. A test case should ensure
/// that combined with `AdjustmentVariable`, we can recover from the minimum.
/// See `multiplier_can_grow_from_zero`.
pub MinimumMultiplier: Multiplier = Multiplier::saturating_from_rational(1, 10u128);
/// The maximum amount of the multiplier.
pub MaximumMultiplier: Multiplier = Bounded::max_value();
}
/// Parameterized slow adjusting fee updated based on
/// <https://research.web3.foundation/Polkadot/overview/token-economics#2-slow-adjusting-mechanism>
pub type SlowAdjustingFeeUpdate<R> = TargetedFeeAdjustment<
R,
TargetBlockFullness,
AdjustmentVariable,
MinimumMultiplier,
MaximumMultiplier,
>;
#[derive(Encode, Decode, TypeInfo)]
pub struct BlockTransactionByteFee<Balance: Codec> {
// The value of `transaction_byte_fee` for the current block
pub current: Balance,
// The value of `transaction_byte_fee` for the next block
pub next: Balance,
}
impl<Balance: Codec + tokens::Balance> Default for BlockTransactionByteFee<Balance> {
fn default() -> Self {
BlockTransactionByteFee {
current: Balance::max_value(),
next: Balance::max_value(),
}
}
}
#[derive(
PartialEq, Eq, Clone, Encode, Decode, TypeInfo, MaxEncodedLen, Ord, PartialOrd, Copy, Debug,
)]
pub enum HoldIdentifier {
DomainStaking,
DomainInstantiation,
DomainStorageFund,
MessengerChannel,
Preimage,
}
#[cfg(feature = "testing")]
pub mod tests_utils {
use frame_support::dispatch::DispatchClass;
use frame_support::weights::Weight;
use frame_system::limits::BlockWeights;
use pallet_transaction_payment::{Multiplier, MultiplierUpdate};
use sp_runtime::traits::{Convert, Get};
use sp_runtime::BuildStorage;
use std::marker::PhantomData;
pub struct FeeMultiplierUtils<Runtime, BlockWeightsGetter>(
PhantomData<(Runtime, BlockWeightsGetter)>,
);
impl<Runtime, BlockWeightsGetter> FeeMultiplierUtils<Runtime, BlockWeightsGetter>
where
Runtime: frame_system::Config + pallet_transaction_payment::Config,
BlockWeightsGetter: Get<BlockWeights>,
{
fn max_normal() -> Weight {
let block_weights = BlockWeightsGetter::get();
block_weights
.get(DispatchClass::Normal)
.max_total
.unwrap_or(block_weights.max_block)
}
fn min_multiplier() -> Multiplier {
<Runtime as pallet_transaction_payment::Config>::FeeMultiplierUpdate::min()
}
fn target() -> Weight {
<Runtime as pallet_transaction_payment::Config>::FeeMultiplierUpdate::target()
* Self::max_normal()
}
// update based on runtime impl.
fn runtime_multiplier_update(fm: Multiplier) -> Multiplier {
<Runtime as pallet_transaction_payment::Config>::FeeMultiplierUpdate::convert(fm)
}
fn run_with_system_weight<F>(w: Weight, assertions: F)
where
F: Fn(),
{
let mut t: sp_io::TestExternalities = frame_system::GenesisConfig::<Runtime>::default()
.build_storage()
.unwrap()
.into();
t.execute_with(|| {
frame_system::Pallet::<Runtime>::set_block_consumed_resources(w, 0);
assertions()
});
}
// The following function is taken from test with same name from
// https://github.com/paritytech/polkadot-sdk/blob/91851951856b8effe627fb1d151fe336a51eef2d/substrate/bin/node/runtime/src/impls.rs#L234
// with some small surface changes.
pub fn multiplier_can_grow_from_zero()
where
Runtime: pallet_transaction_payment::Config,
BlockWeightsGetter: Get<BlockWeights>,
{
// if the min is too small, then this will not change, and we are doomed forever.
// the block ref time is 1/100th bigger than target.
Self::run_with_system_weight(
Self::target().set_ref_time((Self::target().ref_time() / 100) * 101),
|| {
let next = Self::runtime_multiplier_update(Self::min_multiplier());
assert!(
next > Self::min_multiplier(),
"{:?} !> {:?}",
next,
Self::min_multiplier()
);
},
);
// the block proof size is 1/100th bigger than target.
Self::run_with_system_weight(
Self::target().set_proof_size((Self::target().proof_size() / 100) * 101),
|| {
let next = Self::runtime_multiplier_update(Self::min_multiplier());
assert!(
next > Self::min_multiplier(),
"{:?} !> {:?}",
next,
Self::min_multiplier()
);
},
)
}
}
}