fix cli and disable fair quote price on eclipse

This commit is contained in:
Maximilian Schneider 2024-11-05 21:24:53 +01:00 committed by Godmode Galactus
parent 465a601600
commit 420564aece
No known key found for this signature in database
GPG Key ID: A6B75566742EA987
2 changed files with 3 additions and 3 deletions

View File

@ -85,7 +85,7 @@ birdeye_token = "$BIRDEYE_TOKEN"
refresh_interval_secs = 1200 # every 20 min
[safety_checks]
check_quote_out_amount_deviation = true
check_quote_out_amount_deviation = false
min_quote_out_to_in_amount_ratio = 0.65
[hot_mints]

View File

@ -27,7 +27,7 @@ pub struct Quote {
#[clap(short, long)]
pub amount: u64,
#[clap(short, long, default_value = "50")]
#[clap(long, default_value = "50")]
pub slippage_bps: u64,
#[clap(short, long, default_value = "http://localhost:8888")]
@ -52,7 +52,7 @@ pub struct Swap {
#[clap(short, long)]
pub amount: u64,
#[clap(short, long, default_value = "50")]
#[clap(long, default_value = "50")]
pub slippage_bps: u64,
#[clap(short, long, default_value = "http://localhost:8888")]