elrond-sdk-erdrs

Crates.ioelrond-sdk-erdrs
lib.rselrond-sdk-erdrs
version0.2.16
sourcesrc
created_at2021-10-13 18:37:17.309188
updated_at2023-12-29 03:25:55.775317
descriptionElrond Rust SDK for interacting with the Elrond Network and Smart Contracts.
homepagehttps://github.com/bicarus-labs/elrond-sdk-erdrs
repositoryhttps://github.com/bicarus-labs/elrond-sdk-erdrs
max_upload_size
id464604
size265,364
elrond (github:bicarus-labs:elrond)

documentation

https://docs.rs/elrond-sdk-erdrs

README

Elrond SDK for Rust

Crates.io

Example

use elrond_sdk_erdrs::blockchain::rpc::{ElrondProxy, DEVNET_GATEWAY};

#[tokio::test]
async fn get_network_config() {
    let blockchain = ElrondProxy::new(DEVNET_GATEWAY.to_string());
    let network_config = blockchain.get_network_config().await.unwrap();

    println!("network_config: {:?}", network_config)
}

More example in ./src/blockchain/tests.rs

Commit count: 32

cargo fmt