Expand description
BitcoinD JSON-RPC Async Client
§Features
29_0
: Enable support for Bitcoin Core v29
§Usage
ⓘ
use bitcoind_async_client::Client;
let client = Client::new("http://localhost:8332".to_string(), "username".to_string(), "password".to_string(), None, None).await?;
let blockchain_info = client.get_blockchain_info().await?;
§License
This work is dual-licensed under MIT and Apache 2.0. You can choose between one of them if you use this work.