Request information from the Bitcoin Blockchain
This library provides helpful functions to get information from the Bitcoin Blockhain
⚠️ This is experimental. Please use at your own risk.⚠️
This library relies on querying both a bitcoin full node and an electrs server so you must have both installed and setup to accept incomming rpc commands.
Add package to Cargo.toml file
rust [dependencies] bitcoin-blockchain-query = "0.1.3"
```rust use bitcoinblockchainquery::getalltransactionsforaddress; use bitcoindrequest::{self, client::Client as BitcoindRequestClient}; use electrsquery::{self, Client as ElectrsClient};
fn main() { let password = env::var("BITCOINDPASSWORD").expect("BITCOINDPASSWORD env variable not set"); let username = env::var("BITCOINDUSERNAME").expect("BITCOINDUSERNAME env variable not set"); let bitcoindurl = env::var("BITCOINDURL").expect("BITCOINDURL env variable not set"); let electrsurl = env::var("ELECTRSURL").expect("ELECTRSURL env variable not set");
// Connect to bitcoin full node
let bitcoind_request_client =
BitcoindRequestClient::new(&bitcoind_url, &username, &password).unwrap();
// Connect to electrs server
let electrs_client = ElectrsClient::new(&electrs_url);
let transactions = get_all_transactions_for_address(
"mtveoXKcb1EjpspMmhPAJ6RkGeewbzWYDd",
&electrs_client,
&bitcoind_request_client,
);
println!("{:#?}", transactions)
} ```
Find a list of all the functions available in the documentation
MIT © Joe Gesualdo