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