31 lines
864 B
Rust
31 lines
864 B
Rust
use ethers::{
|
|
core::{rand::thread_rng, utils::Geth},
|
|
signers::LocalWallet,
|
|
};
|
|
use eyre::Result;
|
|
|
|
#[tokio::main]
|
|
/// Shows how to instantiate a Geth with Clique enabled.
|
|
async fn main() -> Result<()> {
|
|
// Generate a random clique signer and set it on Geth.
|
|
let data_dir = tempfile::tempdir().expect("should be able to create temp geth datadir");
|
|
let dir_path = data_dir.into_path();
|
|
println!("Using {}", dir_path.display());
|
|
|
|
// Create a random signer
|
|
let key = LocalWallet::new(&mut thread_rng());
|
|
|
|
let clique_key = key.signer().clone();
|
|
let _geth = Geth::new()
|
|
// set the signer
|
|
.set_clique_private_key(clique_key)
|
|
// must always set the chain id here
|
|
.chain_id(199u64)
|
|
// set the datadir to a temp dir
|
|
.data_dir(dir_path)
|
|
// spawn it
|
|
.spawn();
|
|
|
|
Ok(())
|
|
}
|