2021-11-18 11:55:42 -05:00

10 lines
156 B
Python

from datetime import datetime
from pydantic import BaseModel
class Price(BaseModel):
token_address: str
timestamp: datetime
usd_price: float