Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions src/components/Layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import "../styles/layout.css"
import { lightTheme, darkTheme, GlobalStyle } from "../theme"

import Footer from "./Footer"
import UpgradeBannerNotification from "./UpgradeBannerNotification"
import VisuallyHidden from "./VisuallyHidden"
import Nav from "./Nav"
import SideNav from "./SideNav"
Expand Down Expand Up @@ -60,7 +59,6 @@ const Layout = (props) => {
const [isDarkTheme, setIsDarkTheme] = useState(false)
const [isZenMode, setIsZenMode] = useState(false)
const [shouldShowSideNav, setShouldShowSideNav] = useState(false)
const [isHomepage, setIsHomepage] = useState(false)

// Exit Zen Mode on 'esc' click
useKeyPress(`Escape`, () => handleZenModeChange(false))
Expand All @@ -75,8 +73,6 @@ const Layout = (props) => {
}, [])

useEffect(() => {
// Check if path matches homepage for any language (boolean for UpgradeBannerNotification)
setIsHomepage(/^\/[a-z]{2}\/$|^\/[a-z]{2}\-[a-z]{2}\/$/.test(props.path))
if (props.path.includes("/docs/")) {
setShouldShowSideNav(true)

Expand Down Expand Up @@ -166,7 +162,6 @@ const Layout = (props) => {
</VisuallyHidden>
)}
<MainContent>
{isHomepage && <UpgradeBannerNotification />}
<ZenModeContext.Provider
value={{ isZenMode, handleZenModeChange }}
>
Expand Down
9 changes: 5 additions & 4 deletions src/content/history/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,16 @@ These rule changes may create a temporary split in the network. New blocks could

## 2021 {#2021}

### _(In Progress)_ Arrow Glacier {#arrow-glacier}
### Arrow Glacier {#arrow-glacier}

<Emoji text=":calendar:" size={1} mr={"0.5rem"} mb={"0.5rem"} /><code>Estimated: Dec-08-2021</code><br />
<Emoji text=":calendar:" size={1} mr={"0.5rem"} mb={"0.5rem"} /><code>Dec-09-2021 07:55:23 PM +UTC</code><br />
<Emoji text=":bricks:" size={1} mr={"0.5rem"} mb={"0.5rem"} />Block number: <a href="https://etherscan.io/block/13773000">13,773,000</a><br />
<Emoji text=":money_bag:" size={1} mr={"0.5rem"} mb={"0.5rem"} />ETH price: to be determined<br />
<Emoji text=":money_bag:" size={1} mr={"0.5rem"} mb={"0.5rem"} />ETH price: $4111 USD<br />
<Emoji text=":desktop_computer:" size={1} mr={"0.5rem"} mb={"0.5rem"} /> <a href="https://web.archive.org/web/20211207064430/https://ethereum.org/en/">ethereum.org on waybackmachine</a>

#### Summary {#arrow-glacier-summary}

The Arrow Glacier network upgrade pushes back the [difficulty bomb](/glossary/#difficulty-bomb) by several months. This is the only change introduced in this upgrade, and is similar in nature to the [Muir Glacier](#muir-glacier) upgrade. Similar changes have been performed on the [Byzantium](#byzantium), [Constantinople](#constantinople) and [London](#london) network upgrades.
The Arrow Glacier network upgrade pushed back the [difficulty bomb](/glossary/#difficulty-bomb) by several months. This is the only change introduced in this upgrade, and is similar in nature to the [Muir Glacier](#muir-glacier) upgrade. Similar changes have been performed on the [Byzantium](#byzantium), [Constantinople](#constantinople) and [London](#london) network upgrades.

- [EF Blog - Arrow Glacier Upgrade Announcement](https://blog.ethereum.org/2021/11/10/arrow-glacier-announcement/)
- [Ethereum Cat Herders - Ethereum Arrow Glacier Upgrade](https://medium.com/ethereum-cat-herders/ethereum-arrow-glacier-upgrade-e8d20fa4c002)
Expand Down