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

Commit

Permalink
fix: set default cluster to soft launch
Browse files Browse the repository at this point in the history
  • Loading branch information
mvines committed Feb 21, 2020
1 parent b5402a4 commit 67c2185
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/EndpointConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@ const endpointUrlMap = {

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

const endpointHostnameMap = {
'devnet.solana.com': 'devnet',
'api.mainnet-beta.solana.com': 'slp',
'api.mainnet-beta.solana.com': 'softlaunch',
'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
'explorer.solana.com': 'softlaunch', // Default endpoint for explorer.solana.com
'edge.explorer.solana.com': 'softlaunch', // Default endpoint for edge.explorer.solana.com
};

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

0 comments on commit 67c2185

Please sign in to comment.