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
1 change: 1 addition & 0 deletions docs/docs/reference/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

#### Features
- Add `--ignore-spec-mismatch` flag
- Schedule Fusaka on the Chiado testnet


## v1.3.1 { id="v1.3.1" }
Expand Down
3 changes: 1 addition & 2 deletions src/spec/configs/chiado.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ ELECTRA_FORK_VERSION: 0x0500006f
ELECTRA_FORK_EPOCH: 948224 # temporary stub
# Fulu
FULU_FORK_VERSION: 0x0600006f
FULU_FORK_EPOCH: 18446744073709551615 # temporary stub
FULU_FORK_EPOCH: 1353216 # Mon Mar 16 2026 09:33:00 GMT+0000


# Time parameters
Expand Down Expand Up @@ -158,7 +158,6 @@ SAMPLES_PER_SLOT: 8
CUSTODY_REQUIREMENT: 4
VALIDATOR_CUSTODY_REQUIREMENT: 8
BALANCE_PER_ADDITIONAL_CUSTODY_GROUP: 32000000000
MAX_BLOBS_PER_BLOCK_FULU: 2
# `2**14` (= 16384 epochs, ~18 days)
MIN_EPOCHS_FOR_DATA_COLUMN_SIDECARS_REQUESTS: 16384

Expand Down
1 change: 0 additions & 1 deletion src/spec/configs/gnosis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,6 @@ SAMPLES_PER_SLOT: 8
CUSTODY_REQUIREMENT: 4
VALIDATOR_CUSTODY_REQUIREMENT: 8
BALANCE_PER_ADDITIONAL_CUSTODY_GROUP: 32000000000
MAX_BLOBS_PER_BLOCK_FULU: 2
# `2**14` (= 16384 epochs, ~18 days)
MIN_EPOCHS_FOR_DATA_COLUMN_SIDECARS_REQUESTS: 16384

Expand Down
5 changes: 1 addition & 4 deletions tests/spec/configs/test_spec_configs.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,7 @@
argvalues=[network for network in Network if network != Network.CUSTOM],
)
def test_get_network_spec(network: Network) -> None:
if network in (
Network.GNOSIS,
Network.CHIADO,
):
if network == Network.GNOSIS:
pytest.skip(f"Fulu config values not available for {network} yet")

_ = get_network_spec(network=network)
Loading