THE RAFFLE FAIRNESS · DRAW #2118

Prove. Commit. Verify.

The operator cannot bias which holder wins. The roll is an RFC 9381 ECVRF output keyed by our on-chain frozen key, its input bound to the resolved slot hash so it cannot be precomputed, and the winner is the holder whose weighted slice of the snapshot covers the roll. Recompute AND verify everything — the binding, the ECVRF proof, the roll — right here in your browser.

Drawn  Pot 0 cards · $0Holders 2,020Outcome EMPTY WINDOW
FOUR STEPS · ONE VIEWPORT
Freeze > Snapshot > Prove > Roll
  1. Freeze
    We froze our VRF key on-chain before any draw
    Our ECVRF public key is registered + FROZEN on-chain (Collector Crypt VRF program) under a fixed owner + label. Once frozen it cannot be swapped — every proof verifies against this one key.
    vrf_authority: frozen(pk, owner, label)
  2. Snapshot
    Every holder balance is recorded at the close slot
    When the window closes we record a Merkle root of every eligible $GACHA balance at that exact Solana slot. Nobody touches your balance — we just take a tamper-evident snapshot the weighted pick runs over.
    snapshotMerkleRoot = MerkleRoot(holders[closeSlot])
  3. Prove
    alpha binds the slot, we publish the ECVRF proof
    The proof input alpha = sha256(slotHash ‖ drawId) binds the FUTURE slot blockhash — nobody (including us) can precompute it. We produce the ECVRF proof and commit sha256(proof) on-chain.
    alpha = sha256(slotHash ‖ drawId)
  4. Roll
    beta[0:32] picks the winner
    The roll is the first 32 bytes of the VRF output (beta). We walk the prefix-sum of weights — first holder whose slice covers the offset wins the whole pot. verifyVRF confirms the proof; the roll is forced by it.
    roll = beta[0:32] (beta = ECVRF output)
SECTION 02

Recompute the roll. Right here. In your browser.

The widget recomputes the VRF input alpha = sha256(slotHash ‖ drawId), verifies the ECVRF proof itself (verifyVRF, RFC 9381) against the operator key, and confirms the published roll IS beta[0:32] — the entire chain, in your browser. Collector Crypt is an independent cross-check that the operator key is the one frozen on-chain.

RECOMPUTED IN BROWSER
ECVRF (RFC 9381) · Collector Crypt VRF
✓ VERIFIED
DRAW #2118
AUTO-RUN · NO FETCH
VRF authority
13R5zhNirknRrskNyEmyZuC5NNEQWcSwN5w8BUn6qnp8
Slot
439544121
Slot hash
168febb3c60fecc69a9f2564b1fc2648fd6de9e8966386e4866e5d8c0d88d784
alpha (published)
85bb53aaa52c692546de1364f28097bbe5359690d4a5e274d0e2c074743d39ed
alpha (recomputed)
85bb53aaa52c692546de1364f28097bbe5359690d4a5e274d0e2c074743d39ed
Alpha binds slot
alpha === sha256(slotHash ‖ drawId)
Operator VRF key
e75d1717431b1c691084425d0a0d96f094c7e72fb9d35a49b7052326d8f48f0e
ECVRF proof valid
verifyVRF(operatorKey, alpha, proof) === true (in-browser)
beta (VRF output)
84c2e4c03110c4639aab6f2c49b7db2e3e6a093b65af4e66818f1fc1d1a1ccbe50d0a018ff0776e9fab356e83de47a7f13b24a44f240205fc526dfd6d7e996e3
Published roll
0x84c2e4c03110c4639aab6f2c49b7db2e3e6a093b65af4e66818f1fc1d1a1ccbe
Roll is beta[0:32]
rollHex === beta[0:32]
Snapshot root
5bf7923959b92760fa73e8adddd297be5fc977242f3f7c66ceebce6581183a67
Holders
2,020
Eligible total
905,686,260 GACHA
Winner balance
32,293,315 GACHA
Winner odds
balance / eligible = 3.5656% (matches published)
On-chain commit
12iFM8Def2Lu1m385puaB6wN9RxmdyydozWaqrXnk3kj
Owner (verify input)
HuTNYccZn2U3sNpJnVTgyi9XZFRo9GjbJHBjc1F2tWYL
Label (verify input)
raffle
Memo (verify input)
pg-raffle-2118
Proof (verify input)
2f4c6545a94f36df4ee62481802936f049636e7a141d0dcfa5c37e28c784f7f99a7d75b211ab947ad9f0cb2e20f00971f173439497e2fc74c29934060c5caa55acefdd2c8c888cde720e3c285f4bd90e

Verified in your browser: alpha binds the public slot, the ECVRF proof checks out under the published operator key, and the roll IS beta[0:32]. The winner is then the balance-weighted pickWinner(snapshot, roll) walk — the snapshot itself is committed by the Merkle root above (not downloaded here), so the winner + odds rows are informational.

The potnothing opened

No packs were opened this window, so there was nothing to win.

No packs were opened during this window

No winner

The draw ran on schedule, but no packs were opened during the window, so there was nothing to award.

REFERENCE IMPLEMENTATION

Copy-paste. Run it locally. Same answer.

raffle-vrf-roll.tsTypeScript
import { verifyVRF, vrfProofToHash } from '@collectorcrypt/vrf-client';
import { sha256 } from '@noble/hashes/sha2';

// alpha binds the resolved slot hash + draw id (32B slot hash || utf8 id)
const alpha = sha256(concat(slotHashBytes, utf8(String(drawId))));

// 1. the ECVRF proof must verify under our FROZEN operator key
const ok = verifyVRF(operatorPubkey, alpha, proof); // RFC 9381 -> true

// 2. the published roll must be the first 32 bytes of the VRF output
const roll = vrfProofToHash(proof).slice(0, 32); // === published rollHex

// 3. the winner: map roll into [0,1), walk the snapshot's weight
//    prefix-sum — the first holder whose slice covers it wins.

Node ≥ 20 · no dependencies · same output as the browser widget.

Missing rows land once the draw reveals. Very early draws predate parts of this record — what exists is shown, nothing is backfilled.This draw in historyHow the mechanism works