Crates.io | noble-randomness-collective-flip |
lib.rs | noble-randomness-collective-flip |
version | 2.0.0 |
source | src |
created_at | 2021-04-04 07:03:25.08752 |
updated_at | 2021-04-04 07:03:25.08752 |
description | FABRIC randomness collective flip noble |
homepage | https://core.tetcoin.org |
repository | https://github.com/tetcoin/tetcore |
max_upload_size | |
id | 378668 |
size | 13,408 |
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 noble as a randomness source is advisable primarily in low-security
situations like testing.
See the Module
struct for details of publicly available functions.
Import the Randomness Collective Flip module and derive your module's configuration trait from the system trait.
use fabric_support::{decl_module, dispatch, traits::Randomness};
pub trait Config: fabric_system::Config {}
decl_module! {
pub struct Module<T: Config> for enum Call where origin: T::Origin {
#[weight = 0]
pub fn random_module_example(origin) -> dispatch::DispatchResult {
let _random_value = <noble_randomness_collective_flip::Module<T>>::random(&b"my context"[..]);
Ok(())
}
}
}
License: Apache-2.0