Bitcoin Forum
July 11, 2025, 09:43:52 PM *
News: Latest Bitcoin Core release: 29.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 [2] 3 »
21  Bitcoin / Bitcoin Discussion / HOWTO: have a safe BTC storage w/o - encryption, backups, or a "clean" computer! on: June 30, 2011, 02:49:00 AM
This is meant for having a secure savings account without having to be an expert in computer security. It's safe and reliable. You protect your key more in an old school way in the "real world" as apposed to "digital space".

This app generates: Bitcoin address along with it's matching secret private key that you can use in the future to "unlock" the BTC. Until it's stored on a computer it's safe from online threats because it has never been online. It's like generating a new address but in an isolated environment. A "clean room" if you will. You then import the key when you want to spend it.

1. Get a Live Linux CD ISO image. Ubuntu is probably the easiest to use.
Can get at: http://www.ubuntu.com/download/ubuntu/download

2. Download BOTG (Bitcoin-Off-The-Grid) at: http://www.bitlotto.com/botg0.1.1.tar.gz
MD5: da7b36c1fd22d44cc62dd76f9e1aa072
(It's just a script. Source code can be read if wanted - Eventually, some Bitcoin specific distributions may include it)

3. Copy botg0.1.1.tar.gz onto a USB stick

4. Burn ISO image and leave CD in computer tray, then unplug computer from Internet

5. Reboot computer

6. Once the Live CD is fully booted insert USB stick

7. A window will probably open showing what's on the USB stick. If it doesn't, somewhere on the menu bar should be an icon to open USB stick.

8. Double click botg0.1.1.tar.gz and it will open. Click extract. Extract to home folder. (It will probably have a house icon)

9. Go back to file browser and click the "Home" button.

10. Double click botg.sh and select "Run In Terminal" OR Open Terminal program and type: ./botg.sh

11. Write down private key to unlock Bitcoin address along with the matching Bitcoin address

12. Reboot

13. THAT'S IT!


The address you record at the end will be the address you send BTC to. Because it was run off of a Live CD, no traces of the keys will be on your computer. It can't spread the key anywhere because there is no Internet. Because it was a Live CD, no operating system viruses will be able to spy on you while you are making the key. Not even a hardware keylogger would work for you aren't ever typing the key out! When you reboot everything is cleared and *nothing is left on the computer*. There is nothing to backup. Nothing to encrypt or safely make sure it's somewhere on a computer. All you need to is to keep the piece of paper safe. Instead of viruses, your risk will be someone finding that paper or it getting destroyed. Just be sure to think about what would happen if your house burned down or you hide the paper in something that could get stolen!

To access your money, right now it takes a bit of work. You currently have to patch Bitcoin to import it. It's coming down the feature pipeline and will probably show up soon. The private keys are very similar to what BitBills, casascius's paper wallet, etc are doing.

So far, I've made over 500 keys and have successfully imported them into Bitcoin without any error.


-the only risk computer wise is some type of BIOS virus - these are EXTREMELY rare. -if you have a small fortune and the tiniest risk is unacceptable, you could buy a brand new, cheap computer - run program - then destroy computer so it never goes online again - BUT that's kind of extreme!! LOL.
22  Bitcoin / Bitcoin Discussion / BTC up for grabs - a BOTG experiment - just claim the BTC! on: June 28, 2011, 03:48:07 AM
Game change.... Wink

It's a little experiment for testing BOTG (Bitcoin Off-The-Grid).
https://forum.bitcoin.org/index.php?topic=23081.0

For testing purposes the script does not need to be run on a Live CD -it's only a tiny amount of BTC- any popular current Linux distribution should be able to handle it. This will help test the algorithms.

What is does is:
-creates a secure address along with a key by which you can get your money back
-nothing is saved on the computer if it's done using a live CD - all the information to get Bitcoin is "Off-The-Grid" -no internet risks and no way anyone else can know the key!!
-if the script is run on a popular live CD it's immune to viruses, spyware, malware, and keyloggers, etc.
-source code can be read to eliminate doubt about what the script does and since there is no internet, nothing can be shared with another party
-the only method of getting the money back is using the key you manually wrote down -unless some hardware was recording your computer or a camera was recording you, baring having someone take the piece of paper from you, no one can get your BTC

Tip: Using blockexplorer.com can help to see if the BTC is still in that address or not.

To help test this I'm just giving the money away....

To get:
-import private key using sipa's import key function
-re-send the BTC to another address before anyone else claims it (this is only required because many people know the private key - in real life usage only one person will have the key)

I kind of want this tested so I have a really simple way to VERY safely store BTC with no chance of viruses, malware, etc taking it. Wink

So if an address contains BTC take it! casascius- you can take some. LOL. Just leave a bit for the experimenter!
23  Bitcoin / Project Development / Bitcoin Off-The-Grid (BOTG): secure savings script v0.1.1 on: June 27, 2011, 05:33:16 AM
Special thanks to 'grondilu' and 'unk' ! I pretty much merged their commands/scripts together to create this one! Donate to them if you want to show thanks!

This script is intended to be added to any live CD so that all a user has to do is type:

./botg.sh

A tiny little script that uses openssl to create a private key along with a matching Bitcoin address. When run off of a Live CD environment, a very safe location for storing BTC can be created. Running on a Live CD with no Internet ensures no virus or malware can get the private key. The script will create a private key and present it in two formats: Hex and Base58. Either format can be used to access the matching Bitcoin address and helps provide redundancy in case one is copied down wrong. After copying down the keys and the matching Bitcoin address the user is advised to reboot the computer. Keeping the key "off-the-grid" or off any computer means no viruses or computer security lapses will jeopardize your BTC. No backups or encryption is needed. Any money you send to the matching Bitcoin address will be safe. The only way to steal the BTC would be to steal the key directly off of where it is written down. Therefore, it's best to keep the paper somewhere safe where it can't get destroyed or stolen.

Other uses could be:
-pre-loaded cards/tickets that are redeemable
-sending BTC when you are not sure who is going to receive it such as geo cache locations
-scratch cards or draws that are done at parties where everyone gets tickets with unknown amounts
-give BTC to someone and you don't know their Bitcoin address

Script has been tested a lot. Personally I have created over 500 keys and then imported them into Bitcoin to see if they were valid. All worked perfectly!

I'll update this post as the script develops and suggestions/improvements are made.

BOTG v.0.1.1

Create file botg.sh and make executable.

Code:
#!/bin/bash

base58=({1..9} {A..H} {J..N} {P..Z} {a..k} {m..z})
bitcoinregex="^[$(printf "%s" "${base58[@]}")]{34}$"

decodeBase58() {
    local s=$1
    for i in {0..57}
    do s="${s//${base58[i]}/ $i}"
    done
    dc <<< "16o0d${s// /+58*}+f"
}

encodeBase58() {
    # 58 = 0x3A
    bc <<<"ibase=16; n=${1^^}; while(n>0) { n%3A ; n/=3A }" |
    tac |
    while read n
    do echo -n ${base58[n]}
    done
}

checksum() {
    xxd -p -r <<<"$1" |
    openssl dgst -sha256 -binary |
    openssl dgst -sha256 -binary |
    xxd -p -c 80 |
    head -c 8
}

checkBitcoinAddress() {
    if [[ "$1" =~ $bitcoinregex ]]
    then
        h=$(decodeBase58 "$1")
        checksum "00${h::${#h}-8}" |
        grep -qi "^${h: -8}$"
    else return 2
    fi
}

hash160() {
    openssl dgst -sha256 -binary |
    openssl dgst -rmd160 -binary |
    xxd -p -c 80
}

hash160ToAddress() {
    printf "%34s\n" "$(encodeBase58 "00$1$(checksum "00$1")")" |
    sed "y/ /1/"
}

publicKeyToAddress() {
    hash160ToAddress $(
    openssl ec -pubin -pubout -outform DER |
    tail -c 65 |
    hash160
    )
}

hash256ToAddress() {
#printf "80$1$(checksum "80$1")"
    printf "%34s\n" "$(encodeBase58 "80$1$(checksum "80$1")")" |
    sed "y/ /1/"
}


privateKeyToWIF() {
    hash256ToAddress $(openssl ec -text -noout -in data.pem | head -5 | tail -3 | fmt -120 | sed 's/[: ]//g')
}

echo " "
echo "BITCOINS OFF-THE-GRID (BOTG) v0.1.1: One of the most secure savings you'll ever get!"
echo " "
echo "For BEST results:"
echo " "
echo "-run './botg' from a Live Linux CD"
echo "-run this script with the Internet turned off"
echo "-reboot computer when done"
echo "-never record the secret key on a computer"
echo "-safely hide the key on a peice of paper where it won't get stolen"
echo "eg. hiding the paper in your car or inside your TV means you'll "
echo "never be able to get your money if that thing is stolen."
echo "-if you are not hiding the key, lock it up in a safe or safety deposit box"
echo " "
echo "***BOTG's strength is that since the secret key is never stored on your computer"
echo "there is nothing for a virus, malware, or spyware to steal!***"
echo " "
echo "Type and/or move the mouse for about 5 minutes. This will help improve the"
echo "randomness of your key....."
echo "Pressing ENTER will continue the script!"

read random

openssl  ecparam -genkey -name secp256k1 | tee data.pem &>/dev/null

echo " "
echo " "
echo "The following is the secret key in hex format. Record it carefully."
echo "Record the whole line after a 'read EC key'"
echo " "

hexsize=$(openssl ec -text -noout -in data.pem | head -5 | tail -3 | fmt -120 | sed 's/[: ]//g' )

while [ ${#hexsize} -ne 64 ]
do
openssl  ecparam -genkey -name secp256k1 | tee data.pem &>/dev/null && hexsize=$(openssl ec -text -noout -in data.pem | head -5 | tail -3 | fmt -120 | sed 's/[: ]//g' )
done

openssl ec -text -noout -in data.pem | head -5 | tail -3 | fmt -120 | sed 's/[: ]//g'

echo "Hit ENTER to continue"
read random

echo " "
echo "The following is the secret key in base58. This is the most"
echo "common format to import your key. Make sure to copy it down"
echo "carefully. Either this or the hex code could be used but it's"
echo "best to record both for redundancy. These two codes are to "
echo "be kept secret on a peice of paper or written down"
echo "somewhere safe. Putting them on a computer will lesson"
echo "the security of these keys."
echo "The address should begin with '5'."
echo " "

privateKeyToWIF

echo "Hit ENTER to continue"
read random

echo " "
echo "The following is the Bitcoin address you can send your savings to."
echo "Record the address carefully. It is not critical you keep this address"
echo "secret. Only the two other codes must remain secret!"
echo "The line that begins with the number 1 is your Bitcoin address you send"
echo "the funds to."
echo " "

openssl ec -pubout < data.pem | publicKeyToAddress

openssl  ecparam -genkey -name secp256k1 | tee data.pem &>/dev/null && rm data.pem

echo " "
echo "Hit ENTER to exit"
read random
exit 0



This creates a file data.pem in RAM. DO NOT save anything onto disk. Reboot the computer. Do not use with a Live CD set up to automatically save stuff on the hard drive.

Changelog:
0.0.2 -add part to ensure that entropy is good enough on live cd, encode hex to base58 as well, add note about having key that begins with 00, remove all caps!
0.0.3 -remake key if it's not exactly 64
0.1.0 -improve operation, and make it pretty.
0.1.1 -add pause at end in case it's run in a gui so it doesn't close
24  Bitcoin / Project Development / BitLive CD on: June 24, 2011, 11:40:11 PM
I really believe this will be very popular! It will be a very safe way for people to use Bitcoin even if their computer is full of viruses and they aren't sure how to really use computers!!

Why?
-less worries about viruses or malware
-very safe
-simple without knowing how to use linux or safely encrypt wallet - no command line!
-unencrypted wallet never touches hard drive
-blockchain doesn't have to be re-downloaded every time the user boots into the live CD
-would only be about a 30 MB download that the user burns onto CD


Here's what the user would see:

-Enter CD and reboot computer
-Loads automatically into Tiny Core Linux and user is greeted with a message:
"Now insert USB stick used previously with this software or insert a new USB stick with at least xxx MB free space. If this is the first time running Bitcoin here it may take some time to download the entire blockchain."
-User inserts USB stick
-Message says "USB stick found. Do not remove until advised it is safe to do so!"
-After USB stick is in it prompts for password to open wallet if needed. (If encrypted wallet found)
-A prompt is shown asking if BitLive should try connecting to the internet. Only connect to internet if the answer is yes.
-Bitcoin is launched
-The only icons on the screen is "Save Wallet and Shutdown" and "Addresses"
-When "Addresses" is clicked it prompts the user that "If you don't want to manually write down Bitcoin addresses, just create a text file called "addresses.txt" in the BitLive folder on the USB stick and it will be opened here. Otherwise, the file will be created now and you can edit it at any time in other operating systems just by editing the file in a text editor. This text file is not encrypted." Opens file with a text editor. Any type of notes or addresses can be put in it. This allows user to copy and paste addresses if wanted.
-When user clicks "save wallet and shutdown", Bitcoin is closed if needed and the user is prompted for a password they would like to use to encrypt their wallet.  Advice is given on how to pick a good password. (If password was needed to open a wallet it doesn't ask for it again but asks if they want to change it. Also mentions that old copies of the wallet with the old password can still be on the USB stick.)
-Once password is entered twice it informs the user to make backups of the USB stick and copy it's contents to multiple safe locations. Also tells the user they can remove USB stick. User clicks OK and system shuts down.

Technical:
-open source with all alterations to Tiny Core Linux documented so anyone can create the same product manually if wanted
-Tiny Core Linux allows for a 20 MB + Bitcoin + Gtk (needed for GUI) + GPG = about a 30 MB total ISO image.
-only connects to internet if the user says it's ok
-When it loads it prompts the user with the message and a script is watching for a USB stick to be inserted. It's automatically mounted.
-If it doesn't have a "BitLive" folder one is created. If it does, the latest encrypted wallet is found.
-GPG is used for all the encrypted -symmetric encryption
-Bitcoin is loaded with the "-datadir" being the USB stick folder. A symmlink is made pointing to wallet.dat on the home folder. The unencrypted wallet goes into the home folder. This will allow the blockchain to be read off of the USB stick AND the wallet.dat will never exist on the USB stick in an unencrypted form!
-the shutdown button will make sure bitcoin is closed and re-encrypt the wallet.dat at the home folder and put it on USB stick. Perhaps naming it wallet03282011.dat.gpg will allow the date to be part of the filename so the user can easily tell the age the encrypted copy was made.
-to create backups all the user has to do is back up the "BitLive" folder. The wallet files are all encrypted so it's safe to copy the whole folder

It would be super easy to use! AND safe!

I don't know about others but I'd love having something simple like this. It would help people who aren't really computer literate use Bitcoin safely.

25  Other / Meta / Forum said I was banned for spam? WTF? on: June 19, 2011, 11:21:43 PM
Found it kind of odd as I try pretty hard to stay on topic, provide helpful posts, and talk with other lottery guys...
we'd at least get a warning right?

I'm worried that a few bad people are making more and more restrictions for everyone come out and it's hurting those who are following the rules..

Are you sure we can't restrict pm for newbies, and where they post and how often, but have people who have been around for awhile not be limited?
26  Bitcoin / Project Development / Simple Safe Wallet Software on: June 19, 2011, 01:45:17 AM
I like linuxcoin but it's a little much for the newbie I think. It seems to be targeted for miners.
Using a live linux CD is great for making a safe wallet. I was hoping that we could have something that was SUPER simple and small.

It's been a while since I've shell scripted and played with Tiny Core Linux but I'm certain users who have linux skills would be able to remaster a live cd that works pretty easily

Here's kind of what I was thinking
-tiny core linux as a base -that means the TOTAL size of the download once we add bitcoin/gtk/gpg will be about a 30MB iso!
-everything removed except a file browser/disk mounter/pgp/and bitcoin of course
-One icon  "Create wallet" - this will load bitcoin and create wallet if one isn't there. If there is one there already tell the user
-One icon  "Encrypt/Backup wallet" - loads a script that reminds user to use the create wallet link first and close bitcoin first and hit enter - it then uses gpg symmetric encryption to encrypt wallet, once done the user is told to insert usb stick, script watches for usb device and mounts it and copies the encrypted file to the stick. Then tells the user that the encrypted file is now on the usb stick
-Another icon that says "Load a wallet" - script asks user to enter usb stick containing encrypted wallet, script watches for usb device and mounts it, script then asks for what the file is called and finds it, and copies it to the .bitcoin folder, if it's encrypted the user is prompted for password if pgp encrypted, perhaps even scan the usb stick for a copy of the blockchain and copy it too so the user doesn't have to re download the whole thing, once done bitcoin is started.

Just thinking out loud. Would people like something that is super simple and a small download that is just for creating wallets and loading bitcoin. It would probably be about a 30 MB download instead of 600 MB or so and all the user would have to do is burn an iso and boot, and click a few icons.

I'd try doing it myself but I haven't scripted in a LONG time!

-edit: it would actually be easy to make the cd useful for being used all the time - just copy the whole .bitcoin directory to a usb stick making sure the wallet file is encrypted. Then each time the user goes in they enter usb stick and use bitcoin safely. Reboot and there are done. Very little risk.
27  Other / Meta / Could we make it so people can't change their username on: June 18, 2011, 12:28:37 AM
Some people are doing it and it is confusing  Huh
Scammers will like it because they keep the post count but can use a new identity. The only way to check is to see their old posts and try remembering who it was.
28  Economy / Marketplace / Beware bitraffle.org and bitcoin5050.com are likely scams! on: June 16, 2011, 01:22:13 PM
Both pretty much just ask for money and say wait and see who the winner is! Yikes! Nothing can be checked and I don't see contact info. Avoid unless you feel charitable to scammers.
29  Bitcoin / Development & Technical Discussion / Wallet Encryption - Keyfiles are needed! on: June 16, 2011, 04:18:10 AM
Maybe not as complicated setup as Truecrypt but I think keyfiles are a must for better security. It would make brute forcing a wallet WAY harder if the attacker doesn't know what file(s) you use as keyfiles. Generating a keyfile would be a nice feature too. Bitcoin would have to remind the user though that the keyfile must be backed up and kept somewhere safe for if you lose the keyfile you can't open the wallet.

Anyone else use keyfiles elsewhere?
I don't know the details of how it would be implemented but couldn't bitcoin read the disk at random intervals (not too often to notice performance change) and access a file or two just to trick malware. That way if there is malware they won't be able to know when the actual keyfile is used?
30  Bitcoin / Bitcoin Discussion / Bitcoin Google Group on: June 15, 2011, 11:29:04 PM
Can someone please make one! I think it could be very popular method of communication. I'd do it, but I need a cell phone to register the group! Could I be admin too if you do? Somewhere were communication can happen in a non forum site setting.

Advantages:
-FAST!
-don't have to use forum software but can use web interface or email client
-Can handle tons of users
-can have links and other stuff
-Fast!
31  Economy / Marketplace / Translators needed at BitLotto.com - FREE advertising as payment on: June 15, 2011, 10:15:33 PM
BitLotto is going global!

Anyone who translates the directions at the front page along with the details page will get the ad spot on that language page for one year. You can use it for yourself or sell the spot to someone else.

-it can't be a massive image. Within reason, it has to be a regular size banner.
-operationfabulous ads ok, just send me the ad code
-*it may be necessary to occasionally contact you in case small changes are needed or a user has a question*
-imgur.com links preferred for banner so I don't have to host them and not worry about slow loading ads
-no machine translations -fluent speakers only please!
-if I get complaints that it does not match or it's obviously a machine translation the deal is void
-you get the SOLE ad spot for that language! -no porn,illegal content,gambling ok of course but not competing lotteries!

-German, French, Spanish, Estonian are taken until I contact those who did part of it already for free. I'll reply here if they don't want to do it.

If you want to do a language just post it here so we do not have multiple people doing the same thing.

PS. So far the jackpot for July 6 is over 30 BTC or about 600 USD.
32  Local / Español (Spanish) / BitLotto on: June 15, 2011, 01:00:04 PM
BitLotto. Uncheatable y transparente!
Thanks "Third Way" for translation!
   
   * No se requiere registrarse - opera sobre la red Bitcoin - todo lo que se necesita es la dirección del concurso.

    * Envia 0.25 BTC por juego a la dirección Bitcoin lista para el sorteo. Cada sorteo tiene una dirección diferente para el envío de pagos. Múltiples entradas de 0.25 BTC se pueden comprar para aumentar sus probabilidades de ganar.

    * NO ENVIE LAS MONEDAS DE UN " eWallet". (servicio en línea) sólo envie los 0.25BTC del software Bitcoin en su equipo. Si envía el BTC de un" eWallet", no obtendrá las ganancias.

    * No envíe más de 0.25 BTC por juego - cada orden debe ser enviada separadamente como 0.25 BTC.

    * El registro de pago efectivo dentro de la red Bitcoin es su "boleto ".

    * BTC debe estar en un bloque Bitcoin antes del sorteo. El sorteo comienza cuando el tiempo del primer bloque sea después de las 00:00:00 UTC del día del sorteo.

    * Copie de seguridad su cartera después de entrar en la lotería en caso de que algo le pasa a tu ordenador! BitLotto no tiene manera de saber la identidad del que desempeña / gana. La única manera de obtener el premio consiste en utilizar la misma carpeta que se utilizó para comprar los boletos.

    * El pago para futuros sorteos se puede hacer si se desea.

    * Siéntese y relájese. Si usted gana, usted tiene que hacer nada. El BTC sólo aparecerá en su cuenta unos días después del sorteo!

    * BUENA SUERTE!
33  Economy / Gambling / Congrats "17au4U..." for winning BitLotto July 6 draw of 87.86 BTC on: June 13, 2011, 06:37:18 PM
Now the Jackpot is over:  62 BTC

Remember:
-payment has to be in a block before July 6 00:00 *UTC* so don't wait till last minute to enter of it may not make it
-if paying multiple tickets make multiple .25 payments
-only pay using Bitcoin software running on your own computer!!








Any translators see: https://forum.bitcoin.org/index.php?topic=17521.0



34  Economy / Economics / Perhaps Bitcoin will slow down rampant consumerism on: June 08, 2011, 11:54:11 PM
I know for myself, I'm slower to spend BTC knowing the value increases with time. (So far) I'm always thinking: Do I need it? Can it wait? I do spend, but more conservatively.
Whereas, with cash, it seems like when I have it, I spend it. I know that with time it's value will get less and less and so I'm more motivated to get rid of it without thinking too much.
So perhaps a currency that grows in value will slow down wasteful spending? (I don't really know much about economics but it seems like quite a few here do, so I was hoping for some thoughts!)
35  Bitcoin / Bitcoin Technical Support / Error message when closing Bitcoin on: June 02, 2011, 03:50:21 AM
Bitcoin 0.3.21 with Ubuntu 10.10
When I close it from terminal I get:

************************
UNKNOWN EXCEPTION       
bitcoin in CMyApp::OnUnhandledException()       

**
ERROR:poa.c:1028:ORBit_POA_activate_object_T: assertion failed: ((poa->life_flags & ORBit_LifeF_DeactivateDo) == 0)
Aborted

It doesn't really seem to have any effect with what I'm doing but thought I'd mention it just in case...
36  Bitcoin / Mining / Is a separate place wanted for mining talk? on: June 01, 2011, 11:34:19 PM
I was just playing around and created:

http://groups.yahoo.com/group/bitcoinmining

I think it would be kind of useful.
-has web interface
-people can use email to interact
-files/photo stuff
-archives
-database tool and links
-should be pretty reliable host
-helps traffic here be more manageable
I'm sure most are familiar with yahoo/google groups though.

If people want to use it, I'd make some of you mods and kind of give up the group for others to take over.

Good idea or no?
37  Local / Deutsch (German) / Anleitung zur Teilnahme bei BitLotto on: June 01, 2011, 09:34:58 PM
(I can't reply as I don't speak German!  Cry )

6. Juli 2011 : 1D9c6qLKRjxh7xbyv6MBUcBFJHDFeDQpsg

Es ist keine Anmeldung erforderlich - BitLotto basiert auf dem Bitcoin Netzwerk - es wird lediglich eine Bitcoin Addresse benötigt.

Sende einfach 0.25 BTC pro Spiel an die Bitcoin Addresse für die entsprechende Ziehung. (BITTE KONTROLIEREN) Jede Ziehung besitzt eine andere Addresse an welche du deinen Einsatz senden musst. Es können mehrere Tickets für jede Ziehung gekauft werden um die Gewinnchancen zu erhöhen.

BITTE KEINE COINS VON EWALLETS SENDEN. (Online Service) Bitte sende die 0.25 BTC nur über die Bitcoin Software auf deinem Computer. Wenn du die BTC von einem EWALLET senden solltest, kann dein Gewinn NICHT ausgezahlt werden!

Bitte sende nicht mehr als 0.25 BTC pro Spiel - jedes Spiel muss als einzelne Überweisung von 0.25 BTC eingehen.

Die eigentliche Zahlungs Bestätigung ist dein "Ticket" für die BitLotto Ziehung.

Die BTC müssen in einem Block enthalten sein bevor die Ziehung statt findet. Die Ziehung findet statt, sobald ein Block einen Zeitstempel später als 00:00:00 UTC erhält.

Zu deiner eigenen Sicherheit, erstelle ein Backup deins Wallets nachdem du teilgenommen hast. Der einzige Weg nach einem Datenverlust deine Teilnahme zu beweisen ist mit Hilfe deines Wallets.

Zahlungen für zukünftige Ziehungen können im vorraus getätigt werden.

Lehn dich zurück und entspann dich. Solltest du gewinnen, brauchst du dich um nichts kümmern, die BTC werden einfach in deinem Account erscheinen!

VIEL GLÜCK!
38  Economy / Marketplace / Congratulations to "1FYLEj..." for winning June 1 draw of 134.6 BTC (1,200 USD)! on: June 01, 2011, 01:24:50 AM
Congratulations!!!!

The following is still unofficial and needs to be double checked and confirmed with more blocks. But I'm off to work and thought people would like to see who most likely won!!!

The winning picks were: ec88c8e216
The winner's transaction hash: ec913...
Ticket payment date: April 20 10:59:02 UTC! Someone who paid early!
Block 1: 127866 Block 2: 127867
June 1 secret hash's hash: 74571315396e4abfb5162038983379053536f4aac3c098b3ce32a936b0cf2b21
June 1 secret hash: 589db849967abfb35c85c9dd5db89ea0f814603acf9430b768474f5fc057962a
Final winning hash: ec88c8e2168b2a34ffaf0bef10b5cc6e646a0af4cc4d53d0b48b5013794b7437

Next draw is July 6 with tickets costing 0.25 BTC each!
See bitlotto.com for details.
39  Economy / Marketplace / June 1 BitLotto draw now worth over 1000 USD or 114 BTC! on: May 31, 2011, 03:04:12 AM
Using value of 8.8 USD per BTC.
See www.bitlotto.com if you want to enter.

Just remember:
-use Bitcoin software running on your own computer to enter only! Don't use an Ewallet!
-price is 1 BTC per ticket (don't sent more than that per transaction, next draw will be 0.25 BTC)
-payment has to be in a block BEFORE the first block appears with date after 00:00:00 UTC of the 1st
-backup your wallet to ensure you can get the winnings if you win

Has got me wondering. For those in the know, would this be the largest in USD value prize ever in a Bitcoin lottery? (I know TAABL had bigger BTC prizes but BTC wasn't worth as much before...)
40  Economy / Marketplace / BitLotto tickets AFTER June 1 are now 0.25 BTC per ticket! on: May 27, 2011, 02:22:20 PM
AFTER June 1 draw ALL tickets are now 0.25 BTC EACH!!
JUNE 1 DRAW IS STILL 1 BTC! Anyone who paid 1 BTC or accidentally pays 1 BTC for later draws for the next while will get refunded the difference. I tried avoiding it, but Bitcoin value is just crazy! (In a good way) I started this lottery expecting people to pay about 1 USD per ticket and in a very short time tickets were about 8 USD. Of course the winnings were worth more but at the expense of less players playing. Even with cheaper tickets BitLotto should be able to have a growing jackpot each month as more people are willing to play. Hopefully everyone is pleased with my choice. Thank you for understanding my need to change the price...

I've also added operation fabulous to my site for those who want to target the Bitcoin gambling demographic.

So far the June 1 jackpot is: 84 BTC or about 730 USD!!
Pages: « 1 [2] 3 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!