multiversx-sdk-http

Crates.iomultiversx-sdk-http
lib.rsmultiversx-sdk-http
version0.7.0
sourcesrc
created_at2024-11-06 17:37:18.195586
updated_at2024-11-06 17:37:18.195586
descriptionSDK for interacting with the MultiversX blockchain
homepagehttps://multiversx.com/
repositoryhttps://github.com/multiversx/mx-sdk-rs
max_upload_size
id1438613
size74,933
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.

Commit count: 9036

cargo fmt