From a3f33af61156fb11f78f10bbdfeea6fd65af0186 Mon Sep 17 00:00:00 2001 From: MantisClone Date: Fri, 6 Sep 2024 15:55:51 -0400 Subject: [PATCH] chore: payments subgraph Alchemy URLs: ZkSync Era, Avalanche, and Fantom --- 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 e1acb4a2ff..518e4bcf82 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); };