Struct solana_banks_client::TarpcClient
source · pub struct TarpcClient(_);
Expand description
The client stub that makes RPC calls to the server. All request methods return Futures.
Implementations§
source§impl BanksClient
impl BanksClient
sourcepub fn new<T>(
config: Config,
transport: T
) -> NewClient<BanksClient, RequestDispatch<BanksRequest, BanksResponse, T>>where
T: Transport<ClientMessage<BanksRequest>, Response<BanksResponse>>,
pub fn new<T>(
config: Config,
transport: T
) -> NewClient<BanksClient, RequestDispatch<BanksRequest, BanksResponse, T>>where
T: Transport<ClientMessage<BanksRequest>, Response<BanksResponse>>,
Returns a new client stub that sends requests over the given transport.
source§impl BanksClient
impl BanksClient
pub fn send_transaction_with_context(
&self,
ctx: Context,
transaction: Transaction
) -> impl Future<Output = Result<(), RpcError>>
pub fn get_fees_with_commitment_and_context(
&self,
ctx: Context,
commitment: CommitmentLevel
) -> impl Future<Output = Result<(FeeCalculator, Hash, u64), RpcError>>
👎Deprecated since 1.9.0: Please use
get_fee_for_message_with_commitment_and_context
insteadpub fn get_transaction_status_with_context(
&self,
ctx: Context,
signature: Signature
) -> impl Future<Output = Result<Option<TransactionStatus>, RpcError>>
pub fn get_slot_with_context(
&self,
ctx: Context,
commitment: CommitmentLevel
) -> impl Future<Output = Result<u64, RpcError>>
pub fn get_block_height_with_context(
&self,
ctx: Context,
commitment: CommitmentLevel
) -> impl Future<Output = Result<u64, RpcError>>
pub fn process_transaction_with_preflight_and_commitment_and_context(
&self,
ctx: Context,
transaction: Transaction,
commitment: CommitmentLevel
) -> impl Future<Output = Result<BanksTransactionResultWithSimulation, RpcError>>
pub fn process_transaction_with_commitment_and_context(
&self,
ctx: Context,
transaction: Transaction,
commitment: CommitmentLevel
) -> impl Future<Output = Result<Option<Result<(), TransactionError>>, RpcError>>
pub fn simulate_transaction_with_commitment_and_context(
&self,
ctx: Context,
transaction: Transaction,
commitment: CommitmentLevel
) -> impl Future<Output = Result<BanksTransactionResultWithSimulation, RpcError>>
pub fn get_account_with_commitment_and_context(
&self,
ctx: Context,
address: Pubkey,
commitment: CommitmentLevel
) -> impl Future<Output = Result<Option<Account>, RpcError>>
pub fn get_latest_blockhash_with_context(
&self,
ctx: Context
) -> impl Future<Output = Result<Hash, RpcError>>
pub fn get_latest_blockhash_with_commitment_and_context(
&self,
ctx: Context,
commitment: CommitmentLevel
) -> impl Future<Output = Result<Option<(Hash, u64)>, RpcError>>
pub fn get_fee_for_message_with_commitment_and_context(
&self,
ctx: Context,
commitment: CommitmentLevel,
message: Message
) -> impl Future<Output = Result<Option<u64>, RpcError>>
Trait Implementations§
source§impl Clone for BanksClient
impl Clone for BanksClient
source§fn clone(&self) -> BanksClient
fn clone(&self) -> BanksClient
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more