8 lines
128 B
Python
8 lines
128 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class Price(BaseModel):
|
|
token_address: str
|
|
timestamp_seconds: int
|
|
usd_price: float
|