2 releases
new 0.7.1 | Nov 15, 2024 |
---|---|
0.7.0 | Nov 6, 2024 |
#45 in Magic Beans
574 downloads per month
Used in multiversx-sc-snippets
305KB
7.5K
SLoC
MultiversX SDK for Rust
General purpose collection of tools & SDKs to interact with the MultiversX blockchain from Rust projects.
Example
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)
}
More examples in ./examples
.
Dependencies
~11–25MB
~380K SLoC