Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bicarus-labs/elrond-sdk-erdrs
Elrond Rust SDK for interacting with the Elrond Network and Smart Contracts.
https://github.com/bicarus-labs/elrond-sdk-erdrs
Last synced: 3 months ago
JSON representation
Elrond Rust SDK for interacting with the Elrond Network and Smart Contracts.
- Host: GitHub
- URL: https://github.com/bicarus-labs/elrond-sdk-erdrs
- Owner: bicarus-labs
- Created: 2021-10-13T18:28:43.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-29T03:26:54.000Z (about 1 year ago)
- Last Synced: 2024-10-10T23:06:24.259Z (3 months ago)
- Language: Rust
- Homepage:
- Size: 117 KB
- Stars: 7
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-multiversx-dev-resources - Rust SDK - Elrond Rust SDK for interacting with the Elrond Network and Smart Contracts. (MultiversX community / SDKs and dev tools)
README
# Elrond SDK for Rust
[![Crates.io](https://img.shields.io/crates/v/elrond-sdk-erdrs)](https://crates.io/crates/elrond-sdk-erdrs)
## Example
```rust
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`