Struct benjamin_arbitrage_bot::config::Config
source · pub struct Config {Show 23 fields
pub private_key: String,
pub default_rpc: String,
pub alt_rpc_list: Vec<String>,
pub wrap_unwrap_sol: bool,
pub trade_size_sol: f64,
pub trade_size_strategy: String,
pub min_profit_threshold: f64,
pub slippage_bps: u64,
pub min_interval_ms: u64,
pub token_rotation_interval_minutes: u64,
pub jupiter_api_level: u64,
pub machine_amount: u64,
pub thread_amount: u64,
pub api_interval_ms: u64,
pub adaptive_slippage: bool,
pub is_use_swap_cpi: bool,
pub current_machine_index: u64,
pub is_use_token_rotation: bool,
pub use_jito_bundle: bool,
pub jito_tip_lamports: u64,
pub jito_rpc_url: String,
pub jito_block_engine_url: String,
pub jupiter_api_key: Option<String>,
}
Fields§
§private_key: String
§default_rpc: String
§alt_rpc_list: Vec<String>
§wrap_unwrap_sol: bool
§trade_size_sol: f64
§trade_size_strategy: String
§min_profit_threshold: f64
§slippage_bps: u64
§min_interval_ms: u64
§token_rotation_interval_minutes: u64
§jupiter_api_level: u64
§machine_amount: u64
§thread_amount: u64
§api_interval_ms: u64
§adaptive_slippage: bool
§is_use_swap_cpi: bool
§current_machine_index: u64
§is_use_token_rotation: bool
§use_jito_bundle: bool
§jito_tip_lamports: u64
§jito_rpc_url: String
§jito_block_engine_url: String
§jupiter_api_key: Option<String>
Implementations§
source§impl Config
impl Config
pub fn update_from_env(&mut self)
pub fn calculate_api_interval(&mut self)
Trait Implementations§
source§impl<'de> Deserialize<'de> for Config
impl<'de> Deserialize<'de> for Config
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Config
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnwindSafe for Config
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