Skip to content

Commit

Permalink
Merge pull request #18 from reef-defi/f/v5
Browse files Browse the repository at this point in the history
Testnet 5
  • Loading branch information
Netherdrake authored May 13, 2021
2 parents 6c4d5ff + 0696bed commit d1cdfb6
Show file tree
Hide file tree
Showing 3 changed files with 37,767 additions and 5 deletions.
18,885 changes: 18,885 additions & 0 deletions assets/chain_spec_mainnet.json

Large diffs are not rendered by default.

18,877 changes: 18,877 additions & 0 deletions assets/chain_spec_testnet.json

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -242,8 +242,8 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("reef"),
impl_name: create_runtime_str!("reef"),
authoring_version: 1,
spec_version: 4,
impl_version: 4,
spec_version: 5,
impl_version: 5,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
};
Expand Down Expand Up @@ -345,14 +345,14 @@ impl pallet_session::historical::Config for Runtime {
}

pallet_staking_reward_curve::build! {
// 3.5% min, 27.5% max, 50% ideal stake
// 4.5% min, 27.5% max, 50% ideal stake
const REWARD_CURVE: PiecewiseLinear<'static> = curve!(
min_inflation: 0_035_000,
min_inflation: 0_045_000,
max_inflation: 0_275_000,
ideal_stake: 0_500_000,
falloff: 0_050_000,
max_piece_count: 40,
test_precision: 0_008_000,
test_precision: 0_005_500,
);
}

Expand Down

0 comments on commit d1cdfb6

Please sign in to comment.