diff --git a/packages/payment-detection/src/thegraph/client.ts b/packages/payment-detection/src/thegraph/client.ts index ceacc0ee78..5a6b1ede3e 100644 --- a/packages/payment-detection/src/thegraph/client.ts +++ b/packages/payment-detection/src/thegraph/client.ts @@ -16,7 +16,7 @@ const THE_GRAPH_URL_MANTLE_TESTNET = 'https://graph.testnet.mantle.xyz/subgraphs/name/requestnetwork/request-payments-mantle-testnet'; const THE_GRAPH_URL_MANTLE = - 'https://subgraph-api.mantle.xyz/api/public/555176e7-c1f4-49f9-9180-f2f03538b039/subgraphs/requestnetwork/request-payments-mantle/v0.1.0/gn'; + 'https://subgraph-api.mantle.xyz/api/public/555176e7-c1f4-49f9-9180-f2f03538b039/subgraphs/requestnetwork/request-payments-mantle/541f68f/gn'; const THE_GRAPH_URL_CORE = 'https://thegraph.coredao.org/subgraphs/name/requestnetwork/request-payments-core'; diff --git a/packages/payment-detection/test/thegraph/client.test.ts b/packages/payment-detection/test/thegraph/client.test.ts index 643d75a393..566ea45779 100644 --- a/packages/payment-detection/test/thegraph/client.test.ts +++ b/packages/payment-detection/test/thegraph/client.test.ts @@ -20,7 +20,7 @@ describe('getTheGraphClientUrl', () => { it('should build the correct URL for Mantle', () => { const url = getTheGraphClientUrl('mantle'); expect(url).toBe( - 'https://subgraph-api.mantle.xyz/api/public/555176e7-c1f4-49f9-9180-f2f03538b039/subgraphs/requestnetwork/request-payments-mantle/v0.1.0/gn', + 'https://subgraph-api.mantle.xyz/api/public/555176e7-c1f4-49f9-9180-f2f03538b039/subgraphs/requestnetwork/request-payments-mantle/541f68f/gn', ); }); it('should build the correct URL for Near', () => {