dharitri-sdk-http

Crates.iodharitri-sdk-http
lib.rsdharitri-sdk-http
version1.19.0
created_at2025-01-20 05:39:44.318041+00
updated_at2025-07-07 11:56:10.998708+00
descriptionSDK for interacting with the Dharitri blockchain
homepagehttps://dharitri.org/
repositoryhttps://github.com/TerraDharitri/drt-rs-sdk
max_upload_size
id1523595
size80,663
(mangonui)

documentation

https://docs.dharitri.org/

README

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.

Commit count: 28

cargo fmt