This is a set of Solana client utilities to ease communication through the Solana RPC API.
Add this to your Cargo.toml:
toml
[dependencies]
solana-client-helpers = "0.4"
Now you can use client helper like this:
```rust use solanaclient::rpcclient::RpcClient; use solanaclienthelpers::{Client, ClientResult, SplToken}; use solanasdk::{ commitmentconfig::CommitmentConfig, signature::{Keypair, Signer}, };
fn main() -> ClientResult<()> { let payer = Keypair::new(); let sender = Keypair::new(); let recipient = Keypair::new();
let client = RpcClient::new_with_commitment("http://localhost:8899".into(), CommitmentConfig::confirmed());
let client = Client { client, payer };
client.airdrop(&client.payer_pubkey(), 10_000_000_000)?;
assert_eq!(client.get_balance(&client.payer_pubkey())?, 10_000_000_000);
let token_mint = client.create_token_mint(&sender.pubkey(), 2)?;
let sender_token_account = client.create_associated_token_account_by_payer(&sender.pubkey(), &token_mint.pubkey())?;
client.mint_to(&sender, &token_mint.pubkey(), &sender_token_account, 1000, 2)?;
let balance = client.get_token_account_balance(&sender_token_account)?;
assert_eq!(balance.ui_amount, Some(10.00));
Ok(()) } ```