Why Every Draw Gets Logged (And Why That Matters)
August 2, 2026
Most spin-the-wheel tools show you one thing: a graphic that spins and stops somewhere. There is no record of what happened five minutes ago, let alone last week. So when somebody asks whether a draw was run fairly, the honest answer is “you will have to take my word for it”, and the organiser who is telling the truth has exactly the same answer available to them as the one who is not.
That symmetry is the real problem. It is not that draws are usually rigged. It is that an honest organiser has no way to distinguish themselves from a dishonest one, which means suspicion costs nothing to hold and nothing can dislodge it.
Fairness and provability are different properties
A draw can be perfectly fair and completely unprovable. It can also be provable and unfair, since a rigged draw with excellent records is still rigged. The two are independent, and tools tend to work hard on the first while ignoring the second.
Which is backwards, because almost every actual dispute is about provability. Nobody argues that random number generators do not work. They argue about who was eligible, when entries closed, whether this was the first spin, and whether the prize was ever sent. Those are all questions about evidence, and a spinning graphic produces none.
What gets written down, and when
Every spin is recorded the moment it happens, covering which name won, when, and on which wheel, inside the same database transaction that increments the win counter and applies elimination. All of it completes before the result is transmitted to any browser, including the organiser’s own.
The ordering is the whole point. If the result were sent first and stored afterwards, there would be a window, small but real, in which an outcome existed on screen but not in the record. Writing first means the history is not a report of what the server did; it is the thing the server did. The screens are downstream of it.
Spins accumulate, they do not overwrite
Spinning again does not replace the previous result. Each draw is a new row, and the history grows.
This is the design decision that does the most work, and it is worth being precise about what it does and does not give you. It does not prevent an organiser from spinning five times and announcing their favourite, because nothing in software can prevent that. What it does is make the five spins visible. An organiser who announces one draw while the history shows five has not been stopped, but they have been made answerable, and that is a genuinely different situation from one where the earlier spins simply never existed.
It also means a legitimate redraw is survivable. Winners are sometimes ineligible, connections drop, somebody spins during a rehearsal. The right move is to keep both results and say what happened. A history with an explained anomaly in it reads as honest. A history with a gap in it cannot be explained at all, because the explanation would have to come from the person who made the gap.
Where a scheduled spin goes further
The one thing a log cannot do is stop repeated spinning, so there is a separate mechanism for draws where that matters: arm the wheel to fire at a published time.
Now nobody is at the keyboard when the draw happens, not the organiser and not anyone else. There is one spin, at an announced moment, with a timestamp that matches. The accusation is not rebutted; it stops being formulable. Combined with a published entry count beforehand, that is about as close to an unarguable draw as an online giveaway gets. The process around it is in how to run a raffle people trust.
What the record enables besides trust
Once every spin is stored rather than displayed and discarded, some useful things become free:
- Win counts per person, accumulating automatically. Immediately relevant once more than one prize is on the table.
- A leaderboard across a session, which is what you actually want during a long stream or a school term.
- An answer to “have I had a turn?”, the recurring question in any classroom or team rotation, and one that otherwise has no evidence in it and gets answered from memory by people with an interest in the answer.
- A public winners page listing who won what and when.
Payout proof: the part that actually matters
Here is the uncomfortable thing about giveaway scepticism. The question people are really asking is not “was the draw random?” It is “does this person ever actually send the prize?”
A draw log does not answer that. So an organiser can record what a winner actually received and attach evidence, whether a receipt, a shipping confirmation or a screenshot, and publish it: name, prize, date. Over several rounds that becomes a public track record, and it is by far the strongest asset a recurring giveaway can build. A channel with twelve months of logged, published payouts is in a completely different position from one offering a larger prize and a promise.
This is the step almost everyone skips, and it is the one that determines whether people bother entering next time.
Where it matters and where it does not
Proportion is worth keeping. A classroom pick going oddly is a minor annoyance, and nobody needs an audit trail to decide who reads next, which is exactly why the free wheel keeps no record at all and sends nothing anywhere. That is the right design for a list of children’s names.
A giveaway with a real prize, run in front of a community that has handed over their entries, is a different situation. There, the record is not bureaucracy. It is the only thing standing between an honest organiser and an accusation they have no way to answer. See the giveaway ideas guide for the formats where that shows up most.
The short version
A draw that cannot be checked afterwards is a draw you are asked to trust blindly, and an honest organiser gains nothing from being trustworthy because there is no way to demonstrate it. One that is timestamped, kept, and available to look back on can actually be defended, including in the awkward cases, which is the real test. See how the live spin works for how the pick itself is made and recorded, or the about page for why this exists.