multiversx-sdk-http 0.8.0

SDK for interacting with the MultiversX blockchain
Documentation
# MultiversX SDK for Rust

[![Crates.io](https://img.shields.io/crates/v/multiversx-sdk)](https://crates.io/crates/multiversx-sdk)

General purpose collection of tools & SDKs to interact with the MultiversX blockchain from Rust projects.

## Example

```rust
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`.