Bitcoin Forum
May 02, 2024, 04:51:08 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 [31] 32 33 34 35 »
  Print  
Author Topic: Vanity Pool - vanity address generator pool  (Read 147183 times)
kolloh
Legendary
*
Offline Offline

Activity: 1736
Merit: 1023


View Profile
December 06, 2016, 01:59:58 AM
 #601

ThePiachu,

I'm not sure how much you are actively maintaining this project, but any chance you could update the "Solved work" page to include a "Solved on Date" column or similar? I'd also like to see a "Requested on Date" column on the available work page if possible.

It would be nice to be able to look at dates to see if there are recent requests or solved work to monitor the recent activity of the pool.
1714625468
Hero Member
*
Offline Offline

Posts: 1714625468

View Profile Personal Message (Offline)

Ignore
1714625468
Reply with quote  #2

1714625468
Report to moderator
"The nature of Bitcoin is such that once version 0.1 was released, the core design was set in stone for the rest of its lifetime." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714625468
Hero Member
*
Offline Offline

Posts: 1714625468

View Profile Personal Message (Offline)

Ignore
1714625468
Reply with quote  #2

1714625468
Report to moderator
1714625468
Hero Member
*
Offline Offline

Posts: 1714625468

View Profile Personal Message (Offline)

Ignore
1714625468
Reply with quote  #2

1714625468
Report to moderator
1714625468
Hero Member
*
Offline Offline

Posts: 1714625468

View Profile Personal Message (Offline)

Ignore
1714625468
Reply with quote  #2

1714625468
Report to moderator
arulbero
Legendary
*
Offline Offline

Activity: 1915
Merit: 2074


View Profile
December 25, 2016, 09:50:33 PM
 #602

Quote
An example (available from gobittest website):
We have a private key:
18E14A7B6A307F426A94F8114701E7C8E774E7F9A47E2C2035DB29A206321725
which maps to public key:
0450863AD64A87AE8A2FE83C1AF1A8403CB53F53E486D8511DAD8A04887E5B23522CD470243453A 299FA9E77237716103ABC11A1DF38855ED6F2EE187E9C582BA6

and say we want to find a pattern "166". One of the solutions takes a form of a private key
B18427B169E86DE681A1A62588E1D02AE4A7E83C1B413849989A76282A7B562F
mapping to public key:
049C95E0949E397FACCECF0FE8EAD247E6FD082717E4A4A876049FB34A9ADED110DFEA2EF691CC4 A1410498F4C312F3A94318CD5B6F0E8E92051064876751C8404

If we add the two public keys (like the person looking for the solution would do), we get a public key:
0436970CE32E14DC06AC50217CDCF53E628B32810707080D6848D9C8D4BE9FE461E100E705CCA98 54436A1283210CCEFBB6B16CB9A86B009488922A8F302A27487
which is equivalent to this address:
166ev9JXn2rFqiPSQAwM7qJYpNL1JrNf3h

If we add the two private keys (like the person requesting the address would), we get:
CA65722CD418ED28EC369E36CFE3B7F3CC1CD035BFBF6469CE759FCA30AD6D54
which maps to the same public key as the sum of the public keys, and thus - to the same address.


If we add the two public keys (like the person looking for the solution would do), we get a public key:
0436970CE32E14DC06AC50217CDCF53E628B32810707080D6848D9C8D4BE9FE461E100E705CCA98 54436A1283210CCEFBB6B16CB9A86B009488922A8F302A27487
which is equivalent to this address:
166ev9JXn2rFqiPSQAwM7qJYpNL1JrNf3h

how?

0450863AD64A87AE8A2FE83C1AF1A8403CB53F53E486D8511DAD8A04887E5B23522CD470243453A 299FA9E77237716103ABC11A1DF38855ED6F2EE187E9C582BA6
+
049C95E0949E397FACCECF0FE8EAD247E6FD082717E4A4A876049FB34A9ADED110DFEA2EF691CC4 A1410498F4C312F3A94318CD5B6F0E8E92051064876751C8404
=
0436970CE32E14DC06AC50217CDCF53E628B32810707080D6848D9C8D4BE9FE461E100E705CCA98 54436A1283210CCEFBB6B16CB9A86B009488922A8F302A27487

how to calculate it ?  the last number   6+4=7?  not 6+4=a?

Curve secp256k1:

base point : G = (79BE667EF9DCBBAC55A06295CE870B07029BFCDB2DCE28D959F2815B 16F81798, 483ADA7726A3C4655DA4FBFC0E1108A8FD17B448A68554199C47D08FFB10D4B8)
order curve: n =  FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBAAEDCE6AF48A03BBFD25E8CD0364141


First private key : a    =  18E14A7B6A307F426A94F8114701E7C8E774E7F9A47E2C2035DB29A206321725
First public key :
A = a*G  =  (50863AD64A87AE8A2FE83C1AF1A8403CB53F53E486D8511DAD8A04887E5B23522CD470243453A, 299FA9E77237716103ABC11A1DF38855ED6F2EE187E9C582BA6)

see for yourself here --> https://gobittest.appspot.com/Address

Second private key : b = B18427B169E86DE681A1A62588E1D02AE4A7E83C1B413849989A76282A7B562F
Second public key :
B =b*G=(36970CE32E14DC06AC50217CDCF53E628B32810707080D6848D9C8D4BE9FE461E100E705CCA98, 54436A1283210CCEFBB6B16CB9A86B009488922A8F302A27487)

If we add the two private keys : a+b = CA65722CD418ED28EC369E36CFE3B7F3CC1CD035BFBF6469CE759FCA30AD6D54

Code:
~$ python
Python 2.7.12+ (default, Sep 17 2016, 12:08:02)
[GCC 6.2.0 20160914] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> a=0x18E14A7B6A307F426A94F8114701E7C8E774E7F9A47E2C2035DB29A206321725
>>> b=0xB18427B169E86DE681A1A62588E1D02AE4A7E83C1B413849989A76282A7B562F
>>> n=0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 #order curve
>>> print hex((a+b) % n)  # add mod 'n'
0xca65722cd418ed28ec369e36cfe3b7f3cc1cd035bfbf6469ce759fca30ad6d54

and if we add the two public keys: A+B = a*G + b*G = (a+b)*G

see for yourself here --> https://gobittest.appspot.com/Address

(a+b)*G = (36970CE32E14DC06AC50217CDCF53E628B32810707080D6848D9C8D4BE9FE461, E100E705CCA9854436A1283210CCEFBB6B16CB9A86B009488922A8F302A27487)

and the address is: 166ev9JXn2rFqiPSQAwM7qJYpNL1JrNf3h
adaseb
Legendary
*
Offline Offline

Activity: 3752
Merit: 1709



View Profile
January 12, 2017, 12:20:23 AM
Last edit: January 12, 2017, 01:11:54 AM by adaseb
 #603

I got a bunch of old GPUs that can't mine any of the current profitable coins such as ZEC or ETH.

Wondering if any of the work available at:
https://vanitypool.appspot.com/availableWork


Still will pay out if a solution is found. For example,
1qwertyuiop

Pays 1.2 BTC however the guy was looking for this vanity key since 2013.


EDIT: Nevermind, didn't know the results had to be case sentitive, in that case it would take millions of years to find a result.

.BEST..CHANGE.███████████████
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
███████████████
..BUY/ SELL CRYPTO..
ArcCsch
Full Member
***
Offline Offline

Activity: 224
Merit: 117


▲ Portable backup power source for mining.


View Profile
January 12, 2017, 01:22:56 AM
 #604

Is it possible to merge-mine vanity addresses?
Each user enters a pattern and a public key, for example:
User Alice sends pattern "1alice" and public key a1 (private key is A1).
User Bob sends pattern "1bob" and public key b1 (private key is B1).
User Charlie sends pattern "1charlie" and a public key c1 (private key is C1).
Now the miners begin hashing, combining all the public keys together, adding arbitrary keys, hashing and comparing each hash to all the provided patterns.
Assume they find a solution for Bob first:
Hash160(a1+b1+c1+x1)=1bob...
Now, Alice and Charlie publish their private keys A1 and C1, and the miner publishes X1 (the private key that generates x1).
Now, Bob combines A1, B1, C1, and X1 to create his private key, and no one else can do this because only Bob has B1.
Bob now has a vanity address which fits his pattern, and goes offline.
Now, Alice and Charlie generate new key pairs, and send the public keys:
Alice sends a2 (private key is A2).
Charlie sends c2 (private key is C2).
Now the pool continues hashing, combining the two keys, hashing, and comparing each hash to both provided patterns, until they find a hash that fits 1alice or 1charlie.
When this happens, the same thing happens again, one user (probably Charlie) publishes the private key, and the other gets control over the new address.
The main problem I see is that a user can refuse to publish the private key after an address is found for someone else, wasting all the mining effort.
Can this problem be overcome?

If you don't have sole and complete control over the private keys, you don't have any bitcoin!  Signature campaigns are OK, zero tolorance for spam!
1JGYXhfhPrkiHcpYkiuCoKpdycPhGCuswa
kolloh
Legendary
*
Offline Offline

Activity: 1736
Merit: 1023


View Profile
April 12, 2017, 09:09:22 PM
 #605

The Vanity Pool sends payments with quite low fees due to the network requiring higher fees now. A recent payment used 44.444 sat/byte.

Any possibility in bumping up the fee a bit to make confirmations faster for these transactions?
ciobanuionut
Member
**
Offline Offline

Activity: 70
Merit: 10


View Profile
April 17, 2017, 07:55:36 AM
 #606

 mean INVEST... like if you've solved this problem, someone needs to be throwing money at you to buy hardware and further develop this proprietary software for a promise in sharing future profits. Maybe I'm wrong, but I see a big demand for this kind of service as Bitcoin awareness spreads.
iMaster
Member
**
Offline Offline

Activity: 135
Merit: 14


View Profile
April 20, 2017, 07:33:03 PM
 #607

When will this be live?  Would like to get a vanity address asap.
kolloh
Legendary
*
Offline Offline

Activity: 1736
Merit: 1023


View Profile
April 21, 2017, 02:18:51 AM
 #608

When will this be live?  Would like to get a vanity address asap.


It is already live and has been working for quite some time. You can use this to get a vanity address right now Smiley
addrstore.com
Newbie
*
Offline Offline

Activity: 45
Merit: 0


View Profile WWW
June 09, 2017, 07:56:35 AM
 #609

Quote
Good day!

I've seen this wallet address from the list of my referrals in a faucet, look at the last 3 character: 3GZLKxx7SgYkUXarSRNULxjxRQf4P3DAY3

I thought the addresses only starting in 1 can be generated for vanity address, isn't that a multi-sig address? If that is possible, how?

afaik before you base58encode it, instead of 0x00 at the beginning, you start with a 0x05 (prefix/version number)
this results in a leading 3 address
e.g.
05.payload.checksum -> base58encode -> 3.....
00.payload.checksum -> base58encode -> 1.....

Thanks for the explanation. But I'm still having trouble understanding codes regarding addresses.
Can I just do that using the vanity miner?

Yes it is possible.

Here's the command to generate a vanity address with the "3Love" prefix:

./vanitygen -F script 3Love
mraksoll
Jr. Member
*
Offline Offline

Activity: 82
Merit: 1


View Profile
June 10, 2017, 07:56:49 AM
 #610

i hv hardware rnd generator i can use it on vanitygen ? if i can how use it ? add rand bit's how seed ? Or what need do for vanity gen use my rnd bit's
my rng gen bit's entropy

Entropy = 7.999506 bits per byte.

Optimum compression would reduce the size
of this 333348 byte file by 0 percent.

Chi square distribution for 333348 samples is 227.67, and randomly
would exceed this value 89.00 percent of the times.

Arithmetic mean value of data bytes is 127.4296 (127.5 = random).
Monte Carlo value for Pi is 3.143309694 (error 0.05 percent).
Serial correlation coefficient is -0.001518 (totally uncorrelated = 0.0).
realproject
Full Member
***
Offline Offline

Activity: 204
Merit: 100



View Profile
June 10, 2017, 02:25:43 PM
 #611

is it possible if private key can found with this vanity address generator?!?
kolloh
Legendary
*
Offline Offline

Activity: 1736
Merit: 1023


View Profile
June 11, 2017, 07:54:52 PM
 #612

i hv hardware rnd generator i can use it on vanitygen ? if i can how use it ? add rand bit's how seed ? Or what need do for vanity gen use my rnd bit's
my rng gen bit's entropy

Entropy = 7.999506 bits per byte.

Optimum compression would reduce the size
of this 333348 byte file by 0 percent.

Chi square distribution for 333348 samples is 227.67, and randomly
would exceed this value 89.00 percent of the times.

Arithmetic mean value of data bytes is 127.4296 (127.5 = random).
Monte Carlo value for Pi is 3.143309694 (error 0.05 percent).
Serial correlation coefficient is -0.001518 (totally uncorrelated = 0.0).

Vanitygen includes the -s option which allows you to seed the random number generator from a file on the system. If your hardware random number generator can be accessed via a file, you should be able to use it like this.
kolloh
Legendary
*
Offline Offline

Activity: 1736
Merit: 1023


View Profile
June 11, 2017, 07:56:54 PM
 #613

is it possible if private key can found with this vanity address generator?!?

That is the whole purpose of the program. It will provide you with a private key for an address with the pattern you provide.

If you are asking if it can find a private key for an entire specific address, then the answer is yes but it would take so long that there is no way you would be successful.
mraksoll
Jr. Member
*
Offline Offline

Activity: 82
Merit: 1


View Profile
June 12, 2017, 03:18:13 AM
 #614

i hv hardware rnd generator i can use it on vanitygen ? if i can how use it ? add rand bit's how seed ? Or what need do for vanity gen use my rnd bit's
my rng gen bit's entropy

Entropy = 7.999506 bits per byte.

Optimum compression would reduce the size
of this 333348 byte file by 0 percent.

Chi square distribution for 333348 samples is 227.67, and randomly
would exceed this value 89.00 percent of the times.

Arithmetic mean value of data bytes is 127.4296 (127.5 = random).
Monte Carlo value for Pi is 3.143309694 (error 0.05 percent).
Serial correlation coefficient is -0.001518 (totally uncorrelated = 0.0).

Vanitygen includes the -s option which allows you to seed the random number generator from a file on the system. If your hardware random number generator can be accessed via a file, you should be able to use it like this.

how work -s , it pick all bits how one seed , or how it pick them ?  How match it pick  bit's for 1 generation , i dont understand this
here is example of hardware gen numbers output. It's generate random bit's. But how vanitygen use them?
Code:
€1Я–‘}_яню	Ou&Ц[ЇFEZy=/ыУX
чEJiT!Ї@§ббX¬[xџM¶в'6’ш_­фУвэжaLюЦMM0©l‹њ)¶ 4Nў8jљ–,ҐЛo—8Й»”pгBvз€fAc}PHЁё
bяd7HnДe§ h@Ш
ЃжЂ© §ґ±v њ№ђhiЁ=ЬT!k…¬ENATs&ЛuЭБIгxґнcBчљвAяљ–Ю 0Џ$!AЫљ›©Uэg¶#H)r3шИPH'FUa i2ґ1bЯкAC¬E~ЬGI[}ћ3°Бы»PєKHї7:’›ЯКm0?2Ќ=нc7!aG5ДЮЛЧK‚-ҐtЦтЏ>Їє7 Љ@\ЉФjИбЌX}”ч1©ц5R–M!QalF¦щs[‹‚(Mez№,'C€ЃO‹‘z!ЦвH@Tyщ„d`Ю‚ ‹Љ»ьЃЏ HЮгµЃ<
ЌG AЊK
¤·by`p®8ќ7™y@]љDїУШ05юc¶A¦O\%ЌQ
Ї2–> dLЮѓЙ™ќыЭ†O•џ<Qнyaќ®`Ь#I:‘¤бДT„•¦…‚¬g ⦓3¤ Q ЄP,cЪ,‚!SO\™!1®gaн3lS±aшI9 ЧЊЫE ]з“ы…ћiґAH№mE±­z”ћ<5aњЁ'Q, ФФ)4b}нБ–5~‘l†)»zvqT 1«\ж‚
Wi%@ИлAmДЙѓ7вU±c|1ЋЭ``aµ«‰I@#Ќ|Л.%ьPLPcцвўM2K
К&”cY˜QA§ѓpS0ЋsMщЧпt±Љ®^d\Nї©kмG<?KYёlГ… snдЮэйИЉэюgM/Ж’к%sЂг:"†ШЦ@CXтDы Цчv•T™ИЭ«~9
EЌTЬдiqoЯїъyЫXЃB}¦T«ЊД]R‚†'IЖ3
ЖЭTЖиzЯfИ˜1^sUЪµhS”ЃQ­A5њ жщ«°6ЛNЏў†мЄ$fшIXOє­0U¤ЩќuC%“д9л‡К
mraksoll
Jr. Member
*
Offline Offline

Activity: 82
Merit: 1


View Profile
June 12, 2017, 02:02:00 PM
 #615

support for this formats address be add ? https://blockchain.info/ru/address/3AZRLnsQ1QhbTsWpb6ftGuShTQQX8GXd5v
kolloh
Legendary
*
Offline Offline

Activity: 1736
Merit: 1023


View Profile
June 13, 2017, 03:31:50 AM
 #616

i hv hardware rnd generator i can use it on vanitygen ? if i can how use it ? add rand bit's how seed ? Or what need do for vanity gen use my rnd bit's
my rng gen bit's entropy

Entropy = 7.999506 bits per byte.

Optimum compression would reduce the size
of this 333348 byte file by 0 percent.

Chi square distribution for 333348 samples is 227.67, and randomly
would exceed this value 89.00 percent of the times.

Arithmetic mean value of data bytes is 127.4296 (127.5 = random).
Monte Carlo value for Pi is 3.143309694 (error 0.05 percent).
Serial correlation coefficient is -0.001518 (totally uncorrelated = 0.0).

Vanitygen includes the -s option which allows you to seed the random number generator from a file on the system. If your hardware random number generator can be accessed via a file, you should be able to use it like this.

how work -s , it pick all bits how one seed , or how it pick them ?  How match it pick  bit's for 1 generation , i dont understand this
here is example of hardware gen numbers output. It's generate random bit's. But how vanitygen use them?
Code:
€1Я–‘}_яню	Ou&Ц[ЇFEZy=/ыУX
чEJiT!Ї@§ббX¬[xџM¶в'6’ш_­фУвэжaLюЦMM0©l‹њ)¶ 4Nў8jљ–,ҐЛo—8Й»”pгBvз€fAc}PHЁё
bяd7HnДe§ h@Ш
ЃжЂ© §ґ±v њ№ђhiЁ=ЬT!k…¬ENATs&ЛuЭБIгxґнcBчљвAяљ–Ю 0Џ$!AЫљ›©Uэg¶#H)r3шИPH'FUa i2ґ1bЯкAC¬E~ЬGI[}ћ3°Бы»PєKHї7:’›ЯКm0?2Ќ=нc7!aG5ДЮЛЧK‚-ҐtЦтЏ>Їє7 Љ@\ЉФjИбЌX}”ч1©ц5R–M!QalF¦щs[‹‚(Mez№,'C€ЃO‹‘z!ЦвH@Tyщ„d`Ю‚ ‹Љ»ьЃЏ HЮгµЃ<
ЌG AЊK
¤·by`p®8ќ7™y@]љDїУШ05юc¶A¦O\%ЌQ
Ї2–> dLЮѓЙ™ќыЭ†O•џ<Qнyaќ®`Ь#I:‘¤бДT„•¦…‚¬g ⦓3¤ Q ЄP,cЪ,‚!SO\™!1®gaн3lS±aшI9 ЧЊЫE ]з“ы…ћiґAH№mE±­z”ћ<5aњЁ'Q, ФФ)4b}нБ–5~‘l†)»zvqT 1«\ж‚
Wi%@ИлAmДЙѓ7вU±c|1ЋЭ``aµ«‰I@#Ќ|Л.%ьPLPcцвўM2K
К&”cY˜QA§ѓpS0ЋsMщЧпt±Љ®^d\Nї©kмG<?KYёlГ… snдЮэйИЉэюgM/Ж’к%sЂг:"†ШЦ@CXтDы Цчv•T™ИЭ«~9
EЌTЬдiqoЯїъyЫXЃB}¦T«ЊД]R‚†'IЖ3
ЖЭTЖиzЯfИ˜1^sUЪµhS”ЃQ­A5њ жщ«°6ЛNЏў†мЄ$fшIXOє­0U¤ЩќuC%“д9л‡К

The -s option would be the path to a file that contains the output of the hardware device. On linux, for example, this might be /dev/hardwaredevice or whatever the path to your device is. Not sure exactly how this would work on Windows though.
mraksoll
Jr. Member
*
Offline Offline

Activity: 82
Merit: 1


View Profile
June 13, 2017, 01:01:39 PM
 #617

what  format data need
bits or bytes ?
sad_miner
Jr. Member
*
Offline Offline

Activity: 48
Merit: 1

Some personal text


View Profile
June 30, 2017, 12:56:07 PM
 #618

Are vanity addresses still a thing?  Could I make a few Satoshi generating addresses?  There are not many good bounties there and the amounts are a little low for the compute to try and find them.

Doesn't seem worth it, although if you already have the equipment...

I just generated 1hack...

Takes about a month for me to get to probability ~50% for generating interesting addresses like 1bitcoin[...] and 1satoshi[...]
kolloh
Legendary
*
Offline Offline

Activity: 1736
Merit: 1023


View Profile
June 30, 2017, 01:23:02 PM
 #619

Are vanity addresses still a thing?  Could I make a few Satoshi generating addresses?  There are not many good bounties there and the amounts are a little low for the compute to try and find them.

Doesn't seem worth it, although if you already have the equipment...

I just generated 1hack...

Takes about a month for me to get to probability ~50% for generating interesting addresses like 1bitcoin[...] and 1satoshi[...]


You need to use OCLvanitygen and use a decent GPU to get better speeds if you are not already.

With the increased price of bitcoin and the fees on the network, it doesn't seem as many people are interested in vanity addresses. There are still some in the pool but the reward to challenge ratio doesn't make them that appealing.
sad_miner
Jr. Member
*
Offline Offline

Activity: 48
Merit: 1

Some personal text


View Profile
June 30, 2017, 01:31:55 PM
 #620

Are vanity addresses still a thing?  Could I make a few Satoshi generating addresses?  There are not many good bounties there and the amounts are a little low for the compute to try and find them.

Doesn't seem worth it, although if you already have the equipment...

I just generated 1hack...

Takes about a month for me to get to probability ~50% for generating interesting addresses like 1bitcoin[...] and 1satoshi[...]


You need to use OCLvanitygen and use a decent GPU to get better speeds if you are not already.

I figured that might be the case.  I'm getting a not so great 12Mkey/sec.

With the increased price of bitcoin and the fees on the network, it doesn't seem as many people are interested in vanity addresses. There are still some in the pool but the reward to challenge ratio doesn't make them that appealing.

So that's why the reward is only just above 1.5 BTC for the prefix "qwertyuio"?  Would have expected at least  0.5 BTC for prefixes of length >= 6 with difficulties well over 10,000,000,000.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 [31] 32 33 34 35 »
  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!