#rank #vote #member #system #ranked #pallet #origin

no-std pallet-ranked-collective

Ranked collective system: Members of a set of account IDs can make their collective feelings known through dispatched calls from one of two specialized origins

36 major breaking releases

new 39.0.0 Jan 13, 2025
38.2.0 Dec 20, 2024
38.0.0 Sep 26, 2024
37.1.0 Jan 17, 2025
0.0.0 Nov 21, 2022

#449 in Magic Beans

Download history 1267/week @ 2024-09-28 924/week @ 2024-10-05 1262/week @ 2024-10-12 1684/week @ 2024-10-19 1496/week @ 2024-10-26 1339/week @ 2024-11-02 19195/week @ 2024-11-09 26397/week @ 2024-11-16 28021/week @ 2024-11-23 21209/week @ 2024-11-30 30392/week @ 2024-12-07 23167/week @ 2024-12-14 7119/week @ 2024-12-21 11845/week @ 2024-12-28 21785/week @ 2025-01-04 26409/week @ 2025-01-11

69,853 downloads per month
Used in 27 crates (7 directly)

Apache-2.0

3MB
53K SLoC

Ranked collective system

This is a membership pallet providing a Tally implementation ready for use with polling systems such as the Referenda pallet. Members each have a rank, with zero being the lowest. There is no complexity limitation on either the number of members at a rank or the number of ranks in the system thus allowing potentially public membership. A member of at least a given rank can be selected at random in O(1) time, allowing for various games to constructed using this as a primitive. Members may only be promoted and demoted by one rank at a time, however all operations (save one) are O(1) in complexity. The only operation which is not O(1) is the remove_member since they must be removed from all ranks from the present down to zero.

Different ranks have different voting power, and are able to vote in different polls. In general rank privileges are cumulative. Higher ranks are able to vote in any polls open to lower ranks. Similarly, higher ranks always have at least as much voting power in any given poll as lower ranks.

Two Config trait items control these "rank privileges": MinRankOfClass and VoteWeight. The first controls which ranks are allowed to vote on a particular class of poll. The second controls the weight of a vote given the voters rank compared to the minimum rank of the poll.

An origin control, EnsureRank, ensures that the origin is a member of the collective of at least a particular rank.

Release

Polkadot SDK Stable 2412

Dependencies

~17–32MB
~530K SLoC