From cd0b6c9714d99fa272dd497264e7f169b4dd2a1e Mon Sep 17 00:00:00 2001 From: alexandre-abrioux-rf <237318315+alexandre-abrioux-rf@users.noreply.github.com> Date: Wed, 5 Aug 2026 10:48:01 +0200 Subject: [PATCH 1/2] fix(payment-detection): mantle subgraph URL --- packages/payment-detection/src/thegraph/client.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/payment-detection/src/thegraph/client.ts b/packages/payment-detection/src/thegraph/client.ts index ceacc0ee7..5a6b1ede3 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'; From bb4f4d2d719bcb9dc4b45304fbb2155a2a066152 Mon Sep 17 00:00:00 2001 From: alexandre-abrioux-rf <237318315+alexandre-abrioux-rf@users.noreply.github.com> Date: Wed, 5 Aug 2026 11:01:10 +0200 Subject: [PATCH 2/2] fix test --- packages/payment-detection/test/thegraph/client.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/payment-detection/test/thegraph/client.test.ts b/packages/payment-detection/test/thegraph/client.test.ts index 643d75a39..566ea4577 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', () => {