#pallet #randomness #frame #flip #collective #random #block

no-std pallet-randomness-collective-flip

FRAME randomness collective flip pallet

27 releases (13 major breaking)

15.0.0 Feb 5, 2023
14.0.0 Feb 1, 2023
13.0.0 Jan 22, 2023
12.0.0 Jan 16, 2023
2.0.0-alpha.5 Mar 24, 2020

#14 in #flip

Download history 902/week @ 2023-12-14 757/week @ 2023-12-21 352/week @ 2023-12-28 574/week @ 2024-01-04 857/week @ 2024-01-11 857/week @ 2024-01-18 546/week @ 2024-01-25 392/week @ 2024-02-01 841/week @ 2024-02-08 1167/week @ 2024-02-15 793/week @ 2024-02-22 826/week @ 2024-02-29 1047/week @ 2024-03-07 785/week @ 2024-03-14 1157/week @ 2024-03-21 955/week @ 2024-03-28

3,963 downloads per month
Used in 8 crates (6 directly)

Apache-2.0

14KB
183 lines

Randomness Module

The Randomness Collective Flip module provides a random function that generates low-influence random values based on the block hashes from the previous 81 blocks. Low-influence randomness can be useful when defending against relatively weak adversaries. Using this pallet as a randomness source is advisable primarily in low-security situations like testing.

Public Functions

See the Module struct for details of publicly available functions.

Usage

Prerequisites

Import the Randomness Collective Flip module and derive your module's configuration trait from the system trait.

Example - Get random seed for the current block

use frame_support::traits::Randomness;

#[frame_support::pallet]
pub mod pallet {
    use super::*;
    use frame_support::pallet_prelude::*;
    use frame_system::pallet_prelude::*;

    #[pallet::pallet]
    pub struct Pallet<T>(_);

    #[pallet::config]
    pub trait Config: frame_system::Config + pallet_randomness_collective_flip::Config {}

    #[pallet::call]
    impl<T: Config> Pallet<T> {
        #[pallet::weight(0)]
        pub fn random_module_example(origin: OriginFor<T>) -> DispatchResult {
            let _random_value = <pallet_randomness_collective_flip::Pallet<T>>::random(&b"my context"[..]);
            Ok(())
        }
    }
}

License: Apache-2.0

Dependencies

~12–31MB
~446K SLoC