Crates.io | bitcoin-node-query |
lib.rs | bitcoin-node-query |
version | 0.1.9 |
source | src |
created_at | 2022-08-09 20:14:12.861845 |
updated_at | 2022-10-10 14:04:07.803112 |
description | Query your bitcoin node |
homepage | |
repository | |
max_upload_size | |
id | 641989 |
size | 62,810 |
☠️⚠️ Work In Progress ⚠️☠️
Request information from a Bitcoin node
This library provides helpful functions to query common information about the bitcoin network.
Add package to Cargo.toml file
[dependencies]
bitcoin-node-query = "0.1.9"
use bitcoin_node_query::{
Client,
get_block_height,
get_time_since_last_block_in_seconds,
get_average_block_time_for_last_2016_blocks
}
// Create a Client.
let bitcoind_password: &str = ...
let bitcoind_username: &str = ...
let bitcoind_url = "127.0.0.1:8332"
let client = Client::new(
&bitcoind_url,
&bitcoind_username,
&bitcoind_password
).expect("failed to create client");
// get block height
let block_height = get_block_height(&client);
println!("Block height: {:#?}", block_height);
// Get how many seconds ago the last block was mined
let seconds_since_last_block = get_time_since_last_block_in_seconds(&client);
println!(
"Seconds since last block:",
format_duration(seconds_since_last_block)
);
// Get the average seconds it took for each of the last 2016 blocks to be mined
let average_seconds_per_block_last_2016_blocks =
get_average_block_time_for_last_2016_blocks(&client);
println!(
"Average block time for last 2016 blocks",
format_duration(average_seconds_per_block_last_2016_blocks as i64)
);
Find a list of all the functions available in the documentation
MIT © Joe Gesualdo