mirror of
https://github.com/status-im/eth2.0-specs.git
synced 2025-02-08 16:55:13 +00:00
4eee3b0c3b
This also removes references to the "extended matrix" in favor of just "matrix" which I think is better. It's not an extended matrix, it's a matrix of extended blobs. Technically it's just a matrix of cells/proofs.
37 lines
1.1 KiB
Python
37 lines
1.1 KiB
Python
from typing import Dict
|
|
|
|
from .base import BaseSpecBuilder
|
|
from ..constants import EIP7594
|
|
|
|
|
|
class EIP7594SpecBuilder(BaseSpecBuilder):
|
|
fork: str = EIP7594
|
|
|
|
@classmethod
|
|
def imports(cls, preset_name: str):
|
|
return f'''
|
|
from eth2spec.deneb import {preset_name} as deneb
|
|
'''
|
|
|
|
|
|
@classmethod
|
|
def sundry_functions(cls) -> str:
|
|
return """
|
|
def retrieve_column_sidecars(beacon_block_root: Root) -> Sequence[DataColumnSidecar]:
|
|
return []
|
|
"""
|
|
|
|
@classmethod
|
|
def hardcoded_custom_type_dep_constants(cls, spec_object) -> str:
|
|
return {
|
|
'FIELD_ELEMENTS_PER_CELL': spec_object.preset_vars['FIELD_ELEMENTS_PER_CELL'].value,
|
|
'FIELD_ELEMENTS_PER_EXT_BLOB': spec_object.preset_vars['FIELD_ELEMENTS_PER_EXT_BLOB'].value,
|
|
'NUMBER_OF_COLUMNS': spec_object.config_vars['NUMBER_OF_COLUMNS'].value,
|
|
}
|
|
|
|
@classmethod
|
|
def hardcoded_func_dep_presets(cls, spec_object) -> Dict[str, str]:
|
|
return {
|
|
'KZG_COMMITMENTS_INCLUSION_PROOF_DEPTH': spec_object.preset_vars['KZG_COMMITMENTS_INCLUSION_PROOF_DEPTH'].value,
|
|
}
|