diff --git a/Cargo.lock b/Cargo.lock index 2d30b82b..554c18ba 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7874,8 +7874,8 @@ dependencies = [ [[package]] name = "tycho-execution" -version = "0.53.0" -source = "git+https://github.com/propeller-heads/tycho-execution.git?rev=05a1843f9c3f916d4af8fbf67cccf3b3b94aeab8#05a1843f9c3f916d4af8fbf67cccf3b3b94aeab8" +version = "0.54.0" +source = "git+https://github.com/propeller-heads/tycho-execution.git?tag=0.54.0#87e7394b0aca9781c44782eeb117508c7dddf9e2" dependencies = [ "alloy 0.9.2", "alloy-primitives", diff --git a/Cargo.toml b/Cargo.toml index defa6e3d..e9e56f9d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ lazy_static = "1.4.0" # Tycho dependencies tycho-core = { git = "https://github.com/propeller-heads/tycho-indexer.git", package = "tycho-core", tag = "0.56.5" } tycho-client = { git = "https://github.com/propeller-heads/tycho-indexer.git", package = "tycho-client", tag = "0.56.5" } -tycho-execution = { git = "https://github.com/propeller-heads/tycho-execution.git", package = "tycho-execution", features = ["evm"], rev = "05a1843f9c3f916d4af8fbf67cccf3b3b94aeab8" } +tycho-execution = { git = "https://github.com/propeller-heads/tycho-execution.git", package = "tycho-execution", features = ["evm"], tag = "0.54.0" } # EVM dependencies foundry-config = { git = "https://github.com/foundry-rs/foundry", rev = "57bb12e", optional = true } diff --git a/examples/quickstart/main.rs b/examples/quickstart/main.rs index d6493b42..ac2d3ea6 100644 --- a/examples/quickstart/main.rs +++ b/examples/quickstart/main.rs @@ -65,7 +65,7 @@ struct Cli { #[arg(short, long, default_value_t = 1.0)] sell_amount: f64, /// The tvl threshold to filter the graph by - #[arg(short, long, default_value_t = 10.0)] + #[arg(short, long, default_value_t = 100.0)] tvl_threshold: f64, #[arg(short, long, default_value = FAKE_PK)] swapper_pk: String, @@ -192,7 +192,7 @@ async fn main() { continue } println!("Do you want to simulate, execute or skip this swap?"); - println!("Please be aware that the market might move while you make your decision. Which might lead to a revert if you've set a min amount out or slippage."); + println!("Please be aware that the market might move while you make your decision, which might lead to a revert if you've set a min amount out or slippage."); print!("(simulate/execute/skip): "); io::stdout().flush().unwrap(); let mut input = String::new();