drand-core is a library to retrieve public randomness generated by drand beacons. It features an HTTP client, and verification method.
The format specification is at drand.love/docs/specification. drand was designed in Scalable Bias-Resistant Distributed Randomness.
The reference interroperable Go implementation is available at drand/drand.
| Environment | CLI Command |
|:-------------------|:---------------------------|
| Cargo (Rust 1.67+) | cargo install drand_core
|
The library is tested against the following targets: x86_64-unknown-linux-gnu
, armv7-unknown-linux-gnueabihf
, aarch64-unknown-linux-gnu
, wasm32-wasi
Retrieve the latest beacon from https://drand.cloudflare.com
.
```rust use drandcore::{chain, httpchain_client};
let chain = chain::Chain::new("https://drand.cloudflare.com");
let client = httpchainclient::HttpChainClient::new(chain, None);
let latest = client.latest().await?; ```
| ID | Remote | Timelock encryption |
| :--------------------|:------------------------------------------------------------------------------------------------|:--------------------|
| fastnet-cloudflare
| https://drand.cloudflare.com/dbd506d6ef76e5f386f41c651dcb808c5bcbd75471cc4eafa3f4df7ad4e4c493
| Yes |
| fastnet-pl
| https://api.drand.sh/dbd506d6ef76e5f386f41c651dcb808c5bcbd75471cc4eafa3f4df7ad4e4c493
| Yes |
| mainnet-cloudflare
| https://drand.cloudflare.com
| No |
| mainnet-pl
| https://api.drand.sh
| No |
drand_core
does not come with a default remote beacon. You should decide whichever suit your needs.
More beacon origins are available on drand website.
This library has not been audited. Please use at your sole discretion.
This project is under the MIT license.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you shall be MIT licensed as above, without any additional terms or conditions.