3 unstable releases

new 0.8.0 Jan 8, 2025
0.7.1 Nov 15, 2024
0.7.0 Nov 6, 2024

#115 in Magic Beans

Download history 205/week @ 2024-11-03 353/week @ 2024-11-10 302/week @ 2024-11-17 284/week @ 2024-11-24 221/week @ 2024-12-01 189/week @ 2024-12-08 107/week @ 2024-12-15 77/week @ 2024-12-22 52/week @ 2024-12-29 437/week @ 2025-01-05

676 downloads per month
Used in multiversx-sc-snippets

MIT and GPL-3.0-only

310KB
7.5K SLoC

MultiversX SDK for Rust

Crates.io

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
~387K SLoC