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.
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.com3. 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.