17 releases (7 breaking)

Uses new Rust 2024

0.14.1 Jan 13, 2026
0.14.0 Dec 18, 2025
0.13.0 Nov 17, 2025
0.11.1 Jul 24, 2025
0.7.1 Nov 15, 2024

#16 in #multiversx

Download history 240/week @ 2025-10-12 307/week @ 2025-10-19 355/week @ 2025-10-26 185/week @ 2025-11-02 160/week @ 2025-11-09 158/week @ 2025-11-16 155/week @ 2025-11-23 126/week @ 2025-11-30 246/week @ 2025-12-07 110/week @ 2025-12-14 20/week @ 2025-12-21 15/week @ 2025-12-28 51/week @ 2026-01-04 68/week @ 2026-01-11 34/week @ 2026-01-18 11/week @ 2026-01-25

164 downloads per month
Used in 8 crates (via multiversx-sc-snippets)

MIT and GPL-3.0-only

315KB
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–30MB
~409K SLoC