| Crates.io | bitcoind-async-client |
| lib.rs | bitcoind-async-client |
| version | 0.5.0 |
| created_at | 2025-04-30 19:12:25.088718+00 |
| updated_at | 2025-08-20 17:37:08.413551+00 |
| description | BitcoinD JSON-RPC Async Client |
| homepage | |
| repository | https://github.com/alpenlabs/bitcoind-async-client |
| max_upload_size | |
| id | 1655357 |
| size | 210,812 |
reqwest28.0 and above// NOTE: in production code, don't glob all trait imports.
use bitcoind_async_client::{Client, traits::* };
let client = Client::new("http://localhost:8332", "username", "password", None, None).await?;
let blockchain_info = client.get_blockchain_info().await?;
Contributions are generally welcome. If you intend to make larger changes please discuss them in an issue before opening a PR to avoid duplicate work and architectural mismatches.
For more information please see CONTRIBUTING.md.
This work is dual-licensed under MIT and Apache 2.0. You can choose between one of them if you use this work.