6 releases

new 0.9.0 Mar 11, 2025
0.8.2 Feb 6, 2025
0.8.1 Jan 23, 2025
0.7.1 Nov 15, 2024

#15 in #multiversx

Download history 308/week @ 2024-11-18 268/week @ 2024-11-25 225/week @ 2024-12-02 196/week @ 2024-12-09 95/week @ 2024-12-16 76/week @ 2024-12-23 56/week @ 2024-12-30 473/week @ 2025-01-06 172/week @ 2025-01-13 304/week @ 2025-01-20 325/week @ 2025-01-27 285/week @ 2025-02-03 173/week @ 2025-02-10 235/week @ 2025-02-17 280/week @ 2025-02-24 255/week @ 2025-03-03

956 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
~400K SLoC