klever-vm-sdk

Crates.ioklever-vm-sdk
lib.rsklever-vm-sdk
version0.2.1
created_at2024-03-29 00:21:28.457032+00
updated_at2025-04-10 21:37:32.224608+00
descriptionSDK for interacting with the Klever blockchain
homepagehttps://klever.io/
repositoryhttps://github.com/klever-io/klever-vm-sdk-rs
max_upload_size
id1189530
size287,712
Fernando Sobreira (fbsobreira)

documentation

https://docs.klever.org/

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: 6769

cargo fmt