Files
app-ethereum/tests/ragger/ethereum_client/eip712.py
2022-08-09 17:49:05 +02:00

12 lines
222 B
Python

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()