From 84a9aa79be667e55b16821de5d90b2aad2607d09 Mon Sep 17 00:00:00 2001 From: Chris Hatch Date: Mon, 1 Apr 2024 07:54:32 +1000 Subject: [PATCH] add public soroban rpc url - gateway.fm --- app/lib/stellar/server_soroban.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/app/lib/stellar/server_soroban.ts b/app/lib/stellar/server_soroban.ts index cb322ee92..e8e2b6b6c 100644 --- a/app/lib/stellar/server_soroban.ts +++ b/app/lib/stellar/server_soroban.ts @@ -3,6 +3,7 @@ import networks from './networks' import { isLocalhost } from './utils' export const sorobanRpcURIs: Record = { + [networks.public]: 'https://soroban-rpc.mainnet.stellar.gateway.fm', [networks.future]: 'https://rpc-futurenet.stellar.org', [networks.test]: 'https://soroban-testnet.stellar.org', [networks.local]: 'http://localhost:8000/soroban/rpc',