Struct benjamin_arbitrage_bot::solana::SolanaClient
source · pub struct SolanaClient {
rpc_client: Arc<RpcClient>,
wallet: Arc<Keypair>,
}
Fields§
§rpc_client: Arc<RpcClient>
§wallet: Arc<Keypair>
Implementations§
source§impl SolanaClient
impl SolanaClient
pub fn new(rpc_url: &str, private_key: &str) -> Result<Self>
pub async fn get_account(&self, address: &Pubkey) -> Result<Account>
pub fn wallet_pubkey(&self) -> Pubkey
pub fn get_keypair(&self) -> &Keypair
pub async fn get_latest_blockhash(&self) -> Result<Hash>
pub async fn send_transaction( &self, transaction: &Transaction, ) -> Result<String>
pub async fn send_versioned_transaction( &self, transaction: &VersionedTransaction, ) -> Result<String>
pub async fn send_and_confirm_transaction( &self, transaction: &Transaction, ) -> Result<String>
pub async fn get_token_balance(&self, token_mint: &str) -> Result<u64>
pub async fn get_slot_with_commitment( &self, commitment: CommitmentConfig, ) -> Result<u64>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SolanaClient
impl !RefUnwindSafe for SolanaClient
impl Send for SolanaClient
impl Sync for SolanaClient
impl Unpin for SolanaClient
impl !UnwindSafe for SolanaClient
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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