1 个不稳定版本

新增 0.0.1 2024年8月27日

#30#dharitri 排名

MIT 许可证

265KB
6.5K SLoC

DharitriOne Rust SDK

Crates.io

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

示例

use drt_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 开始,后来集成到 DharitriOne 官方代码库中。

依赖项

~10–21MB
~319K SLoC