Crate bitcoind_async_client

Crate bitcoind_async_client 

Source
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.

Re-exports§

pub use client::v29;
pub use client::*;

Modules§

client
error
Error types for the RPC client.
traits
types
Types that are not returned by the RPC server, but used as arguments/inputs of the RPC methods.