JokeRace

  • Name: JokeRace
  • URL: https://jokerace.io/
  • Category: onchain contest protocol / governance coordination layer / vote-priced persuasion market / community incentive infrastructure
  • Summary: JokeRace is best understood not as a generic proposal-voting frontend, but as contest-governance middleware that turns submissions, ranking, paid voting, and reward routing into reusable onchain primitives. The official codebase shows contests are parameterized by prompt, submission and voting windows, submitter permissions, rank limits, optional sorting, vote pricing, reward percentages, creator revenue splits, and attachable voter-rewards modules. That makes JokeRace analytically useful because it shifts practical governance power away from a simple yes/no proposal surface and into contest configuration: who may submit, how rankings are maintained, whether voting becomes a pay-per-vote market, where vote revenue flows, and how winners or even voters themselves are rewarded.
  • What it does:
    • Lets communities create onchain contests with a name, prompt, start time, submission window, voting window, and maximum proposal limits
    • Stores entries as proposals with author, description, and optional metadata fields rather than reducing participation to plain token votes on a single motion
    • Maintains ranked outcomes onchain through contest-specific sorting logic with an explicit rankLimit
    • Supports paid voting, including exponential vote-price curves over time rather than only flat free voting
    • Routes a configurable share of vote revenue to a rewards module and the remaining share to JK Labs / creator-controlled destinations
    • Offers a VoterRewardsModule that can distribute contest rewards across rankings and then release those rewards proportionally to voters who supported those rankings
    • Exposes creator and operator backstop controls such as cancellation rules and module wiring, showing that contests are governed systems rather than neutral canvases
  • Key claims:
    • The Governor and Contest contracts make the main point clearly: JokeRace is not just a web app wrapped around a vote. The core constructor takes contest name, prompt, timing, submission permissions, rank limits, reward percentages, vote price, curve settings, creator-split flags, and metadata schema. That is a much richer control surface than a normal proposal page.
    • The ranking logic is a first-class mechanism, not a cosmetic leaderboard. GovernorSorting maintains a sorted ranking array with explicit tie-handling constraints and an operator-set rankLimit, meaning the protocol’s notion of contest outcome depends materially on ranking policy and tracked-depth choices.
    • The current contract set also makes the project more than a grants-or-governance wrapper. currentPricePerVote() implements an exponential time-based price curve, so participation can become a persuasion market where the cost of additional votes changes as the contest progresses.
    • Revenue routing is part of the protocol design, not an offchain business model bolted on later. _distributeCost() splits vote payments between the rewards pool and JK Labs / creator destinations according to percentageToRewards and creatorSplitEnabled.
    • The VoterRewardsModule adds another analytically useful layer because it can pay out rewards not only to winning entries but proportionally to voters based on the ranking they supported. That moves JokeRace away from simple contest payouts and toward incentive-shaped attention markets.
    • Cancellation and withdrawal rules expose operator power that generic onchain contest descriptions would otherwise hide. The creator has early cancellation rights, while JK Labs retains delayed cancellation powers over rewards modules, including a defined delay window. That is exactly the kind of governance surface worth keeping visible in the corpus.
    • Secondary ecosystem descriptions from Gitcoin and ethereum.org are directionally consistent with the contract design: JokeRace is framed as an onchain contest platform for ideas, grants, governance, memes, and other submissions. But the contracts show the sharper mechanism insight: the real product is configurable contest infrastructure with ranking, pricing, and payout policy encoded at deployment time.
  • Whitepaper: No canonical standalone whitepaper surfaced in this pass. The strongest materials were the official repositories and contracts, plus ecosystem descriptions cross-checking the public framing, collected in ../whitepapers/jokerace-primary-sources-2026-05-11.md.
  • Sources:
  • Last reviewed: 2026-05-11 UTC