From 2c8b121a76f48b0416f064db58d0bd34e2c21ff6 Mon Sep 17 00:00:00 2001
From: Justin Starry <justin@solana.com>
Date: Thu, 19 Mar 2020 18:43:19 +0800
Subject: [PATCH] Use https links for clusters (#8)

---
 explorer/src/providers/network.tsx | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/explorer/src/providers/network.tsx b/explorer/src/providers/network.tsx
index a833a1bafb7a82..498da862e57935 100644
--- a/explorer/src/providers/network.tsx
+++ b/explorer/src/providers/network.tsx
@@ -35,8 +35,8 @@ export function networkName(network: Network): string {
   }
 }
 
-export const MAINNET_BETA_URL = "http://34.82.103.142";
-export const TDS_URL = "http://35.233.128.214";
+export const MAINNET_BETA_URL = "https://api.mainnet-beta.solana.com";
+export const TDS_URL = "https://tds.solana.com";
 export const DEVNET_URL = testnetChannelEndpoint("stable");
 
 export const DEFAULT_NETWORK = Network.MainnetBeta;