Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sdks/python/API_REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -1456,7 +1456,7 @@ title: str # The market title (e.g., "Will BTC close above $100k on Dec 31?").
description: str # Long-form market description or resolution criteria.
slug: str # URL-friendly slug for the market.
outcomes: List[MarketOutcome] # The possible outcomes for this market.
resolution_date: str # When the market is scheduled to resolve.
resolution_date: str # When the market is scheduled to resolve. Optional because some venues do not publish a cutoff for every market (e.g. Opinion categorical children) — emit `undefined` rather than coercing to epoch.
volume24h: float # Trading volume over the past 24 hours (USD).
volume: float # Total / Lifetime volume
liquidity: float # Current market liquidity (USD).
Expand Down
4 changes: 2 additions & 2 deletions sdks/python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools>=61.0", "wheel"]
requires = ["setuptools>=78.1.1", "wheel>=0.46.2"]
build-backend = "setuptools.build_meta"

[project]
Expand Down Expand Up @@ -28,7 +28,7 @@ classifiers = [
]

dependencies = [
"urllib3>=1.26.0",
"urllib3>=2.7.0",
"python-dateutil>=2.8.0",
"pydantic>=2.0.0",
"typing-extensions>=4.0.0",
Expand Down
2 changes: 1 addition & 1 deletion sdks/typescript/API_REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -1456,7 +1456,7 @@ title: string; // The market title (e.g., "Will BTC close above $100k on Dec 31?
description: string; // Long-form market description or resolution criteria.
slug: string; // URL-friendly slug for the market.
outcomes: MarketOutcome[]; // The possible outcomes for this market.
resolutionDate: string; // When the market is scheduled to resolve.
resolutionDate: string; // When the market is scheduled to resolve. Optional because some venues do not publish a cutoff for every market (e.g. Opinion categorical children) — emit `undefined` rather than coercing to epoch.
volume24h: number; // Trading volume over the past 24 hours (USD).
volume: number; // Total / Lifetime volume
liquidity: number; // Current market liquidity (USD).
Expand Down
Loading