Post
Topic
Board Service Announcements (Altcoins)
Re: www.BitcoinPrizeDraw.com - win BTC - 50/50 chance to win with just 10 tickets!
by
upgradeadvice
on 14/04/2016, 21:35:36 UTC
I wanted to add a few technical details about the drawing at https://mue.bitcoinprizedraw.com :

1. The current payout address is 1AkPRSTuUgjJ4pF3Sm6f4PR2BvAFEZ9Jjh
You can watch this address to verify payments are being made to the winners.

2. I have provided Python code to allow users to reproduce the drawing results using Python's random library.
Code:
addr_list = []
prize_list = [0.03, 0.025, 0.02, 0.015, 0.01]
_seed = ""
seed(_seed)
shuffle(addr_list)
for prize in prize_list:
    winner = addr_list.pop()
    print("%s wins %s" % (winner,prize))
    while winner in addr_list: addr_list.remove(winner)
    shuffle(addr_list)

The addr_list and _seed values can be found here after the drawing is complete. The prize_list value is variable. The valid code can always be found under the Drawing Rules and Prizes tab at https://mue.bitcoinprizedraw.com

3. I am always open to suggestions for improvements. Please feel free to contact me here via pm if you have anything to add or if you need help with anything.