Every draw is provably fair. Enter the draw details below to independently verify the winner was selected correctly.
1. Seed: Each draw uses a finalized Solana blockhash β an unpredictable, publicly verifiable value that nobody can manipulate.
2. Hash: The seed is combined with the raffle type: blockhash:rare and hashed using FNV-1a (32-bit).
3. Roll: The hash becomes the seed for Mulberry32 PRNG, which generates the winning ticket number: roll = mulberry32(seed) % total_tickets
4. Winner: Tickets are assigned sequentially by holder. The wallet whose ticket range contains the roll wins.
Anyone can reproduce this calculation. Same inputs = same output. Always.
Loading...