Bitcoin Forum

Economy => Marketplace => Topic started by: bitcoinlottery on May 25, 2011, 12:12:33 PM



Title: Bitcoin Lottery: minimum just 0.01 btc! Next draw: July 1 Jackpot 1.52 btc
Post by: bitcoinlottery on May 25, 2011, 12:12:33 PM
What is the Bitcoin Lottery?

The Bitcoin Lottery is a lottery where anyone can win, the lottery takes no share and the process is transparent. The code that picks the winner(s) is open source.

How does it work?
You can send an arbitrary amount of bitcoins (minimum 0.01 bitcoin) to an adress. The adress for next lottery (closes July 1) is:

Quote
1LUeahDNnVwqh8utERNxPhoh7zdzSmh4AG
(view: http://blockexplorer.com/address/1LUeahDNnVwqh8utERNxPhoh7zdzSmh4AG (http://blockexplorer.com/address/1LUeahDNnVwqh8utERNxPhoh7zdzSmh4AG))

When do I win and how much?
All bets are randomly assigned to a block. Each block is equal to the average deposit. The program picks randomly a block and returns the winners and their share (in percent).
For example, if you send 0.1 bitcoin and the average is 1 bitcoin, you probably end up in one block and then you win 10% of the draw.
If you send 1 bitcoin and the average is 1 bitcoin, you probably end up in two blocks randomly, for example 10 cents in one block and 90 cents in another. If you win with the first block you win 10%, the second block will return 90% of the draw. So to be sure to have the chance of winning 100% you need 2 bitcoins.
The program is designed in such a way the lottery will always return 100% of the jackpot size.

Don't you cheat?
No. The first and second block on 1 July (after 0:00 UTC) will be used as random strings by adding them and create a SHA256 hash.

The code (Python)
Code:
import math
tickets = [
    ["1Km4sASEeKUWPtjRaSxmVghF5FfkadWVei",2],
    ["18uZGH42pcmHVtZ8sux7bCf8oJJtSCAAJs",1],
    ["1Jmn97kfJ6DBBCuft6Z1oW8e2Lwgheyr6s",2],
    ["1Jmn97kfJ6DBBCuft6Z1oW8e2Lwgheyr6s",1],
    ["1Jmn97kfJ6DBBCuft6Z1oW8e2Lwgheyr6s",1],
    ]

class BitcoinLottery:
    def __init__(self):
        self.total = 0
        for x in tickets:
            self.total += x[1]
        self.BLOCKSIZE = int(math.ceil(self.total/float(len(tickets))))

    def shuffle(self, rand):
        i = 0
        prevx = 0
        for t in range(len(tickets)):
           j=0
           shuffle=0
           for x in range(t, len(rand)):
               j = j + ord(rand[x])
           shuffle = j % len(tickets) - i          
           tickets[i], tickets[i+shuffle] = tickets[i+shuffle], tickets[i]
           if (i < len(rand)-1):
               i+=1
           else:
               i=0  
   
    def calculate(self):
        blocks = []
        block=0
        for x in tickets:
            k = x[0]
            v = x[1]
            nblock=block
            while(v>0):
                r = self.BLOCKSIZE - block % self.BLOCKSIZE
                if (v <= r):
                    a = v
                    nblock+=v
                    v = 0
                else:
                    a = r
                    v -= r
                    nblock += r
                blocks.append([int(block/self.BLOCKSIZE),k,a])
                block = nblock
        rand = 0
        print("total: " + str(float(self.total)/100) + " bitcoins")
        for x in blocks:
            if (x[0] == rand):
                print(x[1] + " won " + str(float(x[2]*self.total)/10000 * (100/self.BLOCKSIZE)) + " bitcoins")
bit = BitcoinLottery()
bit.shuffle('3029309209i1');
bit.calculate()


Title: Re: Bitcoin Lottery: 100% payout, with minimum amount of just 0.01 btc!
Post by: bitcoinlottery on May 25, 2011, 12:36:47 PM
Note: this lottery is just for fun, I don't want to earn any money with it.


Title: Re: Bitcoin Lottery: 100% payout, open source, with minimum amount of just 0.01 btc!
Post by: bitcoinlottery on May 25, 2011, 10:39:35 PM
The first 6 participants will get 0.02 bitcoin. So when you enter with 0.01 bitcoin you earn 0.01 and can also win the lottery!


Title: Re: Bitcoin Lottery: first 6 get 0.02 btc (directly), minimum amount just 0.01 btc!
Post by: Jfqs6m on May 25, 2011, 11:28:36 PM
Eh I guess it's worth a shot. Something to spend my free bitcoins I got on.


Title: Re: Bitcoin Lottery: first 6 get 0.02 btc (directly), minimum amount just 0.01 btc!
Post by: E on May 26, 2011, 12:37:01 AM
Sent.


Title: Re: Bitcoin Lottery: first 6 get 0.02 btc (directly), minimum amount just 0.01 btc!
Post by: bitcoinlottery on May 26, 2011, 04:08:07 AM
I sent you the 0.02 coin!


Title: Re: Bitcoin Lottery: first 6 get 0.02 btc (directly), minimum amount just 0.01 btc!
Post by: Jfqs6m on May 26, 2011, 04:17:45 AM
I sent you the 0.02 cents!

Thank you very much!


Title: Re: Bitcoin Lottery: first 6 get 0.02 btc (directly), minimum amount just 0.01 btc!
Post by: bitcoinlottery on May 26, 2011, 04:32:36 AM
Jackpot: 0.07, two days to go!
If the total jackpot is not more than a bitcoin I am inclined to reduce the size of the blocks (to not give everyone his deposit back, but get one or a few winners). I am thinking about what size would be the best? The average deposit?
Input welcome!


Title: Re: Bitcoin Lottery: first 6 get 0.02 btc (directly), minimum amount just 0.01 btc!
Post by: bitlotto on May 26, 2011, 04:34:26 AM
I think I get what your doing... I think. I'm pretty tired and I don't know python so I'll have to look later.
I get that your trying to be open but even though people can see the code there is no way really for the users to know you are actually running it. Someone could just -say- they are going to run that code. Enter a few of their own entries. Tell the users that they ran the code but instead just pay themselves and make up results that fit. (I'm not saying you are doing this but for people to bet lot's of money they need CERTAINTY you can't cheat. I've seen a few lottery scams but I am willing to help you make it so that you can't cheat...) Anyways, good luck!


Title: Re: Bitcoin Lottery: first 6 get 0.02 btc (directly), minimum amount just 0.01 btc!
Post by: Jfqs6m on May 26, 2011, 04:36:44 AM
I think I get what your doing... I think. I'm pretty tired and I don't know python so I'll have to look later.
I get that your trying to be open but even though people can see the code there is no way really for the users to know you are actually running it. Someone could just -say- they are going to run that code. Enter a few of their own entries. Tell the users that they ran the code but instead just pay themselves and make up results that fit. (I'm not saying you are doing this but for people to bet lot's of money they need CERTAINTY you can't cheat. I've seen a few lottery scams but I am willing to help you make it so that you can't cheat...) Anyways, good luck!

Eh I guess it's still a possibility but he did indeed send me my .02 BTC for being one of the first 6....


Title: Re: Bitcoin Lottery: first 6 get 0.02 btc (directly), minimum amount just 0.01 btc!
Post by: bitlotto on May 26, 2011, 04:40:45 AM
I think I get what your doing... I think. I'm pretty tired and I don't know python so I'll have to look later.
I get that your trying to be open but even though people can see the code there is no way really for the users to know you are actually running it. Someone could just -say- they are going to run that code. Enter a few of their own entries. Tell the users that they ran the code but instead just pay themselves and make up results that fit. (I'm not saying you are doing this but for people to bet lot's of money they need CERTAINTY you can't cheat. I've seen a few lottery scams but I am willing to help you make it so that you can't cheat...) Anyways, good luck!

Eh I guess it's still a possibility but he did indeed send me my .02 BTC for being one of the first 6....
I know. I'm not saying he is a scammer but he could change a few things to eliminate a very easy way to fake results.


Title: Re: Bitcoin Lottery: first 6 get 0.02 btc (directly), minimum amount just 0.01 btc!
Post by: bitcoinlottery on May 26, 2011, 04:47:50 AM
I think I get what your doing... I think. I'm pretty tired and I don't know python so I'll have to look later.
I get that your trying to be open but even though people can see the code there is no way really for the users to know you are actually running it. Someone could just -say- they are going to run that code. Enter a few of their own entries. Tell the users that they ran the code but instead just pay themselves and make up results that fit. (I'm not saying you are doing this but for people to bet lot's of money they need CERTAINTY you can't cheat. I've seen a few lottery scams but I am willing to help you make it so that you can't cheat...) Anyways, good luck!
Yes, but I apply the same method as you do: people can see what comes in and out. So people can see it is paid to one / a few that participated=).


Title: Re: Bitcoin Lottery: first 6 get 0.02 btc (directly), minimum amount just 0.01 btc!
Post by: bitlotto on May 26, 2011, 04:56:03 AM
Yes, but I apply the same method as you do: people can see what comes in and out. So people can see it is paid to one / a few that participated=).
Yes, you are right in that you show the winnings move around BUT unlike yours *I have NO control* over picking the winner. I can not fake the random numbers. That was what I was getting at. Yes, you show that you are paying. BUT, the results themselves can not be verified in yours. The key is getting some type of list of entrants, publish it, THEN have the winners come from random numbers that you CAN NOT manipulate but still everyone can get those random numbers. If you want help coming up with something I'm willing to help...


Title: Re: Bitcoin Lottery: first 6 get 0.02 btc (directly), minimum amount just 0.01 btc!
Post by: bitcoinlottery on May 26, 2011, 05:06:12 AM
Okay, great point! If the jackpot contains more than a few bitcoins I will surely look at what I can do. Your method is very nice by the way!


Title: Re: Bitcoin Lottery: first 6 get 0.02 btc (directly), minimum amount just 0.01 btc!
Post by: bitcoinlottery on May 26, 2011, 05:14:40 AM
Do you know whether the transaction hashes are totally random/uncontrollable? If so, the hashes can be added up and used for the random generator as quite easy alternative.


Title: Re: Bitcoin Lottery: first 6 get 0.02 btc (directly), minimum amount just 0.01 btc!
Post by: eskil on May 26, 2011, 06:17:53 AM
I would like to join aswell, but I am new to bitcoin and only got 0.02 bc and it wont let me send 0.01
Always says something about transaction fee because the amount is too large!? ???


Title: Re: Bitcoin Lottery: first 6 get 0.02 btc (directly), minimum amount just 0.01 btc!
Post by: bitcoinlottery on May 26, 2011, 01:25:13 PM
I would like to join aswell, but I am new to bitcoin and only got 0.02 bc and it wont let me send 0.01
Always says something about transaction fee because the amount is too large!? ???
The current client asks 0.01 btc if you send small amounts. That amount is far larger in the development code.
Strange that it won't let you send 0.01 if you have 0.02... Maybe try to get some other cents (mining, trading, etc)?


Title: Re: Bitcoin Lottery: first 6 get 0.02 btc (directly), minimum amount just 0.01 btc!
Post by: bitlotto on May 26, 2011, 01:26:06 PM
Do you know whether the transaction hashes are totally random/uncontrollable? If so, the hashes can be added up and used for the random generator as quite easy alternative.
They are fairly random. BUT the RANDOM number for the winner has to come after all the tickets, for IF the user knows what transaction hash will win they could re-send over and over until they get a hash that wins. For mine, I wait till the tickets are in then set up finding who won.


Title: Re: Bitcoin Lottery: first 6 get 0.02 btc (directly), minimum amount just 0.01 btc!
Post by: bitcoinlottery on May 26, 2011, 01:30:20 PM
Do you know whether the transaction hashes are totally random/uncontrollable? If so, the hashes can be added up and used for the random generator as quite easy alternative.
They are fairly random. BUT the RANDOM number for the winner has to come after all the tickets, for IF the user knows what transaction hash will win they could re-send over and over until they get a hash that wins. For mine, I wait till the tickets are in then set up finding who won.
Yes I thought about that later. So basically secure hash the (big) random value and distribute the hash?


Title: Re: Bitcoin Lottery: first 6 get 0.02 btc (directly), minimum amount just 0.01 btc!
Post by: bitcoinlottery on May 26, 2011, 01:31:23 PM
The algorithm changed by the way. The block size is now the average deposit.


Title: Re: Bitcoin Lottery: first 6 get 0.02 btc (directly), minimum amount just 0.01 btc!
Post by: bitcoinlottery on May 26, 2011, 04:45:55 PM
Okay, I implemented a somewhat simple random generator. It is quite secure for now, but I will likely improve it in the future. The SHA 256 hash for the random string is:
Quote
8b3de709bd7c91e2eeeb42c2cce5f63f38866fa72075b3d4da8aa8c88f2c5a7c


Title: Re: Bitcoin Lottery: first 6 get 0.02 btc (directly), minimum amount just 0.01 btc!
Post by: bitcoinlottery on May 26, 2011, 05:05:01 PM
Do you know whether the transaction hashes are totally random/uncontrollable? If so, the hashes can be added up and used for the random generator as quite easy alternative.
They are fairly random. BUT the RANDOM number for the winner has to come after all the tickets, for IF the user knows what transaction hash will win they could re-send over and over until they get a hash that wins. For mine, I wait till the tickets are in then set up finding who won.
Do you think it is secure now?

Edit: okay it is still possible for me to try and try till I win... so that's the reason to add the hash of block 1 and 2 after 0:00... =) I maybe implement that next week.


Title: Re: Bitcoin Lottery: first 6 get 0.02 btc (directly), minimum amount just 0.01 btc!
Post by: bitlotto on May 27, 2011, 03:26:21 AM
Do you know whether the transaction hashes are totally random/uncontrollable? If so, the hashes can be added up and used for the random generator as quite easy alternative.
They are fairly random. BUT the RANDOM number for the winner has to come after all the tickets, for IF the user knows what transaction hash will win they could re-send over and over until they get a hash that wins. For mine, I wait till the tickets are in then set up finding who won.
Do you think it is secure now?

Edit: okay it is still possible for me to try and try till I win... so that's the reason to add the hash of block 1 and 2 after 0:00... =) I maybe implement that next week.
Ya, I think your getting why I use block data as well. Your hash of random data is secure against others cheating but you still could. Adding block data makes it so you can't as well.


Title: Re: Bitcoin Lottery: first 6 get 0.02 btc (3 to go), minimum amount just 0.01 btc!
Post by: bitcoinlottery on May 28, 2011, 07:56:11 AM
Just 14 hours to go! You can still get your 0.02 btc!


Title: Re: Bitcoin Lottery: first 6 get 0.02 btc (3 to go), minimum amount just 0.01 btc!
Post by: eskil on May 28, 2011, 11:04:34 AM
ok i finally managed to transfer :D am i still on of the first 6 ?


Title: Re: Bitcoin Lottery: first 6 get 0.02 btc (3 to go), minimum amount just 0.01 btc!
Post by: bitcoinlottery on May 28, 2011, 11:11:01 AM
ok i finally managed to transfer :D am i still on of the first 6 ?
Yes, but I didn't recieve it? http://blockexplorer.com/address/12AtrGLZmFQKe25EMtUy5fGWEBeHFdoGD3


Title: Re: Bitcoin Lottery: first 6 get 0.02 btc (3 to go), minimum amount just 0.01 btc!
Post by: bitcoinlottery on May 28, 2011, 11:52:47 AM
I did now =)


Title: Re: Bitcoin Lottery: first 6 get 0.02 btc (3 to go), minimum amount just 0.01 btc!
Post by: bitcoinlottery on May 28, 2011, 03:03:12 PM
Size is 0.11 bitcoin now!


Title: Re: Bitcoin Lottery: first 6 get 0.02 btc (3 to go), minimum amount just 0.01 btc!
Post by: Dansker on May 28, 2011, 04:13:22 PM
Wait are you saying I am guaranteed 0.01 BTC in profit + a chance to win if I transfer you my 0.01 BTC?????


Title: Re: Bitcoin Lottery: first 6 get 0.02 btc (3 to go), minimum amount just 0.01 btc!
Post by: slowmining on May 28, 2011, 04:42:59 PM
Just sent 0.04.


Title: Re: Bitcoin Lottery: first 6 get 0.02 btc (3 to go), minimum amount just 0.01 btc!
Post by: bitcoinlottery on May 28, 2011, 05:38:03 PM
Wait are you saying I am guaranteed 0.01 BTC in profit + a chance to win if I transfer you my 0.01 BTC?????
Yes, that was actually the case ;) For me 6 * 0.03 = 0.18, bigger than the jackpot size ;)


Title: Re: Bitcoin Lottery: minimum amount just 0.01 bc! A few hours left...
Post by: frycicle on May 28, 2011, 05:42:30 PM
Sent .01 BTC.


Title: Re: Bitcoin Lottery: minimum amount just 0.01 bc! A few hours left...
Post by: bitcoinlottery on May 28, 2011, 06:00:22 PM
Then it must be 0.16 btc now =)


Title: Re: Bitcoin Lottery: minimum amount just 0.01 bc! A few hours left...
Post by: Wes1180 on May 28, 2011, 07:00:56 PM
I sent 0.1, hope I'm not too late :) (also am I one of the six?)


Title: Re: Bitcoin Lottery: minimum amount just 0.01 bc! A few hours left...
Post by: bitcoinlottery on May 28, 2011, 09:09:00 PM
I sent 0.1, hope I'm not too late :) (also am I one of the six?)

No unfortunately not. Jackpot is now 0.36 btc. I will look tommorow who won. But let's say the game stops at 23:59:59 28 may UTC (3 hours). The others will participate in next lotto.


Title: Re: Bitcoin Lottery: minimum amount just 0.01 bc! 3 hours left...
Post by: bitcoinlottery on May 29, 2011, 02:03:19 PM
113Wq7ngZiqosdwrmjzXxmvf5boPUaQw95 won 0.36 btc!

The random key was

Xgh=P3cTMcCGV=<O7cg4cn@gVx>QMwywOa\3DyK^tW<gg5?eOCstqZUEF\a^5edlcI6Ob=sLjIl>9P?u]3GnD\X0f3ZXfJK><CbW

with tickets:
    ["1Km4sASEeKUWPtjRaSxmVghF5FfkadWVei",2],
    ["18uZGH42pcmHVtZ8sux7bCf8oJJtSCAAJs",1],
    ["1Jmn97kfJ6DBBCuft6Z1oW8e2Lwgheyr6s",2],
    ["1Jmn97kfJ6DBBCuft6Z1oW8e2Lwgheyr6s",1],
    ["1Jmn97kfJ6DBBCuft6Z1oW8e2Lwgheyr6s",1],
    ["1Myn229CXkW796kDrUd9obGbC43aYzeTAb",3],
    ["1368J5rDUheBr1kvaubWuDDFBnSaTcBogK",1],
    ["1EVP7etmA6RRBFW7sgf595QtiUxX3fs1Mt",4],
    ["1F35MvPKPSEc1L198dPR1weyXnkDG516fN",1],
    ["113Wq7ngZiqosdwrmjzXxmvf5boPUaQw95",10],
    ["1NcG2RD6SQ2DE34tuT2fEFy2BEBP1ritpA",10]


Title: Re: Bitcoin Lottery: minimum amount just 0.01 btc! New draw: July 1
Post by: bitcoinlottery on May 29, 2011, 04:08:20 PM
I need 0.03 bitcoin for the transaction... But I have only 0.36 btc because of the first six times bonus... So the wait is till I get some mining cents or new tickets.


Title: Re: Bitcoin Lottery: minimum amount just 0.01 btc! New draw: July 1
Post by: bitcoinlottery on May 30, 2011, 05:31:12 AM
0.02 btc to go...


Title: Re: Bitcoin Lottery: minimum amount just 0.01 btc! New draw: July 1
Post by: bitcoinlottery on May 30, 2011, 10:10:28 AM
0.01 btc to go...

Jackpot for 3 July is 0.04 btc!


Title: Re: Bitcoin Lottery: minimum just 0.01 btc! New draw: July 1 Current Jackpot .04 btc
Post by: bitcoinlottery on May 31, 2011, 06:00:51 AM
Paid it: http://blockexplorer.com/address/113Wq7ngZiqosdwrmjzXxmvf5boPUaQw95
(It is the one with date 2011-05-31 05:58:20)
Congratulations!


Title: Re: Bitcoin Lottery: minimum just 0.01 btc! New draw: July 1 Current Jackpot .04 btc
Post by: ene on May 31, 2011, 04:38:31 PM
Can't you just send 100 BTC into the fund a few minutes before the draw closes, and then almost certainly win everybody's bitcoins? Then use those bitcoins again for the next lottery.


Title: Re: Bitcoin Lottery: minimum just 0.01 btc! New draw: July 1 Current Jackpot .04 btc
Post by: bitcoinlottery on May 31, 2011, 04:45:10 PM
Can't you just send 100 BTC into the fund a few minutes before the draw closes, and then almost certainly win everybody's bitcoins? Then use those bitcoins again for the next lottery.
Yes, the chance of winning is proportional to the amount. You have also a small chance of loosing (almost) all your bitcoins if the average is small. It is about the same as buying almost all tickets of a lottery. And if you win, you almost win nothing (compared to your 100 btc)


Title: Re: Bitcoin Lottery: minimum just 0.01 btc! New draw: July 1 Current Jackpot .04 btc
Post by: ene on May 31, 2011, 05:09:08 PM
Can't you just send 100 BTC into the fund a few minutes before the draw closes, and then almost certainly win everybody's bitcoins? Then use those bitcoins again for the next lottery.
Yes, the chance of winning is proportional to the amount. You have also a small chance of loosing (almost) all your bitcoins if the average is small. It is about the same as buying almost all tickets of a lottery. And if you win, you almost win nothing (compared to your 100 btc)

Yes, like any lottery the expected amount of winning will be less than the amount you put in (unless you are the only person playing the lottery). But since you're you, you can just choose not to pay out the money in that case and leave the forum forever. You don't make any profit from this lottery (or any future lottery) so you have no reason to hang around.


Title: Re: Bitcoin Lottery: minimum just 0.01 btc! New draw: July 1 Current Jackpot .04 btc
Post by: bitcoinlottery on May 31, 2011, 05:27:18 PM
Can't you just send 100 BTC into the fund a few minutes before the draw closes, and then almost certainly win everybody's bitcoins? Then use those bitcoins again for the next lottery.
Yes, the chance of winning is proportional to the amount. You have also a small chance of loosing (almost) all your bitcoins if the average is small. It is about the same as buying almost all tickets of a lottery. And if you win, you almost win nothing (compared to your 100 btc)

Yes, like any lottery the expected amount of winning will be less than the amount you put in (unless you are the only person playing the lottery). But since you're you, you can just choose not to pay out the money in that case and leave the forum forever. You don't make any profit from this lottery (or any future lottery) so you have no reason to hang around.
The expected amount here is exactly the same you put in.
It is just the fun. Maybe some day I create a lottery that does make some profit, but for now I leave it this way. Making 1 or 2 percent profit is also not worth the time you put in it (or the Jackpot must be really really high).


Title: Re: Bitcoin Lottery: minimum just 0.01 btc! New draw: July 1 Current Jackpot .04 btc
Post by: ene on May 31, 2011, 05:45:18 PM
The expected amount here is exactly the same you put in.

My mistake, in the same post I simultaneously remembered and forgot that you aren't charging any fees.  :D


Title: Re: Bitcoin Lottery: minimum just 0.01 btc! New draw: July 1 Current Jackpot .04 btc
Post by: bitcoinlottery on May 31, 2011, 09:32:09 PM
The expected amount here is exactly the same you put in.

My mistake, in the same post I simultaneously remembered and forgot that you aren't charging any fees.  :D
Never mind.


Title: Re: Bitcoin Lottery: minimum just 0.01 btc! Next draw: July 1
Post by: bitcoinlottery on June 01, 2011, 08:06:35 AM
Jackpot 0.07 btc!


Title: Re: Bitcoin Lottery: minimum just 0.01 btc! Next draw: July 1
Post by: bitcoinlottery on June 01, 2011, 07:49:32 PM
0.32 btc now!


Title: Re: Bitcoin Lottery: minimum just 0.01 btc! Next draw: July 1
Post by: AltPluzF4 on June 01, 2011, 08:38:31 PM
Stupid question, but...

I made this transaction: http://blockexplorer.com/tx/7341ab3a4ad66dfb7750e21fdd61f78d25f33cf1562da3180ae14508c949ada1

It has two addresses though.
1eA54G3kn36wEfDazdF1DEizaWkc2pXTF
14FMPixUmA8ha77LzzDaNJfVMhd9zrdqVr

The first address, is not mine. The second one is.
So, what happens if my "ticket" won? Would the winnings go to that other address? :-/


Title: Re: Bitcoin Lottery: minimum just 0.01 btc! Next draw: July 1
Post by: ene on June 01, 2011, 08:50:52 PM
How can you only own one of those addresses? Are you using an e-wallet or something?


Title: Re: Bitcoin Lottery: minimum just 0.01 btc! Next draw: July 1
Post by: Maged on June 01, 2011, 08:54:31 PM
Stupid question, but...

I made this transaction: http://blockexplorer.com/tx/7341ab3a4ad66dfb7750e21fdd61f78d25f33cf1562da3180ae14508c949ada1

It has two addresses though.
1eA54G3kn36wEfDazdF1DEizaWkc2pXTF
14FMPixUmA8ha77LzzDaNJfVMhd9zrdqVr

The first address, is not mine. The second one is.
So, what happens if my "ticket" won? Would the winnings go to that other address? :-/

That first address was used to give you your "change" from a previous transaction. You own that address, it's just hidden from you in the UI. You will still receive bitcoins just fine on that address.


Title: Re: Bitcoin Lottery: minimum just 0.01 btc! Next draw: July 1
Post by: AltPluzF4 on June 01, 2011, 08:56:15 PM
How can you only own one of those addresses? Are you using an e-wallet or something?

http://sites.google.com/site/altpluzf4/lotto.png

I have no idea.

*Edit* Right before submitting...
Thanks for the clarification Maged. I guess I've not invested enough time into learning the inner workings of bitcoin :-/
Sorry for my stupidity.

Thanks for your time.


Title: Re: Bitcoin Lottery: minimum just 0.01 btc! Next draw: July 1
Post by: bitcoinlottery on June 02, 2011, 01:48:27 PM
Jackpot is 0.33 btc now!


Title: Re: Bitcoin Lottery: minimum just 0.01 btc! Next draw: July 1
Post by: PIO on June 02, 2011, 02:39:55 PM
I just sent 0.01, do you see my address?


Title: Re: Bitcoin Lottery: minimum just 0.01 btc! Next draw: July 1
Post by: bitcoinlottery on June 02, 2011, 03:50:25 PM
I just sent 0.01, do you see my address?
Yes: 1KSHom9Nve3zAhdrBB5PZGnTaPVS93YAgE

Jackpot is 0.54 btc now!


Title: Re: Bitcoin Lottery: minimum just 0.01 btc! Next draw: July 1
Post by: weish on June 03, 2011, 08:10:11 PM
sent my .01 bitcoins. now i'm broke until the mining pool i'm in pays out


Title: Re: Bitcoin Lottery: minimum just 0.01 btc! Next draw: July 1
Post by: piuk on June 03, 2011, 11:21:07 PM
Thought i'd give it a whirl, just put in 0.47 jackpot now 0.98  ;D


Title: Re: Bitcoin Lottery: minimum just 0.01 btc! Next draw: July 1
Post by: bitcoinlottery on June 04, 2011, 08:25:35 AM
Thought i'd give it a whirl, just put in 0.47 jackpot now 0.98  ;D
No, it is even bigger, 1.02 btc  :D. (There were some bitcoin cents used to pay the previous winner).


Title: Re: Bitcoin Lottery: minimum just 0.01 btc! Next draw: July 1 Jackpot 1.02 btc
Post by: bitcoinlottery on June 04, 2011, 08:33:20 PM
I have a new game: Double Trouble!
http://forum.bitcoin.org/index.php?topic=12067.msg168501#msg168501


Title: Re: Bitcoin Lottery: minimum just 0.01 btc! Next draw: July 1 Jackpot 1.02 btc
Post by: bitcoinlottery on June 05, 2011, 06:20:39 AM
26 days to go! Jackpot 1.02 btc!


Title: Re: Bitcoin Lottery: minimum just 0.01 btc! Next draw: July 1 Jackpot 1.02 btc
Post by: tito13kfm on June 05, 2011, 06:46:45 AM
I put in 2 entries at .25BTC each.  Here's to dreaming!


Title: Re: Bitcoin Lottery: minimum just 0.01 btc! Next draw: July 1 Jackpot 1.02 btc
Post by: bitcoinlottery on June 05, 2011, 07:00:38 AM
Great!
Jackpot 1.52 btc.


Title: Re: Bitcoin Lottery: minimum just 0.01 btc! Next draw: July 1 Jackpot 1.52 btc
Post by: bitcoinlottery on June 05, 2011, 08:33:41 PM
I am considering also to use Mega Millions numbers, like BitLotto. Any input?


Title: Re: Bitcoin Lottery: minimum just 0.01 btc! Next draw: July 1 Jackpot 1.52 btc
Post by: tito13kfm on June 05, 2011, 11:30:19 PM
I always kill these things when I sign up.  First was Double Trouble, now this.  Lol.  I am the last transaction on both


Title: Re: Bitcoin Lottery: minimum just 0.01 btc! Next draw: July 1 Jackpot 1.52 btc
Post by: bitlotto on June 06, 2011, 01:21:18 AM
I am considering also to use Mega Millions numbers, like BitLotto. Any input?
I think it's a great idea!  ;D Would you hash it like me?


Title: Re: Bitcoin Lottery: minimum just 0.01 btc! Next draw: July 1 Jackpot 1.52 btc
Post by: bitcoinlottery on June 06, 2011, 05:47:22 AM
I am considering also to use Mega Millions numbers, like BitLotto. Any input?
I think it's a great idea!  ;D Would you hash it like me?
Yes, I think I will use the same hash... ;)