From 0f3f2230c055387555da76c58bc009ecb350ef14 Mon Sep 17 00:00:00 2001 From: felix11 Date: Sat, 25 Jul 2026 16:38:49 +0400 Subject: [PATCH] chore: point mainnet Pyth JSON-RPC default at Triton endpoint --- src/core/client.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/client.ts b/src/core/client.ts index f3883a1..1545e8f 100644 --- a/src/core/client.ts +++ b/src/core/client.ts @@ -126,7 +126,7 @@ export class AlphalendClient { // uses JSON-RPC). All other reads go through Blockchain (GraphQL). const pythFullnodeUrl = network === "mainnet" - ? "https://fullnode.mainnet.sui.io/" + ? "https://alphalen-suimain-ef6f.mainnet.sui.rpcpool.com/" : network === "testnet" ? "https://fullnode.testnet.sui.io/" : "https://fullnode.devnet.sui.io/";