cory-core 0.1.2

Core domain logic for Cory: Bitcoin RPC adapter, ancestry graph builder, labels, and caching.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Native JSON-RPC client for Bitcoin Core compatible endpoints.
//!
//! Implements [`BitcoinRpc`] over JSON-RPC using `reqwest`, with support for
//! HTTP transport, optional request rate limiting, single and batched calls,
//! basic auth, and an LRU block-height cache.

mod client;
mod connection;
mod parsing;
mod protocol;

pub use client::HttpRpcClient;