10 个不稳定版本 (4 个破坏性更新)
0.5.0 | 2024年7月6日 |
---|---|
0.4.1 | 2024年5月10日 |
0.4.0-alpha.4 | 2024年4月23日 |
0.3.2 | 2024年2月6日 |
0.1.1 | 2023年1月18日 |
#2 in #multiversx
2,080 每月下载量
用于 8 个 crate (5 个直接使用)
255KB
6.5K SLoC
MultiversX SDK for Rust
用于从 Rust 项目与 MultiversX 区块链交互的通用工具和 SDK 集合。
示例
use multiversx_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 开发,后来集成到 MultiversX 官方代码库中。
依赖项
~10–21MB
~322K SLoC