5个版本 (2个稳定版)
1.1.0 | 2022年1月24日 |
---|---|
1.0.0 | 2021年6月23日 |
0.6.0 | 2021年6月17日 |
0.5.0 | 2021年6月15日 |
0.4.0 | 2021年6月6日 |
#85 in #rpc-client
被 4 crates 使用
25KB
545 代码行
solana-client-helpers
这是一个Solana客户端工具集,用于通过Solana RPC API简化通信。
用法
将此添加到您的Cargo.toml中
[dependencies]
solana-client-helpers = "1.0"
现在您可以像这样使用客户端助手
use solana_client::rpc_client::RpcClient;
use solana_client_helpers::{Client, ClientResult, SplToken};
use solana_sdk::{
commitment_config::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("https://127.0.0.1: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())?;
let recipient_token_account = client.create_associated_token_account_by_payer(&recipient.pubkey(), &token_mint.pubkey())?;
client.mint_to(&sender, &token_mint.pubkey(), &sender_token_account, 1000, 2)?;
let sender_balance = client.get_token_account_balance(&sender_token_account)?;
assert_eq!(sender_balance.ui_amount, Some(10.00));
client.transfer_to(&sender, &token_mint.pubkey(), &sender_token_account, &recipient_token_account, 500, 2)?;
let sender_balance = client.get_token_account_balance(&sender_token_account)?;
assert_eq!(sender_balance.ui_amount, Some(5.00));
let recipient_balance = client.get_token_account_balance(&recipient_token_account)?;
assert_eq!(recipient_balance.ui_amount, Some(5.00));
Ok(())
}
依赖项
~73MB
~1.5M SLoC