General purpose collection of tools & SDKs to interact with the dharithri blockchain from Rust projects.
```rust use dharithrisdk::blockchain::rpc::{CommunicationProxy, DEVNETGATEWAY};
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
.
Project originally started by Bicarus labs, later integrated into the dharithri official codebase.