1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
use anchor_lang::{prelude::Clock, AccountDeserialize};
use solana_client::{client_error, rpc_client::RpcClient, rpc_config::RpcSendTransactionConfig};
use solana_sdk::{
commitment_config::CommitmentConfig,
hash::Hash,
instruction::Instruction,
program_error::ProgramError,
pubkey::Pubkey,
signature::{Keypair, Signature, Signer},
signers::Signers,
transaction::Transaction,
};
use std::{
fmt::Debug,
ops::{Deref, DerefMut},
str::FromStr,
};
use thiserror::Error;
#[derive(Debug, Error)]
pub enum ClientError {
#[error(transparent)]
Client(#[from] client_error::ClientError),
#[error(transparent)]
Program(#[from] ProgramError),
#[error("Failed to deserialize account data")]
DeserializationError,
}
pub type ClientResult<T> = Result<T, ClientError>;
pub struct Client {
pub client: RpcClient,
pub payer: Keypair,
}
impl Client {
pub fn new(payer: Keypair, url: String) -> Self {
let client = RpcClient::new_with_commitment::<String>(url, CommitmentConfig::confirmed());
Self { client, payer }
}
pub fn get<T: AccountDeserialize>(&self, pubkey: &Pubkey) -> ClientResult<T> {
let data = self.client.get_account_data(pubkey)?;
Ok(T::try_deserialize(&mut data.as_slice())
.map_err(|_| ClientError::DeserializationError)?)
}
pub fn get_clock(&self) -> ClientResult<Clock> {
let clock_pubkey = Pubkey::from_str("SysvarC1ock11111111111111111111111111111111").unwrap();
let clock_data = self.client.get_account_data(&clock_pubkey)?;
Ok(bincode::deserialize::<Clock>(&clock_data)
.map_err(|_| ClientError::DeserializationError)?)
}
pub fn payer(&self) -> &Keypair {
&self.payer
}
pub fn payer_pubkey(&self) -> Pubkey {
self.payer.pubkey()
}
pub fn latest_blockhash(&self) -> ClientResult<Hash> {
Ok(self.client.get_latest_blockhash()?)
}
pub fn airdrop(&self, to_pubkey: &Pubkey, lamports: u64) -> ClientResult<Signature> {
let blockhash = self.client.get_latest_blockhash()?;
let signature = self.request_airdrop_with_blockhash(to_pubkey, lamports, &blockhash)?;
self.confirm_transaction_with_spinner(&signature, &blockhash, self.commitment())?;
Ok(signature)
}
pub fn send<T: Signers>(&self, ixs: &[Instruction], signers: &T) -> ClientResult<Signature> {
let mut tx = Transaction::new_with_payer(ixs, Some(&self.payer_pubkey()));
tx.sign(signers, self.latest_blockhash()?);
Ok(self.send_transaction(&tx)?)
}
pub fn send_with_config<T: Signers>(
&self,
ixs: &[Instruction],
signers: &T,
config: RpcSendTransactionConfig,
) -> ClientResult<Signature> {
let mut tx = Transaction::new_with_payer(ixs, Some(&self.payer_pubkey()));
tx.sign(signers, self.latest_blockhash()?);
Ok(self.client.send_transaction_with_config(&tx, config)?)
}
pub fn send_and_confirm<T: Signers>(
&self,
ixs: &[Instruction],
signers: &T,
) -> ClientResult<Signature> {
let mut tx = Transaction::new_with_payer(ixs, Some(&self.payer_pubkey()));
tx.sign(signers, self.latest_blockhash()?);
Ok(self.send_and_confirm_transaction(&tx)?)
}
}
impl Debug for Client {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "RPC client payer {}", self.payer_pubkey())
}
}
impl Deref for Client {
type Target = RpcClient;
fn deref(&self) -> &Self::Target {
&self.client
}
}
impl DerefMut for Client {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.client
}
}