pub enum ThinClient {
Quic(ThinClient<QuicPool, QuicConnectionManager, QuicConfig>),
Udp(ThinClient<UdpPool, UdpConnectionManager, UdpConfig>),
}
Expand description
A thin wrapper over thin-client/ThinClient to ease construction of the ThinClient for code dealing both with udp and quic. For the scenario only using udp or quic, use thin-client/ThinClient directly.
Variants§
Quic(ThinClient<QuicPool, QuicConnectionManager, QuicConfig>)
Udp(ThinClient<UdpPool, UdpConnectionManager, UdpConfig>)
Implementations§
Source§impl ThinClient
impl ThinClient
Sourcepub fn new(
rpc_addr: SocketAddr,
tpu_addr: SocketAddr,
connection_cache: Arc<ConnectionCache>,
) -> Self
pub fn new( rpc_addr: SocketAddr, tpu_addr: SocketAddr, connection_cache: Arc<ConnectionCache>, ) -> Self
Create a new ThinClient that will interface with the Rpc at rpc_addr
using TCP
and the Tpu at tpu_addr
over transactions_socket
using Quic or UDP
(currently hardcoded to UDP)
pub fn new_socket_with_timeout( rpc_addr: SocketAddr, tpu_addr: SocketAddr, timeout: Duration, connection_cache: Arc<ConnectionCache>, ) -> Self
pub fn new_from_addrs( rpc_addrs: Vec<SocketAddr>, tpu_addrs: Vec<SocketAddr>, connection_cache: Arc<ConnectionCache>, ) -> Self
pub fn rpc_client(&self) -> &RpcClient
pub fn retry_transfer_until_confirmed( &self, keypair: &Keypair, transaction: &mut Transaction, tries: usize, min_confirmed_blocks: usize, ) -> TransportResult<Signature>
pub fn retry_transfer( &self, keypair: &Keypair, transaction: &mut Transaction, tries: usize, ) -> TransportResult<Signature>
pub fn send_and_confirm_transaction<T: Signers + ?Sized>( &self, keypairs: &T, transaction: &mut Transaction, tries: usize, pending_confirmations: usize, ) -> TransportResult<Signature>
pub fn poll_get_balance(&self, pubkey: &Pubkey) -> TransportResult<u64>
pub fn poll_get_balance_with_commitment( &self, pubkey: &Pubkey, commitment_config: CommitmentConfig, ) -> TransportResult<u64>
pub fn wait_for_balance( &self, pubkey: &Pubkey, expected_balance: Option<u64>, ) -> Option<u64>
pub fn get_program_accounts_with_config( &self, pubkey: &Pubkey, config: RpcProgramAccountsConfig, ) -> TransportResult<Vec<(Pubkey, Account)>>
pub fn wait_for_balance_with_commitment( &self, pubkey: &Pubkey, expected_balance: Option<u64>, commitment_config: CommitmentConfig, ) -> Option<u64>
pub fn poll_for_signature_with_commitment( &self, signature: &Signature, commitment_config: CommitmentConfig, ) -> TransportResult<()>
pub fn get_num_blocks_since_signature_confirmation( &mut self, sig: &Signature, ) -> TransportResult<usize>
Trait Implementations§
Source§impl AsyncClient for ThinClient
impl AsyncClient for ThinClient
Source§fn async_send_versioned_transaction(
&self,
transaction: VersionedTransaction,
) -> TransportResult<Signature>
fn async_send_versioned_transaction( &self, transaction: VersionedTransaction, ) -> TransportResult<Signature>
Send a signed versioned transaction, but don’t wait to see if the server accepted it.
Source§fn async_send_versioned_transaction_batch(
&self,
batch: Vec<VersionedTransaction>,
) -> TransportResult<()>
fn async_send_versioned_transaction_batch( &self, batch: Vec<VersionedTransaction>, ) -> TransportResult<()>
Send a batch of signed versioned transactions without confirmation.
Source§fn async_send_transaction(
&self,
transaction: Transaction,
) -> Result<Signature, TransportError>
fn async_send_transaction( &self, transaction: Transaction, ) -> Result<Signature, TransportError>
Send a signed transaction, but don’t wait to see if the server accepted it.
Source§fn async_send_batch(
&self,
transactions: Vec<Transaction>,
) -> Result<(), TransportError>
fn async_send_batch( &self, transactions: Vec<Transaction>, ) -> Result<(), TransportError>
Send a batch of signed transactions without confirmation.
Source§fn async_send_message<T>(
&self,
keypairs: &T,
message: Message,
recent_blockhash: Hash,
) -> Result<Signature, TransportError>
fn async_send_message<T>( &self, keypairs: &T, message: Message, recent_blockhash: Hash, ) -> Result<Signature, TransportError>
Create a transaction from the given message, and send it to the
server, but don’t wait for to see if the server accepted it.
Source§fn async_send_instruction(
&self,
keypair: &Keypair,
instruction: Instruction,
recent_blockhash: Hash,
) -> Result<Signature, TransportError>
fn async_send_instruction( &self, keypair: &Keypair, instruction: Instruction, recent_blockhash: Hash, ) -> Result<Signature, TransportError>
Create a transaction from a single instruction that only requires
a single signer. Then send it to the server, but don’t wait for a reply.
Source§fn async_transfer(
&self,
lamports: u64,
keypair: &Keypair,
pubkey: &Pubkey,
recent_blockhash: Hash,
) -> Result<Signature, TransportError>
fn async_transfer( &self, lamports: u64, keypair: &Keypair, pubkey: &Pubkey, recent_blockhash: Hash, ) -> Result<Signature, TransportError>
Attempt to transfer lamports from
keypair
to pubkey
, but don’t wait to confirm.Source§impl SyncClient for ThinClient
impl SyncClient for ThinClient
Source§fn send_and_confirm_message<T: Signers + ?Sized>(
&self,
keypairs: &T,
message: Message,
) -> TransportResult<Signature>
fn send_and_confirm_message<T: Signers + ?Sized>( &self, keypairs: &T, message: Message, ) -> TransportResult<Signature>
Create a transaction from the given message, and send it to the
server, retrying as-needed.
Source§fn send_and_confirm_instruction(
&self,
keypair: &Keypair,
instruction: Instruction,
) -> TransportResult<Signature>
fn send_and_confirm_instruction( &self, keypair: &Keypair, instruction: Instruction, ) -> TransportResult<Signature>
Create a transaction from a single instruction that only requires
a single signer. Then send it to the server, retrying as-needed.
Source§fn transfer_and_confirm(
&self,
lamports: u64,
keypair: &Keypair,
pubkey: &Pubkey,
) -> TransportResult<Signature>
fn transfer_and_confirm( &self, lamports: u64, keypair: &Keypair, pubkey: &Pubkey, ) -> TransportResult<Signature>
Transfer lamports from
keypair
to pubkey
, retrying until the
transfer completes or produces and error.Source§fn get_account_data(&self, pubkey: &Pubkey) -> TransportResult<Option<Vec<u8>>>
fn get_account_data(&self, pubkey: &Pubkey) -> TransportResult<Option<Vec<u8>>>
Get an account or None if not found.
Source§fn get_account(&self, pubkey: &Pubkey) -> TransportResult<Option<Account>>
fn get_account(&self, pubkey: &Pubkey) -> TransportResult<Option<Account>>
Get an account or None if not found.
Source§fn get_account_with_commitment(
&self,
pubkey: &Pubkey,
commitment_config: CommitmentConfig,
) -> TransportResult<Option<Account>>
fn get_account_with_commitment( &self, pubkey: &Pubkey, commitment_config: CommitmentConfig, ) -> TransportResult<Option<Account>>
Get an account or None if not found. Uses explicit commitment configuration.
Source§fn get_balance(&self, pubkey: &Pubkey) -> TransportResult<u64>
fn get_balance(&self, pubkey: &Pubkey) -> TransportResult<u64>
Get account balance or 0 if not found.
Source§fn get_balance_with_commitment(
&self,
pubkey: &Pubkey,
commitment_config: CommitmentConfig,
) -> TransportResult<u64>
fn get_balance_with_commitment( &self, pubkey: &Pubkey, commitment_config: CommitmentConfig, ) -> TransportResult<u64>
Get account balance or 0 if not found. Uses explicit commitment configuration.
fn get_minimum_balance_for_rent_exemption( &self, data_len: usize, ) -> TransportResult<u64>
Source§fn get_signature_status(
&self,
signature: &Signature,
) -> TransportResult<Option<Result<()>>>
fn get_signature_status( &self, signature: &Signature, ) -> TransportResult<Option<Result<()>>>
Get signature status.
Source§fn get_signature_status_with_commitment(
&self,
signature: &Signature,
commitment_config: CommitmentConfig,
) -> TransportResult<Option<Result<()>>>
fn get_signature_status_with_commitment( &self, signature: &Signature, commitment_config: CommitmentConfig, ) -> TransportResult<Option<Result<()>>>
Get signature status. Uses explicit commitment configuration.
Source§fn get_slot(&self) -> TransportResult<u64>
fn get_slot(&self) -> TransportResult<u64>
Get last known slot
Source§fn get_slot_with_commitment(
&self,
commitment_config: CommitmentConfig,
) -> TransportResult<u64>
fn get_slot_with_commitment( &self, commitment_config: CommitmentConfig, ) -> TransportResult<u64>
Get last known slot. Uses explicit commitment configuration.
fn get_epoch_info(&self) -> TransportResult<EpochInfo>
Source§fn get_transaction_count(&self) -> TransportResult<u64>
fn get_transaction_count(&self) -> TransportResult<u64>
Get transaction count
Source§fn get_transaction_count_with_commitment(
&self,
commitment_config: CommitmentConfig,
) -> TransportResult<u64>
fn get_transaction_count_with_commitment( &self, commitment_config: CommitmentConfig, ) -> TransportResult<u64>
Get transaction count. Uses explicit commitment configuration.
Source§fn poll_for_signature_confirmation(
&self,
signature: &Signature,
min_confirmed_blocks: usize,
) -> TransportResult<usize>
fn poll_for_signature_confirmation( &self, signature: &Signature, min_confirmed_blocks: usize, ) -> TransportResult<usize>
Poll until the signature has been confirmed by at least
min_confirmed_blocks
Source§fn poll_for_signature(&self, signature: &Signature) -> TransportResult<()>
fn poll_for_signature(&self, signature: &Signature) -> TransportResult<()>
Poll to confirm a transaction.
Source§fn get_latest_blockhash(&self) -> TransportResult<Hash>
fn get_latest_blockhash(&self) -> TransportResult<Hash>
Get last known blockhash
Source§fn get_latest_blockhash_with_commitment(
&self,
commitment_config: CommitmentConfig,
) -> TransportResult<(Hash, u64)>
fn get_latest_blockhash_with_commitment( &self, commitment_config: CommitmentConfig, ) -> TransportResult<(Hash, u64)>
Get latest blockhash with last valid block height. Uses explicit commitment configuration.
Source§fn is_blockhash_valid(
&self,
blockhash: &Hash,
commitment_config: CommitmentConfig,
) -> TransportResult<bool>
fn is_blockhash_valid( &self, blockhash: &Hash, commitment_config: CommitmentConfig, ) -> TransportResult<bool>
Check if the blockhash is valid
Source§fn get_fee_for_message(&self, message: &Message) -> TransportResult<u64>
fn get_fee_for_message(&self, message: &Message) -> TransportResult<u64>
Calculate the fee for a
Message
Auto Trait Implementations§
impl !Freeze for ThinClient
impl !RefUnwindSafe for ThinClient
impl Send for ThinClient
impl Sync for ThinClient
impl Unpin for ThinClient
impl !UnwindSafe for ThinClient
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more