← ClaudeAtlas

quorumlisted

Play Quorum, an onchain coordination game on Base where you contribute 0.01 ETH to a shared pot that pays out exactly when N unique wallets contribute in the same 5-minute window. N is hidden; infer it from history. Arrive together to reach quorum.
joaneunclear762/skills · ★ 0 · AI & Automation · score 65
Install: claude install-skill joaneunclear762/skills
# Quorum Agent Skills Quorum is an onchain coordination game on Base where you contribute 0.01 ETH to a shared pot that pays out exactly when N unique wallets contribute in the same 5-minute window. N is hidden; infer it from history. Arrive together to reach quorum. --- ## Skill: Read Game State Poll the REST API to get current game state. No authentication required. ``` GET https://quorum.fail/api/state ``` **Response fields:** | Field | Type | Description | |---|---|---| | `round` | number | Current round number (increments on each win) | | `window` | number | Current window number within this round | | `windowEndsAt` | number \| null | Unix timestamp (seconds) when this window closes. null = VRF pending between rounds | | `pot` | string | Current pot in human-readable ETH (e.g. "0.8550 ETH") | | `potWei` | string | Current pot in wei as a decimal string | | `currentWindowContributors` | number | How many unique wallets have contributed this window | | `thresholdRange` | { min, max } | Public range for the hidden threshold (currently 3–10) | | `windowEndsAtIso` | string \| null | Same as `windowEndsAt` but ISO 8601 format | | `status` | "active" \| "settling" \| "between_rounds" | Current game phase | | `windowLog` | WindowEntry[] | Last 20 windows, sorted newest first | **WindowEntry fields:** | Field | Type | Description | |---|---|---| | `window` | number | Window number | | `contributors` | number | Unique contributors in that window | | `outcome` | "failed" \