dharithri-sdk

Crates.iodharithri-sdk
lib.rsdharithri-sdk
version0.2.0
sourcesrc
created_at2023-09-14 05:46:59.866328
updated_at2023-09-14 05:46:59.866328
descriptionSDK for interacting with the dharithri blockchain
homepagehttps://dharithri.com/
repositoryhttps://github.com/dharithri/mx-sdk-rs
max_upload_size
id972292
size298,108
(Battula-anil-app-could)

documentation

https://docs.dharithri.com/

README

dharithri SDK for Rust

Crates.io

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

Example

use dharithri_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.

Acknowledgements

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

Commit count: 0

cargo fmt