Skip to content

Commit

Permalink
feat(optimism): update to new bridge app (#3771)
Browse files Browse the repository at this point in the history
  • Loading branch information
JFrankfurt authored Apr 25, 2022
1 parent ae8c037 commit 5055695
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Header/NetworkSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ const BridgeLabel = ({ chainId }: { chainId: SupportedChainId }) => {
return <Trans>Arbitrum Bridge</Trans>
case SupportedChainId.OPTIMISM:
case SupportedChainId.OPTIMISTIC_KOVAN:
return <Trans>Optimism Gateway</Trans>
return <Trans>Optimism Bridge</Trans>
case SupportedChainId.POLYGON:
case SupportedChainId.POLYGON_MUMBAI:
return <Trans>Polygon Bridge</Trans>
Expand Down
4 changes: 2 additions & 2 deletions src/constants/chainInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export const CHAIN_INFO: ChainInfoMap = {
[SupportedChainId.OPTIMISM]: {
networkType: NetworkType.L2,
blockWaitMsBeforeWarning: ms`25m`,
bridge: 'https://gateway.optimism.io/?chainId=1',
bridge: 'https://app.optimism.io/bridge',
defaultListUrl: OPTIMISM_LIST,
docs: 'https://optimism.io/',
explorer: 'https://optimistic.etherscan.io/',
Expand All @@ -108,7 +108,7 @@ export const CHAIN_INFO: ChainInfoMap = {
[SupportedChainId.OPTIMISTIC_KOVAN]: {
networkType: NetworkType.L2,
blockWaitMsBeforeWarning: ms`25m`,
bridge: 'https://gateway.optimism.io/',
bridge: 'https://app.optimism.io/bridge',
defaultListUrl: OPTIMISM_LIST,
docs: 'https://optimism.io/',
explorer: 'https://optimistic.etherscan.io/',
Expand Down

0 comments on commit 5055695

Please sign in to comment.