This crate implements an Bitcoin RPC client in rust, this cate doesn't intends to be a complete implementation of all the bitcoin rpc methods so if you need some method you can create a pull request for it.
I don't have tested it for other cryptocurrencies, only bitcoin was tested.
Add this to your Cargo.toml
:
toml
[dependencies]
bitcoin-rpc = "0.1"
And this to your crate root:
rust
extern crate bitcoin_rpc;
```rust extern crate bitcoinrpc;
use bitcoinrpc::BitcoinRpc;
fn main() { let client = BitcoinRpc::new("example.org:8331", None, None);
let block_count = match client.getblockcount() {
Ok(b) => b,
Err(e) => panic!("error: {}", e);
}
println!("Block count: {}", block_count);
} ```
``` Rust Bitcoin RPC API client. Copyright (C) 2016 Jean Pierre De Jesus Dudey Diaz
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
```