7 releases

new 0.3.1 Apr 25, 2024
0.3.0 Feb 28, 2024
0.2.0 Aug 24, 2023
0.1.3 Jul 24, 2023
0.1.1 Dec 30, 2019

#1845 in Magic Beans

Download history 4/week @ 2024-02-19 186/week @ 2024-02-26 40/week @ 2024-03-04 36/week @ 2024-03-11 34/week @ 2024-03-18 5/week @ 2024-03-25 70/week @ 2024-04-01 90/week @ 2024-04-08 89/week @ 2024-04-15

255 downloads per month

Apache-2.0

40KB
501 lines

Build Crates.io

Nimiq Rust Client

Rust implementation of the Nimiq RPC client specs.

About

A Nimiq RPC client library in Rust. This client library implements the Nimiq RPC specification. The client uses the jsonrpsee library to handle JSON-RPC 2.0 requests and responses. For more information about this library see the jsonrpsee HTTP client documentation.

Usage

use nimiq_rpc::Client;

#[tokio::main]
async fn main() {
	let client = Client::new("http://seed-host.com:8648/".to_string());
	// If your node uses credentials
	let client = Client::new_with_credentials("http://seed-host.com:8648/".to_string(), "user".to_string(), "password".to_string());
	
	println!("{:?}", client.accounts().await.unwrap());
	println!("{:?}", client.block_number().await.unwrap());
	println!("{:?}", client.hashrate().await.unwrap());
	println!("{:?}", client.log("*", "log").await.unwrap());
}

Documentation

Docs.rs link to the official crate documentation. And check out the Nimiq RPC specs for details.

Installation

Add the crate to your Cargo.toml file.

Contributions

This implementation was originally contributed by Eligioo.

Please send your contributions as pull requests. Refer to the issue tracker for ideas.

License

Apache 2.0

Dependencies

~9–20MB
~293K SLoC