Equal-chance draw on Starknet with the same fairness principle: freeze the ordered ticket set, request unbiased randomness, winner = randomness mod N. Contract commentary is Cairo-oriented. Explorer ↗
Verify yourself on ZK L2
- Open Starkscan and open the published pool contract / class.
- Read get_pool(felt252) or storage for entry_commitment and committed_count (N).
- Locate the fulfill/draw event that carries randomness from the entropy adapter.
- Compute winner = randomness mod N in your browser (widget below) — same rule as EVM.
- Starknet commitments often use Poseidon or Pedersen (not keccak256); use the hash the contract documents.
Verify your ticket or NFT code
Before the draw: confirm your ticket exists and is settled. After the draw: see whether you won with equal chance for every ticket on this network path.
How the draw is fair on ZK L2
Loading contract commentary…
// Loading…