Skip to content

Commit

Permalink
fix: Update tycho-execution tag
Browse files Browse the repository at this point in the history
--- don't change below this line ---
ENG-4225 Took 35 minutes
  • Loading branch information
dianacarvalho1 committed Feb 27, 2025
1 parent 29b57cf commit bde0944
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"], tag = "0.54.0" }
tycho-execution = { git = "https://github.com/propeller-heads/tycho-execution.git", package = "tycho-execution", features = ["evm"], tag = "0.55.0" }

# EVM dependencies
foundry-config = { git = "https://github.com/foundry-rs/foundry", rev = "57bb12e", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions examples/quickstart/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ fn encode(
exact_out: false, // it's an exact in solution
checked_amount: None, // the amount out will not be checked in execution
swaps: vec![simple_swap],
router_address: Bytes::from_str("0xFfA5ec2e444e4285108e4a17b82dA495c178427B")
router_address: Bytes::from_str("0x023eea66B260FA2E109B0764774837629cC41FeF")
.expect("Failed to create router address"),
..Default::default()
};
Expand Down Expand Up @@ -443,7 +443,7 @@ async fn get_tx_requests(
.from(user_address)
.to(sell_token_address)
.input(TransactionInput { input: Some(AlloyBytes::from(data)), data: None })
.gas_limit(50_000u64)
.gas_limit(100_000u64)
.max_fee_per_gas(max_fee_per_gas.into())
.max_priority_fee_per_gas(max_priority_fee_per_gas.into())
.nonce(nonce);
Expand Down

0 comments on commit bde0944

Please sign in to comment.