Skip to content

Commit

Permalink
chore: replace genesys go with public rpc api (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
sol-mocha authored Sep 11, 2022
1 parent 7a1925b commit 3eb3454
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/models/Network.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ export function isSupportedENV(env: ENV): boolean {
export function getClusterApiUrl(network: Network): string {
switch (network) {
case Network.MainnetProd:
return 'https://ssc-dao.genesysgo.net';
return 'https://api.mainnet-beta.solana.com';
case Network.DevnetProd:
case Network.DevnetStaging:
return 'https://devnet.genesysgo.net';
return 'https://api.devnet.solana.com';
}
}

Expand Down

0 comments on commit 3eb3454

Please sign in to comment.