5 releases

0.8.2 Feb 6, 2025
0.8.1 Jan 23, 2025
0.8.0 Jan 8, 2025
0.7.1 Nov 15, 2024
0.7.0 Nov 6, 2024

#15 in #multiversx

Download history 365/week @ 2024-11-15 299/week @ 2024-11-22 252/week @ 2024-11-29 175/week @ 2024-12-06 128/week @ 2024-12-13 66/week @ 2024-12-20 56/week @ 2024-12-27 312/week @ 2025-01-03 327/week @ 2025-01-10 291/week @ 2025-01-17 262/week @ 2025-01-24 270/week @ 2025-01-31 256/week @ 2025-02-07 202/week @ 2025-02-14 249/week @ 2025-02-21 290/week @ 2025-02-28

1,088 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

~13–27MB
~436K SLoC