Results
Every giveaway is sealed with a downloadable entry ledger (CSV) and a SHA-256 hash. The winner is selected using a future Bitcoin block hash so anyone can independently verify the result.
How to verify fairness
- Download the Glass Ledger CSV for the giveaway.
- Confirm the SHA-256 of the downloaded file matches the seal shown on this page.
- Confirm the target Bitcoin block height/hash on a public block explorer.
- Compute the winning ticket using the published formula and the sealed ticket count (N).
- Confirm the winner shown matches the computed ticket.
Show the exact steps + formula
The SHA-256 seal is calculated over the exact CSV bytes served for download.
Verify the seal (SHA-256)
Download the CSV, then run:
shasum -a 256 your-file.csv
Compare the output to the SHA-256 seal shown on this page for that giveaway.
Compute the winning ticket
Let N be the sealed ticket count (shown on the giveaway card). Convert the Bitcoin block hash from hex to a decimal integer, then compute:
(hash_decimal % N) + 1
Loading…