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

Commit

Permalink
fix: remove softlaunch testnet
Browse files Browse the repository at this point in the history
  • Loading branch information
mvines committed Mar 17, 2020
1 parent 8c8b3d5 commit c83c8ba
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/EndpointConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,21 @@ const endpointUrlMap = {
: `http://${window.location.hostname}:8899`,

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

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

const endpointFriendlyNameMap = {
devnet: 'Developer Testnet',
mainnetbeta: 'Mainnet Beta',
softlaunch: 'Soft Launch Testnet',
tourdesol: 'Tour de SOL Testnet',
local: 'Local Cluster',
};
Expand Down

0 comments on commit c83c8ba

Please sign in to comment.