diff --git a/apps/web/public/csp.json b/apps/web/public/csp.json index b7e9118a36b..7aa816d0f92 100644 --- a/apps/web/public/csp.json +++ b/apps/web/public/csp.json @@ -47,6 +47,7 @@ "https://assets.relay.link", "https://rpc.zerion.io/v1/zero", "https://zero.drpc.org", + "https://rpc.zero.network", "https://rpc.gobob.xyz", "https://cyber.alt.technology/", "https://*.infura.io/v3/", diff --git a/packages/uniswap/src/constants/chainDefinitions/zero.ts b/packages/uniswap/src/constants/chainDefinitions/zero.ts index ca76f93176e..56c240681e4 100644 --- a/packages/uniswap/src/constants/chainDefinitions/zero.ts +++ b/packages/uniswap/src/constants/chainDefinitions/zero.ts @@ -14,7 +14,7 @@ export const zero = /*#__PURE__*/ defineChain({ symbol: 'ETH', }, rpcUrls: { - default: { http: ['https://zero.drpc.org'] }, + default: { http: ['https://rpc.zero.network/', 'https://zero.drpc.org'] }, }, blockExplorers: { default: { diff --git a/packages/uniswap/src/constants/chains.ts b/packages/uniswap/src/constants/chains.ts index 046d0bdb65a..f45b42738ac 100644 --- a/packages/uniswap/src/constants/chains.ts +++ b/packages/uniswap/src/constants/chains.ts @@ -1167,9 +1167,9 @@ export const UNIVERSE_CHAIN_INFO: Record = { networkLayer: NetworkLayer.L2, pendingTransactionsRetryOptions: undefined, rpcUrls: { - [RPCType.Public]: { http: ['https://zero.drpc.org'] }, - default: { http: ['https://zero.drpc.org'] }, - appOnly: { http: ['https://zero.drpc.org'] }, + [RPCType.Public]: { http: ['https://rpc.zero.network', 'https://zero.drpc.org'] }, + default: { http: ['https://rpc.zero.network', 'https://zero.drpc.org'] }, + appOnly: { http: ['https://rpc.zero.network', 'https://zero.drpc.org'] }, }, urlParam: 'zero', statusPage: undefined,