28 major breaking releases

new 31.0.0 Mar 18, 2024
30.0.0 Feb 26, 2024
29.0.0 Feb 13, 2024
28.0.0 Jan 23, 2024
0.0.0 Nov 21, 2022

#1811 in Magic Beans

Download history 11/week @ 2023-12-10 8/week @ 2024-01-21 27/week @ 2024-02-11 13/week @ 2024-02-18 173/week @ 2024-02-25 10/week @ 2024-03-03 15/week @ 2024-03-10 121/week @ 2024-03-17

320 downloads per month
Used in polkadot-voter-bags

Apache-2.0

2.5MB
42K SLoC

Support code to ease the process of generating bag thresholds.

NOTE: this assume the runtime implements pallet_staking::Config, as it requires an implementation of the traits frame_support::traits::Currency and CurrencyToVote.

The process of adding bags to a runtime requires only four steps.

  1. Update the runtime definition.

    parameter_types!{
         pub const BagThresholds: &'static [u64] = &[];
    }
    
    impl pallet_bags_list::Config for Runtime {
         // <snip>
         type BagThresholds = BagThresholds;
    }
    
  2. Write a little program to generate the definitions. This program exists only to hook together the runtime definitions with the various calculations here. Take a look at utils/frame/generate_bags/node-runtime for an example.

  3. Run that program:

    $ cargo run -p node-runtime-generate-bags -- --total-issuance 1234 --minimum-balance 1
    

output.rs ```

  1. Update the runtime definition.

    + mod output;
    - pub const BagThresholds: &'static [u64] = &[];
    + pub const BagThresholds: &'static [u64] = &output::THRESHOLDS;
    

Dependencies

~26MB
~530K SLoC