From ac5a2c13506ecda66c6112b1d6a792d1ad439180 Mon Sep 17 00:00:00 2001 From: tim Date: Fri, 6 Feb 2026 18:00:02 -0400 Subject: [PATCH] rpc uses CloudFlare Web3 gateway at ethereum.liquidity.party --- src/components/providers.tsx | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/components/providers.tsx b/src/components/providers.tsx index a8a4548..3dac594 100644 --- a/src/components/providers.tsx +++ b/src/components/providers.tsx @@ -28,7 +28,16 @@ const mockchain = defineChain({ testnet: true, }); -const allChains = [mainnet, polygon, optimism, arbitrum, base, sepolia, mockchain]; +// Create a deep copy of mainnet with custom RPC URL +const ethereum = { + ...mainnet, + rpcUrls: { + ...mainnet.rpcUrls, + default: {http: ['https://ethereum.liquidity.party']}, + }, +}; + +const allChains = [ethereum, sepolia, mockchain]; const chains = allChains.filter(chain => Object.keys(deployments || {}).includes(chain.id.toString()) );