From 0c1b5d7ab295ec342734cfdaa4e2a16d5e00508e Mon Sep 17 00:00:00 2001 From: Alfetopito Date: Wed, 18 Dec 2024 17:11:53 +0000 Subject: [PATCH] chore: temporarily hardcode subgraph urls --- apps/explorer/src/consts/subgraphUrls.ts | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/apps/explorer/src/consts/subgraphUrls.ts b/apps/explorer/src/consts/subgraphUrls.ts index ab1f94af67..c285a6cdcd 100644 --- a/apps/explorer/src/consts/subgraphUrls.ts +++ b/apps/explorer/src/consts/subgraphUrls.ts @@ -8,9 +8,13 @@ function getSubgraphUrl(chainId: SupportedChainId, suffix: string): string | nul * When value is null, then Subgraph is not supported for the network */ export const SUBGRAPH_URLS: Record = { - [SupportedChainId.MAINNET]: getSubgraphUrl(SupportedChainId.MAINNET, 'MAINNET'), - [SupportedChainId.GNOSIS_CHAIN]: getSubgraphUrl(SupportedChainId.GNOSIS_CHAIN, 'GNOSIS_CHAIN'), - [SupportedChainId.ARBITRUM_ONE]: getSubgraphUrl(SupportedChainId.ARBITRUM_ONE, 'ARBITRUM_ONE'), + [SupportedChainId.MAINNET]: + 'https://subgraph.satsuma-prod.com/a29a417e85ec/cow-nomev-labs-pt516811924/cow-subgraph-mainnet/api', + [SupportedChainId.GNOSIS_CHAIN]: + 'https://subgraph.satsuma-prod.com/a29a417e85ec/cow-nomev-labs-pt516811924/cow-subgraphs-gnosis/api', + [SupportedChainId.ARBITRUM_ONE]: + 'https://subgraph.satsuma-prod.com/a29a417e85ec/cow-nomev-labs-pt516811924/cow-subgraph-arb/api', [SupportedChainId.BASE]: getSubgraphUrl(SupportedChainId.BASE, 'BASE'), - [SupportedChainId.SEPOLIA]: getSubgraphUrl(SupportedChainId.SEPOLIA, 'SEPOLIA'), + [SupportedChainId.SEPOLIA]: + 'https://subgraph.satsuma-prod.com/a29a417e85ec/cow-nomev-labs-pt516811924/cow-subgraph-sepolia/api', }