| Crates.io | dharitri-sdk-http |
| lib.rs | dharitri-sdk-http |
| version | 1.19.0 |
| created_at | 2025-01-20 05:39:44.318041+00 |
| updated_at | 2025-07-07 11:56:10.998708+00 |
| description | SDK for interacting with the Dharitri blockchain |
| homepage | https://dharitri.org/ |
| repository | https://github.com/TerraDharitri/drt-rs-sdk |
| max_upload_size | |
| id | 1523595 |
| size | 80,663 |
General purpose collection of tools & SDKs to interact with the Dharitri blockchain from Rust projects.
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.