Author

Topic: [XC][XCurrency] Decentralised Trustless Privacy Platform / Encrypted XChat / Pos - page 454. (Read 1484191 times)

sr. member
Activity: 392
Merit: 250
precompiled

I tried to use -P (with a base pub key.. wich I used from my adres) and than -X XCHAT

and it said...  invalid base pub key


I can't find much info on the issue  Undecided
sr. member
Activity: 322
Merit: 250
Hey... there is the option -P

what would that give?

edit: ... nothing... invalid base public key...

Think you need to pass the 75 to -X instead of -P.

Can you also pass in the prefix?  Cause the prefix also needs to be changed to 0xCB.

Did you compile vanitygen yourself or a precompiled version?
sr. member
Activity: 392
Merit: 250
Hey... there is the option -P

what would that give?

edit: ... nothing... invalid base public key...
sr. member
Activity: 392
Merit: 250
in the original vanitygen you have an option parameter

it is started like "vanitygen64.exe -X 75 XCHAT"

(75 is the decimal of the hexadecimal 4b)

Code:
Vanitygen 0.20 (OpenSSL 1.0.1c 10 May 2012)
Usage: vanitygen64 [-vqrikNT] [-t ] [-f |-] [...]
Generates a bitcoin receiving address matching , and outputs the
address and associated private key.  The private key may be stored in a safe
location or imported into a bitcoin client to spend any balance received on
the address.
By default, is interpreted as an exact prefix.

Options:
-v            Verbose output
-q            Quiet output
-r            Use regular expression match instead of prefix
              (Feasibility of expression is not checked)
-i            Case-insensitive prefix search
-k            Keep pattern and continue search after finding a match
-N            Generate namecoin address
-T            Generate bitcoin testnet address
-X   Generate address with the given version
-F    Generate address with the given format (pubkey or script)
-P    Specify base public key for piecewise key generation
-e            Encrypt private keys, prompt for password
-E Encrypt private keys with (UNSAFE)
-t   Set number of worker threads (Default: number of CPUs)
-f      File containing list of patterns, one per line
              (Use "-" as the file name for stdin)
-o      Write pattern matches to
-s      Seed random number generator from

C:\vanitygen>
sr. member
Activity: 322
Merit: 250
I've tried with the original vanitygen a while ago, but it screwed up the public key (it was way to long) and it didn't work with xchat
I would like to test something...

I made myself a vanity adress for xchat
would someone please try to contact me over xchat?

adress: XCHATsLztdvJxb2BkrgVuoq7uoC73u6ghj
pubkey: Ro4rYufnJy7RYFnuJBaD1iz5Rrr8o77fyKbcnkAbqC57JCS148WVMabshBjHd1JsZGoJ2JZtj6LYtfP e8bavoY51

(I've noticed that my pub key is really long, that's why I want to test this)


If it works I'll explain it in a tutorial

If you got it working, defenitly let me now Cheesy

Did you modify the addrtype and privtype too?
sr. member
Activity: 392
Merit: 250
I've tried with the original vanitygen a while ago, but it screwed up the public key (it was way to long) and it didn't work with xchat
I would like to test something...

I made myself a vanity adress for xchat
would someone please try to contact me over xchat?

adress: XCHATsLztdvJxb2BkrgVuoq7uoC73u6ghj
pubkey: Ro4rYufnJy7RYFnuJBaD1iz5Rrr8o77fyKbcnkAbqC57JCS148WVMabshBjHd1JsZGoJ2JZtj6LYtfP e8bavoY51

(I've noticed that my pub key is really long, that's why I want to test this)


If it works I'll explain it in a tutorial

If you got it working, defenitly let me now Cheesy
sr. member
Activity: 322
Merit: 250
On another note, I found a XC address that began with xchat!  Wink   XCHaTxgu3cMtwokhSh2gsBBN5wUT77F6EK

Took over a million searches....

How?! Grin Did you generate the addresses while result | egrep -i '^xchat'?

I modded the BIP38 paper wallet generator that Laredo created to find match based on some "vanity starting" parameters and it looped till it found it.   It's really a rough hack job with no UI update for now....  I have to break into it to find out how many attempt it was at. Wink

My requirement was that it had to be BIP38, but of course... I really didn't have to really do that now since I know how to encrypt an existing private key using BIP38 now....   So, even a normal address creation would have sufficed....

You know there is a vanity gen creator that works even better. This was made for Darkcoin but seeing how both use the same address format, it should work.

https://github.com/propulsions/DarkVanityGen

Darkcoin prefix is 0xCC while XC is 0xCB.   Network version is 0x4C for DRK and 0x4B for XC.  Where can I change this prefix in the DarkVanityGen source?

Edit: I think I found it.   I need to change the addrtype and privtype in oclvanitygen.c right?  I added this to the beginning of that parameter processing:

Code:
	while ((opt = getopt(argc, argv,
     "vqik1xNTXC:eE:p:P:d:w:t:g:b:VSh?f:o:s:D:")) != -1) {
switch (opt) {
case 'C':
addrtype=75;
privtype=205;
break;

Let's see if it will work....
newbie
Activity: 33
Merit: 0
On another note, I found a XC address that began with xchat!  Wink   XCHaTxgu3cMtwokhSh2gsBBN5wUT77F6EK

Took over a million searches....

thats amazing
so valuable address
sr. member
Activity: 322
Merit: 250
On another note, I found a XC address that began with xchat!  Wink   XCHaTxgu3cMtwokhSh2gsBBN5wUT77F6EK

Took over a million searches....

How?! Grin Did you generate the addresses while result | egrep -i '^xchat'?

I modded the BIP38 paper wallet generator that Laredo created to find match based on some "vanity starting" parameters and it looped till it found it.   It's really a rough hack job with no UI update for now....  I have to break into it to find out how many attempt it was at. Wink

My requirement was that it had to be BIP38, but of course... I really didn't have to really do that now since I know how to encrypt an existing private key using BIP38 now....   So, even a normal address creation would have sufficed....

You know there is a vanity gen creator that works even better. This was made for Darkcoin but seeing how both use the same address format, it should work.

https://github.com/propulsions/DarkVanityGen

Oooh nice.  Thanks!   I will definitely take a look.
hero member
Activity: 658
Merit: 500
The Buck Stops Here.
On another note, I found a XC address that began with xchat!  Wink   XCHaTxgu3cMtwokhSh2gsBBN5wUT77F6EK

Took over a million searches....

How?! Grin Did you generate the addresses while result | egrep -i '^xchat'?

I modded the BIP38 paper wallet generator that Laredo created to find match based on some "vanity starting" parameters and it looped till it found it.   It's really a rough hack job with no UI update for now....  I have to break into it to find out how many attempt it was at. Wink

My requirement was that it had to be BIP38, but of course... I really didn't have to really do that now since I know how to encrypt an existing private key using BIP38 now....   So, even a normal address creation would have sufficed....

You know there is a vanity gen creator that works even better. This was made for Darkcoin but seeing how both use the same address format, it should work.

https://github.com/propulsions/DarkVanityGen
sr. member
Activity: 322
Merit: 250
Thank you Smiley

After another million generation, I found an even better one.  All caps! 

XCHATXJy4YhTscu7b3KJQi1Bc826EqmsUJ
full member
Activity: 140
Merit: 100
sr. member
Activity: 322
Merit: 250
On another note, I found a XC address that began with xchat!  Wink   XCHaTxgu3cMtwokhSh2gsBBN5wUT77F6EK

Took over a million searches....

How?! Grin Did you generate the addresses while result | egrep -i '^xchat'?

I modded the BIP38 paper wallet generator that Laredo created to find match based on some "vanity starting" parameters and it looped till it found it.   It's really a rough hack job with no UI update for now....  I have to break into it to find out how many attempt it was at. Wink

My requirement was that it had to be BIP38, but of course... I really didn't have to really do that now since I know how to encrypt an existing private key using BIP38 now....   So, even a normal address creation would have sufficed....

Please give me a link to the paper wallet (I'd like address that starts with "XCurrency" and Node.js should do it in no time, but let's see).


You probably also want to apply the change I made so it create compressed address:


If you want the BIP38 generated address to be the same compressed format as the wallet (right now, it's in uncompressed format so it's not matching what you see in the receive coins address list):



You will have to make the following change to line 7340:

Change the false (2nd parameters):

Code:
ninja.privateKey.BIP38GenerateECAddressAsync(ninja.wallets.paperwallet.intermediatePoint, false, function (address, encryptedKey) {

to true:

Code:
ninja.privateKey.BIP38GenerateECAddressAsync(ninja.wallets.paperwallet.intermediatePoint, true, function (address, encryptedKey) {

Refresh the page.  The generated address is now the same as you will see in the wallet and it will be easier for you to find an address that you like as a semi vanity address!


full member
Activity: 140
Merit: 100
On another note, I found a XC address that began with xchat!  Wink   XCHaTxgu3cMtwokhSh2gsBBN5wUT77F6EK

Took over a million searches....

How?! Grin Did you generate the addresses while result | egrep -i '^xchat'?

I modded the BIP38 paper wallet generator that Laredo created to find match based on some "vanity starting" parameters and it looped till it found it.   It's really a rough hack job with no UI update for now....  I have to break into it to find out how many attempt it was at. Wink

My requirement was that it had to be BIP38, but of course... I really didn't have to really do that now since I know how to encrypt an existing private key using BIP38 now....   So, even a normal address creation would have sufficed....

Please give me a link to the paper wallet (I'd like address that starts with "XCurrency" and Node.js should do it in no time, but let's see).
sr. member
Activity: 322
Merit: 250
On another note, I found a XC address that began with xchat!  Wink   XCHaTxgu3cMtwokhSh2gsBBN5wUT77F6EK

Took over a million searches....

How?! Grin Did you generate the addresses while result | egrep -i '^xchat'?

I modded the BIP38 paper wallet generator that Laredo created to find match based on some "vanity starting" parameters and it looped till it found it.   It's really a rough hack job with no UI update for now....  I have to break into it to find out how many attempt it was at. Wink

My requirement was that it had to be BIP38, but of course... I really didn't have to really do that now since I know how to encrypt an existing private key using BIP38 now....   So, even a normal address creation would have sufficed....
full member
Activity: 140
Merit: 100
On another note, I found a XC address that began with xchat!  Wink   XCHaTxgu3cMtwokhSh2gsBBN5wUT77F6EK

Took over a million searches....

How?! Grin Did you generate the addresses while result | egrep -i '^xchat'?
sr. member
Activity: 322
Merit: 250
On another note, I found a XC address that began with xchat!  Wink   XCHaTxgu3cMtwokhSh2gsBBN5wUT77F6EK

Took over a million searches....
full member
Activity: 140
Merit: 100

It's a joke Grin. Everyone is so sad about the price Cheesy

After Christmas I'll say to myself: "I like the smell of napalm early in the morning..." That's how I see the crypto market: there are two serious players - DRK and XC. And they are here to stay.

hero member
Activity: 714
Merit: 500
Listen people:


I am sorry to disappoint you, but the price shall not rise above $50 till the end of the year Undecided

Edit: The good news is that it will reach $50 Cheesy
On what do you base that?
full member
Activity: 140
Merit: 100
Listen people:


I am sorry to disappoint you, but the price shall not rise above $50 till the end of the year Undecided

Edit: The good news is that it will reach $50 Cheesy
Jump to: