Split ragger ethereum client into multiple smaller files
This commit is contained in:
15
tests/ragger/ethereum_client/setting.py
Normal file
15
tests/ragger/ethereum_client/setting.py
Normal file
@@ -0,0 +1,15 @@
|
||||
from enum import IntEnum, auto
|
||||
from typing import List
|
||||
|
||||
class SettingType(IntEnum):
|
||||
BLIND_SIGNING = 0,
|
||||
DEBUG_DATA = auto()
|
||||
NONCE = auto()
|
||||
VERBOSE_EIP712 = auto()
|
||||
|
||||
class SettingImpl:
|
||||
devices: List[str]
|
||||
value: bool
|
||||
|
||||
def __init__(self, devs: List[str]):
|
||||
self.devices = devs
|
||||
Reference in New Issue
Block a user