Skip to content

Commit

Permalink
Merge pull request #568 from invariant-labs/staging
Browse files Browse the repository at this point in the history
Update prod
  • Loading branch information
wojciech-cichocki authored Jan 19, 2024
2 parents 5c4ef3f + c9121e8 commit 1c9448e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions src/components/Header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,11 @@ export const Header: React.FC<IHeader> = ({
}, [landing])

const mainnetRPCs = [
{
networkType: NetworkType.MAINNET,
rpc: SolanaNetworks.MAIN_NIGHTLY,
rpcName: 'Nightly'
},
{
networkType: NetworkType.MAINNET,
rpc: SolanaNetworks.MAIN_HELLOMOON,
Expand Down
2 changes: 1 addition & 1 deletion src/store/consts/static.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ enum SolanaNetworks {
MAIN_SERUM = 'https://solana-api.projectserum.com',
MAIN_FIGMENT = 'https://solana--mainnet.datahub.figment.io/apikey/182e93d87a1f1d335c9d74d6c7371388',
MAIN_GENESYSGO = 'https://ssc-dao.genesysgo.net',
MAIN_NIGHTLY = 'https://rpc.nightly.app:8899/',
MAIN_NIGHTLY = 'https://rpc.solana.nightly.app',
MAIN_ALCHEMY = 'https://solana-mainnet.g.alchemy.com/v2/YfX5E62sdlEoytQ9ZEOA_5KIE3QbwUUD',
MAIN_HELLOMOON = 'https://global.rpc.hellomoon.io/e8a06073-325d-4183-bcad-d69e3e3fc739',
LOCAL = 'http://127.0.0.1:8899'
Expand Down
2 changes: 1 addition & 1 deletion src/store/reducers/solanaConnection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const defaultState: ISolanaConnectionStore = {
message: '',
network: NetworkType.MAINNET,
slot: 0,
rpcAddress: SolanaNetworks.MAIN_HELLOMOON
rpcAddress: SolanaNetworks.MAIN_NIGHTLY
}
export const solanaConnectionSliceName = 'solanaConnection'
const solanaConnectionSlice = createSlice({
Expand Down

0 comments on commit 1c9448e

Please sign in to comment.