Taarush Vemulapalli 274cefd1ec types, tests, comp
2021-08-17 06:59:55 -07:00

18 lines
315 B
Python

from enum import Enum
from .utils import CamelModel
class Tokenflow(CamelModel):
tx_hash: str
dollar_inflow: int
dollar_outflow: int
ether_inflow: int
ether_outflow: int
class TokenflowSpecifc(CamelModel):
tx_hash: str
token_address: str
token_inflow: int
token_outflow: int