Ross Bulat
Ross Bulat
Simply does not react to any link being opened in the app. This may be the react native Linking API issue too - I am not sure. Not working in...
This PR adds commission functionality to Nomination Pools. A `Commission` struct and `CommissionThrottle` struct have been introduced to have: - the current commission, defaults to `0%`. - a maximum commission:...
With the `Balance` type in place of `u64` implemented, there were some issues on chain that the compiler did not pick up, causing function calls (from Polkadot JS) to fail....
This PR adds commission functionality to Nomination Pools (was #12511). #### New structs: `Commission` and `CommissionChangeRate`. #### New storage item: `GlobalMaxCommission: Option`. #### New calls: `set_commission`, `set_commission_max`, `set_commission_change_rate` and `claim_commission`....
It would be useful to be able to have separate structs for storage items at each version of a migration, so we do not need to amend previously run migrations...
This is a companion to introducing nomination pool commission: https://github.com/paritytech/substrate/pull/13128 - Adds additional weights for new calls - Adds migration to the runtimes.
This companion adds the `inflation_rate` API to staking runtime calls. - [x] added `inflation` mod to runtime constants to provide a base ideal stake (before auction factoring) and falloff. -...
This PR expands on what was worked on in https://github.com/paritytech/substrate/pull/11052, getting the name service pallet to a production ready state. The addition of a `register_para` and `deregister_para` will be added,...
Tracking issue: https://github.com/paritytech/polkadot-sdk/issues/410 Polkadot companion: https://github.com/paritytech/polkadot/pull/7425 This PR is part 1 of a lazy migration to update reward destinations, which removes `Controller`, refactors `RewardDestination` into a new `PayoutDestination` enum, and...
Introduces updated weights for staking pallet `set_payee` and lazy migration call `update_payee`. Companion for https://github.com/paritytech/substrate/pull/14451