dharithri SDK for Rust

Crates.io

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

Example

```rust use dharithrisdk::blockchain::rpc::{CommunicationProxy, DEVNETGATEWAY};

[tokio::test]

async fn getnetworkconfig() { let blockchain = CommunicationProxy::new(DEVNETGATEWAY.tostring()); let networkconfig = blockchain.getnetwork_config().await.unwrap();

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

} ```

More examples in ./examples.

Acknowledgements

Project originally started by Bicarus labs, later integrated into the dharithri official codebase.