reqbit 0.1.3

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

#[tokio::main]
async fn main() {
	let reqbit = ReqBit;
	let info = reqbit
		.getblock("600ffdab0fff1d7a7314e86197adc0149b67a5d79bd71dd88458710d3d5d0c71", None)
		.await;

	decorator::breautify(&info);
}