@@ -24,7 +24,7 @@ proc installConfigApiHandlers*(router: var RestRouter, node: BeaconNode) =
2424 cachedConfigSpec =
2525 RestApiResponse .prepareJsonResponse (
2626 (
27- # https://github.com/ethereum/consensus-specs/blob/v1.5.0-beta.4 /presets/mainnet/phase0.yaml
27+ # https://github.com/ethereum/consensus-specs/blob/v1.5.0-beta.5 /presets/mainnet/phase0.yaml
2828 MAX_COMMITTEES_PER_SLOT :
2929 Base10 .toString (MAX_COMMITTEES_PER_SLOT ),
3030 TARGET_COMMITTEE_SIZE :
@@ -95,7 +95,7 @@ proc installConfigApiHandlers*(router: var RestRouter, node: BeaconNode) =
9595 MAX_VOLUNTARY_EXITS :
9696 Base10 .toString (MAX_VOLUNTARY_EXITS ),
9797
98- # https://github.com/ethereum/consensus-specs/blob/v1.5.0-beta.4 /presets/mainnet/altair.yaml
98+ # https://github.com/ethereum/consensus-specs/blob/v1.5.0-beta.5 /presets/mainnet/altair.yaml
9999 INACTIVITY_PENALTY_QUOTIENT_ALTAIR :
100100 Base10 .toString (INACTIVITY_PENALTY_QUOTIENT_ALTAIR ),
101101 MIN_SLASHING_PENALTY_QUOTIENT_ALTAIR :
@@ -113,7 +113,7 @@ proc installConfigApiHandlers*(router: var RestRouter, node: BeaconNode) =
113113 UPDATE_TIMEOUT :
114114 Base10 .toString (UPDATE_TIMEOUT ),
115115
116- # https://github.com/ethereum/consensus-specs/blob/v1.5.0-beta.4 /presets/mainnet/bellatrix.yaml
116+ # https://github.com/ethereum/consensus-specs/blob/v1.5.0-beta.5 /presets/mainnet/bellatrix.yaml
117117 INACTIVITY_PENALTY_QUOTIENT_BELLATRIX :
118118 Base10 .toString (INACTIVITY_PENALTY_QUOTIENT_BELLATRIX ),
119119 MIN_SLASHING_PENALTY_QUOTIENT_BELLATRIX :
@@ -130,15 +130,15 @@ proc installConfigApiHandlers*(router: var RestRouter, node: BeaconNode) =
130130 MAX_EXTRA_DATA_BYTES :
131131 Base10 .toString (uint64 (MAX_EXTRA_DATA_BYTES )),
132132
133- # https://github.com/ethereum/consensus-specs/blob/v1.5.0-beta.4 /presets/mainnet/capella.yaml
133+ # https://github.com/ethereum/consensus-specs/blob/v1.5.0-beta.5 /presets/mainnet/capella.yaml
134134 MAX_BLS_TO_EXECUTION_CHANGES :
135135 Base10 .toString (uint64 (MAX_BLS_TO_EXECUTION_CHANGES )),
136136 MAX_WITHDRAWALS_PER_PAYLOAD :
137137 Base10 .toString (uint64 (MAX_WITHDRAWALS_PER_PAYLOAD )),
138138 MAX_VALIDATORS_PER_WITHDRAWALS_SWEEP :
139139 Base10 .toString (uint64 (MAX_VALIDATORS_PER_WITHDRAWALS_SWEEP )),
140140
141- # https://github.com/ethereum/consensus-specs/blob/v1.5.0-beta.4 /presets/mainnet/deneb.yaml
141+ # https://github.com/ethereum/consensus-specs/blob/v1.5.0-beta.5 /presets/mainnet/deneb.yaml
142142 FIELD_ELEMENTS_PER_BLOB :
143143 Base10 .toString (deneb_preset.FIELD_ELEMENTS_PER_BLOB ),
144144 MAX_BLOB_COMMITMENTS_PER_BLOCK :
0 commit comments