2023-05-25 07:55:00 +00:00
|
|
|
# beacon_chain
|
|
|
|
# Copyright (c) 2023 Status Research & Development GmbH
|
|
|
|
# Licensed and distributed under either of
|
|
|
|
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
|
|
|
|
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
2023-03-11 00:28:19 +00:00
|
|
|
# Minimal preset - Deneb
|
2023-11-03 13:54:21 +00:00
|
|
|
# https://github.com/ethereum/consensus-specs/blob/v1.4.0-beta.4/presets/minimal/deneb.yaml
|
2022-12-05 16:29:09 +00:00
|
|
|
const
|
2023-11-03 13:54:21 +00:00
|
|
|
# `uint64(4096)`
|
2023-10-19 05:14:02 +00:00
|
|
|
FIELD_ELEMENTS_PER_BLOB*: uint64 = 4096
|
2023-05-25 07:55:00 +00:00
|
|
|
# [customized]
|
|
|
|
MAX_BLOB_COMMITMENTS_PER_BLOCK*: uint64 = 16
|
2023-06-10 01:45:53 +00:00
|
|
|
# `uint64(6)`
|
|
|
|
MAX_BLOBS_PER_BLOCK*: uint64 = 6
|
2023-11-03 13:54:21 +00:00
|
|
|
# [customized] `floorlog2(get_generalized_index(BeaconBlockBody, 'blob_kzg_commitments')) + 1 + ceillog2(MAX_BLOB_COMMITMENTS_PER_BLOCK)` = 4 + 1 + 4 = 9
|
|
|
|
KZG_COMMITMENT_INCLUSION_PROOF_DEPTH* = 9
|