Skip to content
Draft
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
29 changes: 29 additions & 0 deletions packages/beacon-node/src/chain/blocks/utils/flamingoBanner.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
// ASCII art printed on the Gloas (Glamsterdam) fork transition — enshrined PBS.
// String.raw preserves the backslashes in the artwork.
export const GLOAS_FLAMINGO_BANNER = String.raw`

__
_/ \
( o |
\ |
\ |___
\ \___
\ >
/
/
|
\
\
___|___
/ \
/ G L O A S \
| e P B S |
\ _/
\___ ___/
| |
| |
| |
| \___
~~~~~~~~~~~~~~~~~~~~~~~~~~~ tricky.eth ~~~~~~~

`;
6 changes: 6 additions & 0 deletions packages/beacon-node/src/chain/blocks/verifyBlock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import {DAType, IBlockInput} from "./blockInput/index.js";
import {PayloadEnvelopeInput} from "./payloadEnvelopeInput/payloadEnvelopeInput.js";
import {ImportBlockOpts} from "./types.js";
import {DENEB_BLOWFISH_BANNER} from "./utils/blowfishBanner.js";
import {GLOAS_FLAMINGO_BANNER} from "./utils/flamingoBanner.js";
import {ELECTRA_GIRAFFE_BANNER} from "./utils/giraffeBanner.js";
import {CAPELLA_OWL_BANNER} from "./utils/ownBanner.js";
import {FULU_ZEBRA_BANNER} from "./utils/zebraBanner.js";
Expand Down Expand Up @@ -230,6 +231,11 @@ export async function verifyBlocksInEpoch(
this.logger.info("Activating peerDAS", {epoch: this.config.FULU_FORK_EPOCH});
break;

case ForkName.gloas:
this.logger.info(GLOAS_FLAMINGO_BANNER);
this.logger.info("Activating ePBS", {epoch: this.config.GLOAS_FORK_EPOCH});
break;

default:
}
}
Expand Down
Loading