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

  1. Download the Glass Ledger CSV for the giveaway.
  2. Confirm the SHA-256 of the downloaded file matches the seal shown on this page.
  3. Confirm the target Bitcoin block height/hash on a public block explorer.
  4. Compute the winning ticket using the published formula and the sealed ticket count (N).
  5. 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…