From 1253de1000d83fa3408705a7956c1636ea645d99 Mon Sep 17 00:00:00 2001 From: Lyka Labrada Date: Wed, 18 Oct 2023 16:39:18 +0800 Subject: [PATCH] feat(core): update testnet eth rpc url --- mobile-app/app/contexts/CustomServiceProvider.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile-app/app/contexts/CustomServiceProvider.tsx b/mobile-app/app/contexts/CustomServiceProvider.tsx index 8d156faaef..8c1f0f06cb 100644 --- a/mobile-app/app/contexts/CustomServiceProvider.tsx +++ b/mobile-app/app/contexts/CustomServiceProvider.tsx @@ -111,7 +111,7 @@ function getEthRpcUrl(network: EnvironmentNetwork) { case EnvironmentNetwork.Changi: return "http://34.34.156.49:20551"; // TODO: add final eth rpc url for changi, devnet and remote playground case EnvironmentNetwork.TestNet: - return "https://changi.dfi.team"; // TODO: add final eth rpc url for testnet, with proper domain name + return "http://34.38.30.102:18551"; // TODO: add final eth rpc url for testnet, with proper domain name case EnvironmentNetwork.MainNet: default: return "https://changi.dfi.team"; // TODO: add final eth rpc url for mainnet, with proper domain name