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

Commit

Permalink
fix: remove reference to edge/beta testnets
Browse files Browse the repository at this point in the history
  • Loading branch information
mvines authored Feb 1, 2020
1 parent c534442 commit f6129fb
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/EndpointConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,24 +9,18 @@ const endpointUrlMap = {
? `http://${window.location.hostname}:8443`
: `http://${window.location.hostname}:8899`,

'testnet-edge': 'https://edge.testnet.solana.com:8443',
'testnet-beta': 'https://beta.testnet.solana.com:8443',
testnet: 'https://testnet.solana.com:8443',
tds: 'https://tds.solana.com:8443',
};

const endpointHostnameMap = {
'edge.testnet.solana.com': 'testnet-edge',
'beta.testnet.solana.com': 'testnet-beta',
'testnet.solana.com': 'testnet',
'tds.solana.com': 'tds',
'explorer.solana.com': 'testnet', // Default endpoint for explorer.solana.com
'edge.explorer.solana.com': 'testnet-edge', // Default endpoint for edge.explorer.solana.com
'edge.explorer.solana.com': 'testnet', // Default endpoint for edge.explorer.solana.com
};

const endpointFriendlyNameMap = {
'testnet-edge': 'Edge Development Testnet',
'testnet-beta': 'Beta Development Testnet',
testnet: 'Public Testnet',
tds: 'Tour de SOL',
local: 'Local Cluster',
Expand Down

0 comments on commit f6129fb

Please sign in to comment.