From bb6469f99613e9c6b29dea54d34e9d2746150127 Mon Sep 17 00:00:00 2001 From: Tien Nguyen Date: Thu, 17 Oct 2024 17:54:30 +0700 Subject: [PATCH] change MEV protection to new endpoint (#2548) --- src/components/SwapForm/AddMEVProtectionModal.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/SwapForm/AddMEVProtectionModal.tsx b/src/components/SwapForm/AddMEVProtectionModal.tsx index 075fc5a5a0..923ca53277 100644 --- a/src/components/SwapForm/AddMEVProtectionModal.tsx +++ b/src/components/SwapForm/AddMEVProtectionModal.tsx @@ -37,7 +37,7 @@ const Wrapper = styled.div` } ` -const KYBER_SWAP_RPC = 'https://ethereum.kyberengineering.io/' +const KYBER_SWAP_RPC = 'https://ethereum-mev-protection.kyberengineering.io/' export default function AddMEVProtectionModal({ isOpen, onClose }: { isOpen: boolean; onClose: () => void }) { const upToExtraSmall = useMedia(`(max-width: ${MEDIA_WIDTHS.upToExtraSmall}px)`)