fix: After rebase fixes

--- don't change below this line ---
ENG-4088 Took 2 minutes
This commit is contained in:
Diana Carvalho
2025-02-06 18:23:17 +00:00
parent 164d062ad9
commit bef4740a1d
3 changed files with 4 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
pub mod approvals; pub mod approvals;
mod constants;
pub mod strategy_encoder; pub mod strategy_encoder;
mod swap_encoder; mod swap_encoder;
pub mod tycho_encoder; pub mod tycho_encoder;

View File

@@ -2,7 +2,8 @@ use std::{collections::HashMap, fs};
use crate::encoding::{ use crate::encoding::{
errors::EncodingError, errors::EncodingError,
evm::{constants::DEFAULT_EXECUTORS_JSON, swap_encoder::builder::SwapEncoderBuilder}, models::Chain, evm::{constants::DEFAULT_EXECUTORS_JSON, swap_encoder::builder::SwapEncoderBuilder},
models::Chain,
swap_encoder::SwapEncoder, swap_encoder::SwapEncoder,
}; };

View File

@@ -137,6 +137,7 @@ impl From<TychoCoreChain> for ChainId {
TychoCoreChain::ZkSync => ChainId(324), TychoCoreChain::ZkSync => ChainId(324),
TychoCoreChain::Arbitrum => ChainId(42161), TychoCoreChain::Arbitrum => ChainId(42161),
TychoCoreChain::Starknet => ChainId(0), TychoCoreChain::Starknet => ChainId(0),
TychoCoreChain::Base => ChainId(8453),
} }
} }
} }