diff --git a/crates/gem_evm/src/uniswap/deployment/v3.rs b/crates/gem_evm/src/uniswap/deployment/v3.rs index 89642245e..312c2b6a3 100644 --- a/crates/gem_evm/src/uniswap/deployment/v3.rs +++ b/crates/gem_evm/src/uniswap/deployment/v3.rs @@ -121,6 +121,16 @@ pub fn get_pancakeswap_router_deployment_by_chain(chain: &Chain) -> Option Some(V3Deployment { + quoter_v2: "0x3d146FcE6c1006857750cBe8aF44f76a28041CCc", + universal_router: "0xdAee41E335322C85ff2c5a6745c98e1351806e98", + permit2: "0x686FD50007EaA636F01154d660b96110B6bFe351", + }), + Chain::Monad => Some(V3Deployment { + quoter_v2: "0xB048Bbc1Ee6b733FFfCFb9e9CeF7375518e25997", + universal_router: "0x23682a588CF2601ACa977dF200938634c9F7d552", + permit2: "0xDca6Dd86A5E305dB99A15eaEB2a6ecfc7F579778", + }), _ => None, } }