Sn25 / classes.py
Sarkosos
Added graphs for data transferred, made the app more interaction friendly, and added total simulations done metric
328256f
raw
history blame
522 Bytes
from pydantic import BaseModel
class ProductivityData(BaseModel):
total_completed_jobs: dict[str, dict[int, str]]
class Last24hProductivityData(BaseModel):
unique_folded: int
total_completed_jobs: int
class Productivity(BaseModel):
all_time: ProductivityData
last_24h: Last24hProductivityData
class ThroughputData(BaseModel):
validator_sent: float
miner_sent: float
class Throughput(BaseModel):
all_time: ThroughputData
last_24h: ThroughputData
data: dict