From bcfcb788bfde94901c20dfb0ebf72103fe108492 Mon Sep 17 00:00:00 2001 From: MantisClone Date: Thu, 19 Sep 2024 15:47:53 -0400 Subject: [PATCH] chore: payments subgraph Alchemy URLs: ZkSync Era, Avalanche, and Fantom (#1449) --- packages/payment-detection/src/thegraph/client.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/payment-detection/src/thegraph/client.ts b/packages/payment-detection/src/thegraph/client.ts index eb2518197..7b9d9b196 100644 --- a/packages/payment-detection/src/thegraph/client.ts +++ b/packages/payment-detection/src/thegraph/client.ts @@ -113,7 +113,10 @@ export const defaultGetTheGraphClient = ( network === 'bsc' || network === 'optimism' || network === 'arbitrum-one' || - network === 'base' + network === 'base' || + network === 'zksyncera' || + network === 'avalanche' || + network === 'fantom' ? getTheGraphEvmClient(`${THE_GRAPH_ALCHEMY_URL.replace('$NETWORK', network)}`, options) : getTheGraphEvmClient(`${THE_GRAPH_STUDIO_URL.replace('$NETWORK', network)}`, options); };