dharitri-sdk-http 1.17.2

SDK for interacting with the DharitrI blockchain
docs.rs failed to build dharitri-sdk-http-1.17.2
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: dharitri-sdk-http-1.19.0

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.