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
#![cfg_attr(not(feature = "std"), no_std)]
#![allow(clippy::unused_unit)]
pub use dock_poa::BalanceOf;
use frame_support::{
traits::Get,
weights::{Pays, Weight},
};
use frame_system::ensure_root;
pub use pallet::*;
use pallet_staking::EraPayout;
use sp_runtime::{
curve::PiecewiseLinear,
traits::{Saturating, Zero},
Perbill, Percent,
};
pub use types::*;
pub mod runtime_api;
pub mod types;
#[cfg(test)]
mod tests;
pub const MILLISECONDS_PER_YEAR: u64 = 1000 * 3600 * 24 * 36525 / 100;
#[frame_support::pallet]
pub mod pallet {
use super::*;
use frame_support::pallet_prelude::{ValueQuery, *};
use frame_system::pallet_prelude::*;
#[pallet::config]
pub trait Config: frame_system::Config + dock_poa::Config {
type Event: From<Event<Self>>
+ IsType<<Self as frame_system::Config>::Event>
+ Into<<Self as frame_system::Config>::Event>;
type PostUpgradeHighRateDuration: Get<Option<DurationInEras>>;
type LowRateRewardDecayPct: Get<Percent>;
type HighRateRewardDecayPct: Get<Percent>;
#[pallet::constant]
type TreasuryRewardsPct: Get<Percent>;
type RewardCurve: Get<&'static PiecewiseLinear<'static>>;
}
#[pallet::event]
#[pallet::generate_deposit(pub(super)fn deposit_event)]
pub enum Event<T: Config> {
EmissionRewards(BalanceOf<T>, BalanceOf<T>),
EmissionSupplyTakenFromPoA(BalanceOf<T>),
}
#[pallet::storage]
#[pallet::getter(fn staking_emission_supply)]
pub type StakingEmissionSupply<T> = StorageValue<_, BalanceOf<T>, ValueQuery>;
#[pallet::storage]
#[pallet::getter(fn staking_emission_status)]
pub type StakingEmissionStatus<T> = StorageValue<_, bool, ValueQuery>;
#[pallet::storage]
#[pallet::getter(fn high_rate_rewards)]
pub type HighRateRewards<T> = StorageValue<_, HighRateRewardsState, ValueQuery>;
#[pallet::pallet]
#[pallet::generate_store(pub(super) trait Store)]
pub struct Pallet<T>(_);
#[pallet::call]
impl<T: Config> Pallet<T> {
#[pallet::weight(T::DbWeight::get().writes(1))]
pub fn set_emission_status(
origin: OriginFor<T>,
status: bool,
) -> DispatchResultWithPostInfo {
ensure_root(origin)?;
StakingEmissionStatus::<T>::put(status);
Ok(Pays::No.into())
}
}
#[pallet::hooks]
impl<T: Config> Hooks<T::BlockNumber> for Pallet<T> {
fn on_runtime_upgrade() -> Weight {
if let Some(duration) = T::PostUpgradeHighRateDuration::get() {
HighRateRewards::<T>::mutate(|rewards_state| {
rewards_state.inc_duration_or_init(duration)
});
T::DbWeight::get().reads_writes(1, 1)
} else {
Weight::zero()
}
}
}
}
impl<T: Config> Pallet<T> {
pub fn yearly_emission(
total_staked: BalanceOf<T>,
total_issuance: BalanceOf<T>,
) -> BalanceOf<T> {
Self::get_yearly_emission_reward(
T::RewardCurve::get(),
total_staked,
total_issuance,
Self::staking_emission_supply(),
)
}
pub fn max_yearly_emission() -> BalanceOf<T> {
Self::get_max_yearly_emission(Self::staking_emission_supply())
}
fn emission_reward_for_era(
reward_curve: &PiecewiseLinear,
total_staked: BalanceOf<T>,
total_issuance: BalanceOf<T>,
era_duration_millis: u64,
) -> (BalanceOf<T>, BalanceOf<T>) {
let emission_supply = Self::staking_emission_supply();
if !Self::staking_emission_status() {
return (BalanceOf::<T>::zero(), emission_supply);
}
let yearly_rewards = Self::get_yearly_emission_reward(
reward_curve,
total_staked,
total_issuance,
emission_supply,
);
let emission_reward =
Self::get_emission_reward_for_era_given_yearly(era_duration_millis, yearly_rewards);
let remaining = emission_supply.saturating_sub(emission_reward);
(emission_reward, remaining)
}
fn get_yearly_emission_reward(
reward_curve: &PiecewiseLinear,
total_staked: BalanceOf<T>,
total_issuance: BalanceOf<T>,
emission_supply: BalanceOf<T>,
) -> BalanceOf<T> {
let reward_proportion_of_max = Self::get_yearly_emission_reward_prop_as_per_npos_only(
reward_curve,
total_staked,
total_issuance,
);
let yearly_emission = Self::get_max_yearly_emission(emission_supply);
reward_proportion_of_max * yearly_emission
}
fn get_yearly_emission_reward_prop_as_per_npos_only(
reward_curve: &PiecewiseLinear,
total_staked: BalanceOf<T>,
total_issuance: BalanceOf<T>,
) -> Perbill {
let reward_as_per_npos = Self::get_yearly_emission_reward_as_per_npos_only(
reward_curve,
total_staked,
total_issuance,
);
Perbill::from_rational(reward_as_per_npos, reward_curve.maximum * total_issuance)
}
fn get_yearly_emission_reward_as_per_npos_only(
reward_curve: &PiecewiseLinear,
total_staked: BalanceOf<T>,
total_issuance: BalanceOf<T>,
) -> BalanceOf<T> {
reward_curve.calculate_for_fraction_times_denominator(total_staked, total_issuance)
}
pub fn reward_decay_pct() -> Percent {
Self::high_rate_rewards()
.is_active()
.then(T::HighRateRewardDecayPct::get)
.unwrap_or_else(T::LowRateRewardDecayPct::get)
}
pub fn treasury_rewards_pct() -> Percent {
Self::high_rate_rewards()
.is_active()
.then(Default::default)
.unwrap_or_else(T::TreasuryRewardsPct::get)
}
fn get_max_yearly_emission(emission_supply: BalanceOf<T>) -> BalanceOf<T> {
Self::reward_decay_pct() * emission_supply
}
fn get_emission_reward_for_era_given_yearly(
era_duration_millis: u64,
yearly_rewards: BalanceOf<T>,
) -> BalanceOf<T> {
let portion = Perbill::from_rational(era_duration_millis, MILLISECONDS_PER_YEAR);
portion * yearly_rewards
}
fn set_new_emission_supply(supply: BalanceOf<T>) {
<StakingEmissionSupply<T>>::put(supply)
}
}
impl<T: Config> EraPayout<BalanceOf<T>> for Pallet<T> {
fn era_payout(
total_staked: BalanceOf<T>,
total_issuance: BalanceOf<T>,
era_duration_millis: u64,
) -> (BalanceOf<T>, BalanceOf<T>) {
let reward_curve = T::RewardCurve::get();
let (emission_reward, remaining) = Self::emission_reward_for_era(
reward_curve,
total_staked,
total_issuance,
era_duration_millis,
);
Self::deposit_event(Event::EmissionRewards(emission_reward, remaining));
let result = if emission_reward.is_zero() {
(BalanceOf::<T>::zero(), BalanceOf::<T>::zero())
} else {
Self::set_new_emission_supply(remaining);
let treasury_reward = Self::treasury_rewards_pct() * emission_reward;
(
emission_reward.saturating_sub(treasury_reward),
treasury_reward,
)
};
let _ = HighRateRewards::<T>::try_mutate(HighRateRewardsState::try_next);
result
}
}