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
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ import {GossipEncoding, GossipTopicMap, GossipType} from "../../../../src/networ
import {parseGossipTopic, stringifyGossipTopic} from "../../../../src/network/gossip/topic.js";

describe("network / gossip / topic", () => {
// TODO Fulu: this can be removed once fulu is scheduled
const config = createBeaconConfig({...chainConfig, FULU_FORK_EPOCH: 500000}, ZERO_HASH);
const config = createBeaconConfig(chainConfig, ZERO_HASH);
const encoding = GossipEncoding.ssz_snappy;

// Enforce with Typescript that we test all GossipType
Expand Down
13 changes: 11 additions & 2 deletions packages/config/src/chainConfig/configs/mainnet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export const chainConfig: ChainConfig = {

// FULU
FULU_FORK_VERSION: b("0x06000000"),
FULU_FORK_EPOCH: Infinity,
FULU_FORK_EPOCH: 411392, // December 3, 2025, 09:49:11pm UTC

// GLOAS
GLOAS_FORK_VERSION: b("0x07000000"),
Expand Down Expand Up @@ -184,5 +184,14 @@ export const chainConfig: ChainConfig = {

// Blob Scheduling
// ---------------------------------------------------------------
BLOB_SCHEDULE: [],
BLOB_SCHEDULE: [
{
EPOCH: 412672, // December 9, 2025, 02:21:11pm UTC
Comment thread
nflaig marked this conversation as resolved.
MAX_BLOBS_PER_BLOCK: 15,
},
{
EPOCH: 419072, // January 7, 2026, 01:01:11am UTC
MAX_BLOBS_PER_BLOCK: 21,
},
],
};
Loading