Split ragger ethereum client into multiple smaller files
This commit is contained in:
11
tests/ragger/ethereum_client/eip712.py
Normal file
11
tests/ragger/ethereum_client/eip712.py
Normal file
@@ -0,0 +1,11 @@
|
||||
from enum import IntEnum, auto
|
||||
|
||||
class EIP712FieldType(IntEnum):
|
||||
CUSTOM = 0,
|
||||
INT = auto()
|
||||
UINT = auto()
|
||||
ADDRESS = auto()
|
||||
BOOL = auto()
|
||||
STRING = auto()
|
||||
FIX_BYTES = auto()
|
||||
DYN_BYTES = auto()
|
||||
Reference in New Issue
Block a user