Here you'll find list of our past raffles. You can check giveaway winners, participants, winning ticket and more.
You can verify winning ticket and check if it belongs to person, that won. To do that use node.js code provided in /giveaway page. We are creating secret instantly after creating giveaway, which is used to calculate winning percentage.
You can calculate winning percentage with formula:
hexString - first 8 chars of secret
hexValue - hexString converted to number
16^8 - 4294967296 - biggest possible value of hexValue
winningPercentage = hexValue / 4294967296
If we would change secret during giveaway and you would want to verify if we didn't change it, our node.js code would return that hashes doesn't match. Hash is a secret hashed by sha512 hashing function. If secret changes by a bit, hash changes completely.