mirror of
https://github.com/status-im/eth2.0-specs.git
synced 2025-01-10 02:35:41 +00:00
f1aabcd718
* Refactor setup.py * Update doc with the new file path * Rearrange spec_builders * Update doc
13 lines
267 B
Python
13 lines
267 B
Python
from .base import BaseSpecBuilder
|
|
from ..constants import EIP6110
|
|
|
|
|
|
class EIP6110SpecBuilder(BaseSpecBuilder):
|
|
fork: str = EIP6110
|
|
|
|
@classmethod
|
|
def imports(cls, preset_name: str):
|
|
return f'''
|
|
from eth2spec.deneb import {preset_name} as deneb
|
|
'''
|