10 lines
156 B
Python
10 lines
156 B
Python
from datetime import datetime
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class Price(BaseModel):
|
|
token_address: str
|
|
timestamp: datetime
|
|
usd_price: float
|