Skip to content

Commit

Permalink
adjust timings
Browse files Browse the repository at this point in the history
  • Loading branch information
aureliusbtc committed Mar 13, 2024
1 parent e87ee6a commit f068eff
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ import {
import { useIntervalTimer } from '@/utils/hooks/useIntervalTimer'

/**
* Start: 10 min prior to Ecotone Fork Upgrade Time @ (March 14, 00:00 UTC)
* End: 10 min after start of Ecotone Fork Upgrade Time
* Start: 25 min prior to Ecotone Fork Upgrade Time @ (March 14, 00:00 UTC)
* End: 25 min after start of Ecotone Fork Upgrade Time
*/
export const ECOTONE_FORK_BANNERS_START = new Date(
Date.UTC(2024, 2, 13, 23, 20, 0)
)
export const ECOTONE_FORK_START_DATE = new Date(
Date.UTC(2024, 2, 13, 23, 50, 0)
Date.UTC(2024, 2, 13, 23, 35, 0)
)
export const ECOTONE_FORK_END_DATE = new Date(Date.UTC(2024, 2, 14, 0, 10, 0))
export const ECOTONE_FORK_END_DATE = new Date(Date.UTC(2024, 2, 14, 0, 25, 0))

export const EcotoneForkUpgradeBanner = () => {
const { isComplete } = getCountdownTimeStatus(
Expand All @@ -34,8 +34,8 @@ export const EcotoneForkUpgradeBanner = () => {
bannerContents={
<div className="flex flex-col justify-center space-y-1 text-center">
<div>
Optimism + Base Bridging and RFQ will be paused 10 minutes ahead of
Ecotone (March 14, 00:00 UTC, 20:00 EST).
Optimism + Base Bridging will be paused 10 minutes ahead of Ecotone
(March 14, 00:00 UTC, 20:00 EST).
</div>
<div>Will be back online shortly following the network upgrade.</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ import { getCountdownTimeStatus } from '../EventCountdownProgressBar'
* End: 12 hours after start of Metis Chain Downtime
*/
export const METIS_DOWNTIME_BANNERS_START = new Date(
Date.UTC(2024, 2, 14, 1, 0, 0)
Date.UTC(2024, 2, 14, 1, 30, 0)
)
export const METIS_DOWNTIME_START_DATE = new Date(
Date.UTC(2024, 2, 14, 1, 30, 0)
Date.UTC(2024, 2, 14, 1, 45, 0)
)
export const METIS_DOWNTIME_END_DATE = new Date(
Date.UTC(2024, 2, 14, 13, 30, 0)
Expand Down

0 comments on commit f068eff

Please sign in to comment.