Small refactoring : renamed the Ragger client

This commit is contained in:
Alexandre Paillier
2023-02-27 18:15:41 +01:00
parent be3aa9f1ba
commit 25b57bb830
8 changed files with 50 additions and 50 deletions

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