2 releases

new 0.2.1 Apr 10, 2025
0.2.0 Mar 29, 2024

#222 in Magic Beans

Download history 3/week @ 2025-02-15 2/week @ 2025-03-15 1/week @ 2025-03-22 102/week @ 2025-04-05

105 downloads per month
Used in klever-sc-scenario

MIT license

240KB
6K SLoC

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.

Dependencies

~11–23MB
~322K SLoC