Skip to content
This repository has been archived by the owner on Jul 22, 2020. It is now read-only.

Commit

Permalink
fix: Hide TdS page even for TdS as it's outdated and needs rework
Browse files Browse the repository at this point in the history
  • Loading branch information
mvines committed Feb 21, 2020
1 parent 93bd134 commit 573e30e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/EndpointConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,22 @@ const endpointUrlMap = {
: `http://${window.location.hostname}:8899`,

devnet: 'https://devnet.solana.com:8443',
tds: 'https://tds.solana.com:8443',
tourdesol: 'https://tds.solana.com:8443',
slp: 'https://api.mainnet-beta.solana.com',
};

const endpointHostnameMap = {
'devnet.solana.com': 'devnet',
'api.mainnet-beta.solana.com': 'slp',
'tds.solana.com': 'tds',
'tds.solana.com': 'tourdesol',
'explorer.solana.com': 'devnet', // Default endpoint for explorer.solana.com
'edge.explorer.solana.com': 'devnet', // Default endpoint for edge.explorer.solana.com
};

const endpointFriendlyNameMap = {
devnet: 'Developer Testnet',
slp: 'Soft Launch Testnet',
tds: 'Tour de SOL Testnet',
tourdesol: 'Tour de SOL Testnet',
local: 'Local Cluster',
};

Expand Down

0 comments on commit 573e30e

Please sign in to comment.