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

#885 in Magic Beans

Download history 192/week @ 2024-11-02 333/week @ 2024-11-09 319/week @ 2024-11-16 286/week @ 2024-11-23 226/week @ 2024-11-30 195/week @ 2024-12-07 106/week @ 2024-12-14 78/week @ 2024-12-21 48/week @ 2024-12-28 451/week @ 2025-01-04 186/week @ 2025-01-11 304/week @ 2025-01-18 323/week @ 2025-01-25 266/week @ 2025-02-01 163/week @ 2025-02-08

1,077 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–26MB
~418K SLoC