Skip to content

Commit

Permalink
removed comments and added names for networks
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewlee348 committed Dec 16, 2024
1 parent f4ea715 commit 9b6e859
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 26 deletions.
10 changes: 0 additions & 10 deletions src/components/header/MobileDrawerContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,7 @@ export const MobileDrawerContent = () => {
style={{ width: '75%' }}
>
<Box
// flexDirection="row"
// alignItems="center"
// background="buttonGlass"
// borderRadius="sm"
gap="2"
// style={{ cursor: 'pointer', padding: '8px 16px 8px 8px' }}
onClick={() => window.open('https://docs.sequence.xyz/')}
>
<Image src={externalArrowIcon} height="5" />
Expand All @@ -73,12 +68,7 @@ export const MobileDrawerContent = () => {
</Box>

<Box
// flexDirection="row"
// alignItems="center"
// background="buttonGlass"
// borderRadius="sm"
gap="2"
// style={{ cursor: 'pointer', padding: '8px 16px 8px 8px' }}
onClick={() => {
openNetworkModal()
toggleNavDrawer(false)
Expand Down
32 changes: 16 additions & 16 deletions src/constants/network.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export const DEFAULT_PUBLIC_RPC_LIST: Map<number, [string | undefined, string]>
[1, ['mainnet', 'https://ethereum-rpc.publicnode.com']],
[11155111, ['sepolia', 'https://ethereum-sepolia-rpc.publicnode.com']],
[137, ['polygon', 'https://polygon-bor-rpc.publicnode.com']],
[80002, [undefined, 'https://rpc-amoy.polygon.technology']],
[80002, ['polygon-amoy', 'https://rpc-amoy.polygon.technology']], // not on sequence directory repo
[1101, ['polygon-zkevm', 'https://zkevm-rpc.com']],
[56, ['bnb', 'https://bsc-rpc.publicnode.com']],
[97, ['bnb-testnet', 'https://bsc-testnet-rpc.publicnode.com']],
Expand All @@ -19,23 +19,23 @@ export const DEFAULT_PUBLIC_RPC_LIST: Map<number, [string | undefined, string]>
[84532, ['base-sepolia', 'https://base-sepolia-rpc.publicnode.com']],
[19011, ['homeverse', 'https://rpc.mainnet.oasys.homeverse.games']],
[40875, ['homeverse-testnet', 'https://rpc.testnet.oasys.homeverse.games']],
[660279, [undefined, 'https://xai-chain.net/rpc']],
[37714555429, [undefined, 'https://testnet-v2.xai-chain.net/rpc']],
[660279, ['xai', 'https://xai-chain.net/rpc']], // not on sequence directory repo
[37714555429, ['xai-testnet', 'https://testnet-v2.xai-chain.net/rpc']], // not on sequence directory repo
[3776, ['astar-zkevm', 'https://rpc.startale.com/astar-zkevm']],
[6038361, ['astar-zkyoto', 'https://rpc.startale.com/zkyoto']],
[2730, [undefined, 'https://xr-sepolia-testnet.rpc.caldera.xyz/http']],
[40, [undefined, 'https://mainnet-asia.telos.net/evm']],
[1946, [undefined, 'https://rpc.minato.soneium.org']],
[7668, [undefined, 'https://root.rootnet.live/archive']],
[8333, [undefined, 'https://mainnet-rpc.b3.fun']],
[13371, [undefined, 'https://rpc.immutable.com']],
[33139, [undefined, 'https://rpc.apechain.com']],
[81457, [undefined, 'https://blast-rpc.publicnode.com']],
[33111, [undefined, 'https://rpc.curtis.apechain.com']],
[1482601649, [undefined, 'https://mainnet.skalenodes.com/v1/green-giddy-denebola']],
[37084624, [undefined, 'https://testnet.skalenodes.com/v1/lanky-ill-funny-testnet']],
[13473, [undefined, 'https://rpc.immutable.com']],
[7672, [undefined, 'https://porcini.rootnet.app/archive']]
[2730, ['xr-sepolia-testnet', 'https://xr-sepolia-testnet.rpc.caldera.xyz/http']], // not on sequence directory repo
[40, ['telos', 'https://mainnet-asia.telos.net/evm']], // not on sequence directory repo
[1946, ['minato', 'https://rpc.minato.soneium.org']], // not on sequence directory repo
[7668, ['rootnet', 'https://root.rootnet.live/archive']], // not on sequence directory repo
[8333, ['b3', 'https://mainnet-rpc.b3.fun']], // not on sequence directory repo
[13371, ['immutable', 'https://rpc.immutable.com']], // not on sequence directory repo
[33139, ['apechain', 'https://rpc.apechain.com']], // not on sequence directory repo
[81457, ['blast', 'https://blast-rpc.publicnode.com']], // not on sequence directory repo
[33111, ['curtis', 'https://rpc.curtis.apechain.com']], // not on sequence directory repo
[1482601649, ['green-giddy-denebola', 'https://mainnet.skalenodes.com/v1/green-giddy-denebola']], // not on sequence directory repo
[37084624, ['lanky-ill-funny-testnet', 'https://testnet.skalenodes.com/v1/lanky-ill-funny-testnet']], // not on sequence directory repo
[13473, ['immutable', 'https://rpc.immutable.com']], // not on sequence directory repo
[7672, ['porcini', 'https://porcini.rootnet.app/archive']] // not on sequence directory repo
])

// These are hardhat test networks
Expand Down

0 comments on commit 9b6e859

Please sign in to comment.