mirror of
https://github.com/ethereum/consensus-specs.git
synced 2026-02-15 13:45:10 -05:00
15 lines
292 B
Python
15 lines
292 B
Python
from typing import Dict
|
|
|
|
from .base import BaseSpecBuilder
|
|
from ..constants import PEERDAS
|
|
|
|
|
|
class PeerDASSpecBuilder(BaseSpecBuilder):
|
|
fork: str = PEERDAS
|
|
|
|
@classmethod
|
|
def imports(cls, preset_name: str):
|
|
return f'''
|
|
from eth2spec.deneb import {preset_name} as deneb
|
|
'''
|