multiversx-sdk

Crates.iomultiversx-sdk
lib.rsmultiversx-sdk
version0.5.0
sourcesrc
created_at2023-01-12 13:26:29.241304
updated_at2024-07-06 13:48:22.304548
descriptionSDK for interacting with the MultiversX blockchain
homepagehttps://multiversx.com/
repositoryhttps://github.com/multiversx/mx-sdk-rs
max_upload_size
id757125
size306,193
Andrei Marinica (andrei-marinica)

documentation

https://docs.multiversx.com/

README

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.

Acknowledgements

Project originally started by Bicarus labs, later integrated into the MultiversX official codebase.

Commit count: 8481

cargo fmt