Skip to content

Elrond Rust SDK for interacting with the Elrond Network and Smart Contracts.

Notifications You must be signed in to change notification settings

bicarus-labs/elrond-sdk-erdrs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Elrond Rust SDK for interacting with the Elrond Network and Smart Contracts.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages