7 stable releases

new 1.16.0 Jun 23, 2025
1.15.10 Jun 23, 2025
1.0.1 Jan 20, 2025

#17 in #dharitri

Download history 3/week @ 2025-02-24 5/week @ 2025-03-03 1/week @ 2025-03-10 2/week @ 2025-05-05 8/week @ 2025-05-12

87 downloads per month

MIT and GPL-3.0-only

305KB
7.5K SLoC

Dharitri SDK for Rust

Crates.io

General purpose collection of tools & SDKs to interact with the Dharitri blockchain from Rust projects.

Example

use dharitri_sdk::blockchain::rpc::{CommunicationProxy, DEVNET_GATEWAY};

#[tokio::test]
async fn get_network_config() {
    let blockchain = CommunicationProxy::new(DEVNET_GATEWAY.to_string());
    let network_config = blockchain.get_network_config().await.unwrap();

    println!("network_config: {:?}", network_config)
}

More examples in ./examples.

Dependencies

~12–27MB
~416K SLoC