Non-blocking implementation of WASM compatible Solana Client.
You can use solana-client non-blocking API.
solana-sdk is exported from the lib so you don't need to add it to your dependencies.
```rust use solanaclientwasm::{ solana_sdk::signature::{Keypair, Signer}, WasmClient, };
// Create client let client = WasmClient::new("https://api.devnet.solana.com");
// Get a random pubkey let pubkey = Keypair::new().pubkey();
// Get balance let balance = client.get_balance(&pubkey).await?; // in lamports log::info!("Balance is {balance}"); // 0 ```