bdk_bitcoind_client 0.1.0

A minimal `bitcoind` RPC client custom built for BDK
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-License-Identifier: MIT OR Apache-2.0

//! Bitcoin Core RPC client library.
//!
//! This crate provides a Rust client for interacting with Bitcoin Core's JSON-RPC interface.
//! It supports multiple authentication methods and provides a type-safe interface for
//! making RPC calls to a Bitcoin Core daemon.

mod client;
mod error;

pub use client::{Auth, Client};
pub use error::{Error, Result};

pub use jsonrpc;
// Re-export corepc_types
pub use corepc_types;