Crate bitcoincore_rpc
source ·Expand description
§Rust Client for Bitcoin Core API
This is a client library for the Bitcoin Core JSON-RPC API.
Re-exports§
pub extern crate bitcoincore_rpc_json;
pub extern crate jsonrpc;
pub use crate::json::bitcoin;
pub use bitcoincore_rpc_json as json;
Structs§
- Client implements a JSON-RPC client for the Bitcoin Core daemon or compatible APIs.
- Outpoint that serializes and deserializes as a map, instead of a string, for use as RPC arguments
Enums§
- The different authentication methods for the client.
- The error type for errors produced in this library.
Traits§
- A type that can be queried from Bitcoin Core.
- Used to pass raw txs into the API.
Type Aliases§
- Crate-specific Result type, shorthand for
std::result::Result
with our crate-specific Error type;