1个不稳定版本

0.2.0 2023年9月14日

#10 in #dharithri


4 个crate中使用 (直接使用2个)

MIT 许可证

250KB
6K SLoC

dharrithri SDK for Rust

Crates.io

用于从Rust项目交互dharrithri区块链的通用工具和SDK集合。

示例

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)
}

更多示例在 ./examples

致谢

项目最初由 Bicarus labs 开发,后来集成到dharrithri官方代码库中。

依赖项

~10–22MB
~332K SLoC