reqbit 0.1.3

A bitcore core RPC API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub use reqbit::{decorator, IMining, ReqBit};

#[tokio::main]
async fn main() {
	let reqbit = ReqBit;

	// let info = reqbit.get_block_template("segwit").await;
	// let info = reqbit.get_mining_info().await;
	let info = reqbit.getnetworkhashps(None, None).await;

	decorator::breautify(&info);
}