bitcoin-rpc

Crates.iobitcoin-rpc
lib.rsbitcoin-rpc
version0.2.0
sourcesrc
created_at2016-04-17 03:39:59.991646
updated_at2018-08-09 07:08:05.8292
descriptionBitcoin JSON-RPC client.
homepagehttps://github.com/jeandudey/rust-bitcoin-rpc
repositoryhttps://github.com/jeandudey/rust-bitcoin-rpc
max_upload_size
id4769
size33,060
Steven Roose (stevenroose)

documentation

https://docs.rs/bitcoin-rpc

README

Build Status License Crates.io Version Docs.rs
Documentation

Bitcoin RPC

Bitcoin JSON-RPC client implementation in Rust.

This crate is not yet very stable, be careful.

Overview

bitcoin-rpc is a fast, safe JSON-RPC 2.0 client written in Rust.

bitcoin-rpc offers secure bitcoin money handling, using strason.

Be aware that this crate is not a complete implementation of all bitcoin JSON-RPC methods available. This is due to the large effort needed to implement all methods. If you need a method implemented feel free to open an issue or send a Pull Request.

Usage

Add the dependency to your Cargo.toml:

[dependencies]
bitcoin-rpc = { git = "https://github.com/jeandudey/rust-bitcoin-rpc" }

And this to your crate root:

extern crate bitcoin_rpc;
Commit count: 55

cargo fmt