klever-vm-sdk

Crates.ioklever-vm-sdk
lib.rsklever-vm-sdk
version0.2.0
sourcesrc
created_at2024-03-29 00:21:28.457032
updated_at2024-03-29 00:21:28.457032
descriptionSDK for interacting with the Klever blockchain
homepagehttps://klever.io/
repositoryhttps://github.com/klever-io/klever-vm-sdk-rs
max_upload_size
id1189530
size240,384
Fernando Sobreira (fbsobreira)

documentation

https://docs.klever.finance/

README

Klever SDK for Rust

Crates.io

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

Example

use klever_vm_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.

Acknowledgements

Project originally started by Bicarus labs, later integrated into the Klever official codebase.

Commit count: 6656

cargo fmt