Bitcoin Forum
May 21, 2024, 03:42:11 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Generating addresses  (Read 2053 times)
Grumpster (OP)
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile
March 19, 2015, 03:17:52 AM
 #1

Hi all,

I'm messing around with creating vanity addresses, just for fun. I've been trying both bitcoin & dogecoin addresses, but I can't get this darn thing to work, I'm hoping someone could help me.

Please see this image:



Please explain exactly what string I would need to use to make the results be written to "doge.txt" file.

I have tried everything for the past half an hour but can't get it to work and write the results to this file. Half the time I'm getting an unexpected string error, others it's just ignoring it.

I've tried several things like appending "-o doge.txt" and "-o <doge.txt>" and so on, literally hundreds of different strings, expiremented with placement etc, but nothing is working?

If somebody could copy the exact string I used in the image and add the "-o" string where necessary, I'd be forever grateful.

Thanks
FuckIdolPlus
Full Member
***
Offline Offline

Activity: 126
Merit: 100


View Profile
March 19, 2015, 04:30:59 AM
 #2

Try using "> doge.txt" or ">> doge.txt"

> sticks the output into a text file. If the text file already exists it deletes the text file and recreates it with the output you've just created.
>> appends the output to a text file. If the text file doesn't exist it creates it. if it does exist it adds the output on the end.

needmoney
Legendary
*
Offline Offline

Activity: 1848
Merit: 1023

I am a good bro


View Profile
March 19, 2015, 12:46:46 PM
 #3

Try using "> doge.txt" or ">> doge.txt"

> sticks the output into a text file. If the text file already exists it deletes the text file and recreates it with the output you've just created.
>> appends the output to a text file. If the text file doesn't exist it creates it. if it does exist it adds the output on the end.

Should we use ''-o'' before ''> doge.txt'' ?

.
      ▄▄█▀▀█▄▄
  ▄▄█████▄▄█████▄▄
████  ███  ███  ████
  ▀▀█████▀▀█████▀▀

▀█▄▄  ▀▀█▄▄█▀▀   ▄▄█
 ▀▀███▄▄     ▄▄██▀██
     ▀███   ██▀  ▄█
██     ██  ██ ▄██▀██
▀██    ██  ███▀  ▄██
 ▀███▄▄██  ██ ▄███▀
    ▀▀███  ▀██▀▀
.Just.Bet. 
 
 
 
 
 
█▀▀▀▀▀










█▄▄▄▄▄
.
DICE
LOTTERY
PLINKO
.
COIN FLIP
CRASH
WHEEL
▀▀▀▀▀█










▄▄▄▄▄█
.
        ███████       ▄▄██▄
                  ▄▄███▀▀██▄
      ██████   ▄███████▄▄███▄
               ▀██  █████████▄
                ▀█████████▀▀██▄
████████████     ▀███▀▀███▄▄██▀
██  ████  ██      ▀██▄▄███▀▀
█████▀▀█████  ██   ▀██▀▀
█████▄▄█████
██  ████  ██   ██████
████████████
.
TRUSTLESS
DECENTRALIZED
TRANSPARENT
..PLAY NOW..
Muhammed Zakir
Hero Member
*****
Offline Offline

Activity: 560
Merit: 506


I prefer Zakir over Muhammed when mentioning me!


View Profile WWW
March 19, 2015, 05:30:48 PM
 #4

Try this:

Code:
vanitygen64.exe -o doge.tx -X 30 DGrumpy

Should we use ''-o'' before ''> doge.txt'' ?

No, "> doge.txt" is enough. It is a cmd command which puts all outputs in the file you name.

I recommend you to use ">> doge.tx" because it adds outputs to file instead of overwriting. Using "> doge.tx" overwrites which make your datas in that file be gone.

Code:
vanitygen64.exe -X 30 DGrumpy >> doge.tx

needmoney
Legendary
*
Offline Offline

Activity: 1848
Merit: 1023

I am a good bro


View Profile
March 19, 2015, 10:51:07 PM
 #5

Actually, I'd like to save bitcoin address.

.
      ▄▄█▀▀█▄▄
  ▄▄█████▄▄█████▄▄
████  ███  ███  ████
  ▀▀█████▀▀█████▀▀

▀█▄▄  ▀▀█▄▄█▀▀   ▄▄█
 ▀▀███▄▄     ▄▄██▀██
     ▀███   ██▀  ▄█
██     ██  ██ ▄██▀██
▀██    ██  ███▀  ▄██
 ▀███▄▄██  ██ ▄███▀
    ▀▀███  ▀██▀▀
.Just.Bet. 
 
 
 
 
 
█▀▀▀▀▀










█▄▄▄▄▄
.
DICE
LOTTERY
PLINKO
.
COIN FLIP
CRASH
WHEEL
▀▀▀▀▀█










▄▄▄▄▄█
.
        ███████       ▄▄██▄
                  ▄▄███▀▀██▄
      ██████   ▄███████▄▄███▄
               ▀██  █████████▄
                ▀█████████▀▀██▄
████████████     ▀███▀▀███▄▄██▀
██  ████  ██      ▀██▄▄███▀▀
█████▀▀█████  ██   ▀██▀▀
█████▄▄█████
██  ████  ██   ██████
████████████
.
TRUSTLESS
DECENTRALIZED
TRANSPARENT
..PLAY NOW..
Rude Boy
Hero Member
*****
Offline Offline

Activity: 770
Merit: 500


View Profile
March 21, 2015, 02:04:41 PM
 #6

have you ever tried bitaddress.org to create vanity address(bitcoins)? Wink
Muhammed Zakir
Hero Member
*****
Offline Offline

Activity: 560
Merit: 506


I prefer Zakir over Muhammed when mentioning me!


View Profile WWW
March 21, 2015, 02:48:38 PM
 #7

have you ever tried bitaddress.org to create vanity address(bitcoins)? Wink

You can't create vanity address with Bitaddress.org AFAIK. They helps to split a public key and to combine private key parts.

Rude Boy
Hero Member
*****
Offline Offline

Activity: 770
Merit: 500


View Profile
March 22, 2015, 01:10:25 AM
 #8

have you ever tried bitaddress.org to create vanity address(bitcoins)? Wink

You can't create vanity address with Bitaddress.org AFAIK. They helps to split a public key and to combine private key parts.
nope! Can creat vanity address jusr try it -_- they have some featues.. I think you've seen this feature only from that website.
//sry for bad english
Newar
Legendary
*
Offline Offline

Activity: 1358
Merit: 1001


https://gliph.me/hUF


View Profile
March 23, 2015, 12:18:16 PM
 #9

have you ever tried bitaddress.org to create vanity address(bitcoins)? Wink

You can't create vanity address with Bitaddress.org AFAIK. They helps to split a public key and to combine private key parts.
nope! Can creat vanity address jusr try it -_- they have some featues.. I think you've seen this feature only from that website.
//sry for bad english

They don't create them there. It's a "helper" feature to be used with Vanity Pool, for example.

OTC rating | GPG keyid 1DC91318EE785FDE | Gliph: lightning bicycle tree music | Mycelium, a swift & secure Bitcoin client for Android | LocalBitcoins
NeuroticFish
Legendary
*
Offline Offline

Activity: 3682
Merit: 6406


Looking for campaign manager? Contact icopress!


View Profile
March 23, 2015, 12:47:14 PM
 #10

When you do it for real (not just playing), please make sure you generate the addresses in a safe (and offline) environment.
Because there you will have the private key(s) too, which have to be "for your eyes only".


(I this that this warning is useful, as long as some came with the idea to try websites that may generate address.)

█████████████████████████
████▐██▄█████████████████
████▐██████▄▄▄███████████
████▐████▄█████▄▄████████
████▐█████▀▀▀▀▀███▄██████
████▐███▀████████████████
████▐█████████▄█████▌████
████▐██▌█████▀██████▌████
████▐██████████▀████▌████
█████▀███▄█████▄███▀█████
███████▀█████████▀███████
██████████▀███▀██████████
█████████████████████████
.
BC.GAME
▄▄░░░▄▀▀▄████████
▄▄▄
██████████████
█████░░▄▄▄▄████████
▄▄▄▄▄▄▄▄▄██▄██████▄▄▄▄████
▄███▄█▄▄██████████▄████▄████
███████████████████████████▀███
▀████▄██▄██▄░░░░▄████████████
▀▀▀█████▄▄▄███████████▀██
███████████████████▀██
███████████████████▄██
▄███████████████████▄██
█████████████████████▀██
██████████████████████▄
.
..CASINO....SPORTS....RACING..
█░░░░░░█░░░░░░█
▀███▀░░▀███▀░░▀███▀
▀░▀░░░░▀░▀░░░░▀░▀
░░░░░░░░░░░░
▀██████████
░░░░░███░░░░
░░█░░░███▄█░░░
░░██▌░░███░▀░░██▌
░█░██░░███░░░█░██
░█▀▀▀█▌░███░░█▀▀▀█▌
▄█▄░░░██▄███▄█▄░░▄██▄
▄███▄
░░░░▀██▄▀


▄▄████▄▄
▄███▀▀███▄
██████████
▀███▄░▄██▀
▄▄████▄▄░▀█▀▄██▀▄▄████▄▄
▄███▀▀▀████▄▄██▀▄███▀▀███▄
███████▄▄▀▀████▄▄▀▀███████
▀███▄▄███▀░░░▀▀████▄▄▄███▀
▀▀████▀▀████████▀▀████▀▀
Bitdonator
Legendary
*
Offline Offline

Activity: 1223
Merit: 1002


View Profile
March 24, 2015, 06:44:20 PM
 #11

try this website
http://bitcoinvanitygen.com/

easy and safe. Up to 6 free letters  Smiley
Muhammed Zakir
Hero Member
*****
Offline Offline

Activity: 560
Merit: 506


I prefer Zakir over Muhammed when mentioning me!


View Profile WWW
March 24, 2015, 08:07:56 PM
 #12

try this website
http://bitcoinvanitygen.com/

easy and safe. Up to 6 free letters  Smiley

Not safe. It will only be safe if it offer split-key generation. Online vanity address generator isn't secure. It is like telling others to create a bank account for you and sharing all the credentials with them. So if they want to, they can access it.

emrebey
Sr. Member
****
Offline Offline

Activity: 476
Merit: 250


View Profile
March 25, 2015, 01:33:35 AM
 #13

try this website
http://bitcoinvanitygen.com/

easy and safe. Up to 6 free letters  Smiley

Not safe. It will only be safe if it offer split-key generation. Online vanity address generator isn't secure. It is like telling others to create a bank account for you and sharing all the credentials with them. So if they want to, they can access it.

agreed.

why do you think it's safe @bitdonator?

a lot of people got hacked because of fake online wallets. No reason to trust 3rd party on this.
lalaisen
Newbie
*
Offline Offline

Activity: 57
Merit: 0


View Profile
March 28, 2015, 10:35:24 PM
 #14

Please show me how to create a Bitcoin address that it's easy to remember

Thanks !
Muhammed Zakir
Hero Member
*****
Offline Offline

Activity: 560
Merit: 506


I prefer Zakir over Muhammed when mentioning me!


View Profile WWW
March 29, 2015, 05:35:31 AM
 #15

Please show me how to create a Bitcoin address that it's easy to remember

Thanks !

1) Develop your memory power.
2) Create a vanity address.
3) Study it.

Alternatively, you can use a website such as Goocha to memorize an address - Firstbits.

notlist3d
Legendary
*
Offline Offline

Activity: 1456
Merit: 1000



View Profile
March 29, 2015, 06:32:04 AM
 #16

Please show me how to create a Bitcoin address that it's easy to remember

Thanks !

1) Develop your memory power.
2) Create a vanity address.
3) Study it.

Alternatively, you can use a website such as Goocha to memorize an address - Firstbits.

Vanity address will help but it wont come close to being entire address. If you look at http://bitcoinvanitygen.com/ they only go to 9 and it get's expensive.

I would suggest making some cards with public address, maybe a QR code of it easy to scan.     Again all of that is public don't carry your private key on you.
Muhammed Zakir
Hero Member
*****
Offline Offline

Activity: 560
Merit: 506


I prefer Zakir over Muhammed when mentioning me!


View Profile WWW
March 29, 2015, 09:00:37 AM
 #17

Vanity address will help but it wont come close to being entire address. If you look at http://bitcoinvanitygen.com/ they only go to 9 and it get's expensive.

I would suggest making some cards with public address, maybe a QR code of it easy to scan.     Again all of that is public don't carry your private key on you.

I never recommend using an online vanitygen if they don't offer split-key generation.

First letter will always be '1' for a vanity address because it can't create multisig address now. So you don't need to remember it. So next 6-8 letters will be related to a word you won't forget. So now you already know first 7-9 letters. Remaining 10-12 letter can be studies easily like you study a phone number.

Vanity address also contain the word you want in middle or at the end of the address but creating one which have the word at first is recommended for easy_remembering.

However, to reduce the hassle, I suggested to use 'Firstbits'. It will help you to remember the address easily.

Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!