2022-01-19 11:18:04 -05:00

14 lines
243 B
Python

from typing import List
from pydantic import BaseModel
class Transfer(BaseModel):
block_number: int
transaction_hash: str
trace_address: List[int]
from_address: str
to_address: str
amount: int
token_address: str