Pages:
Author

Topic: Vanity Pool - vanity address generator pool - page 13. (Read 148044 times)

donator
Activity: 686
Merit: 519
It's for the children!
February 01, 2014, 10:20:55 PM
Fantastic.  Found another one.  On a cheap nvidia GPU.
newbie
Activity: 35
Merit: 0
On the solved work page I'd like to see columns date/time started and finished.
sr. member
Activity: 444
Merit: 313
December 13, 2013, 03:41:18 AM
I would like to know how exactly people who generate keys are paid out in this pool. Do all people who worked on a certain bounty get part of the spoils when it is finished? Or only the person that completed it? Or is there another, more intricate system, that is used to determine who gets paid how much?

What exactly do 'Value' and 'Reward' mean?

Thank you for your time,

~W-M

Winner takes all. I know shares would lower the reward variance, but implementing that would take too much of my time that is lacking at the moment.

I think Reward is the total bounty on an address, Value is Reward divided by how difficult it is to mine. You generally want to be working on bounties with bigger Values, even if their Rewards are smaller, unless you believe in your luck.
W-M
full member
Activity: 210
Merit: 100
In Crypto we Trust.
December 12, 2013, 11:51:56 AM
I would like to know how exactly people who generate keys are paid out in this pool. Do all people who worked on a certain bounty get part of the spoils when it is finished? Or only the person that completed it? Or is there another, more intricate system, that is used to determine who gets paid how much?

What exactly do 'Value' and 'Reward' mean?

Thank you for your time,

~W-M
newbie
Activity: 38
Merit: 0
November 30, 2013, 08:08:38 AM
Nvm
sr. member
Activity: 444
Merit: 313
November 23, 2013, 06:55:51 AM
Hmm, with the current block mining difficulty spike, I guess you might not be far off with how many times vanity mining is more profitable. The thing is, you also have to look at LTC mining and see how much money that can make you.
eoJ
full member
Activity: 140
Merit: 100
November 23, 2013, 06:52:32 AM
Current prices look a bit off to me? On my Nvidia GTX 480, it'll take me just over 18 days for 50% probability, for an 8 digit vanity address. Yet, if I was mining on it, I'd be making 0.0001 BTC per day, it'd take me 227 years to mine the 8.3 BTC payout, and that's assuming difficulty stayed the same. Am I missing something?
sr. member
Activity: 434
Merit: 250
November 05, 2013, 03:02:19 PM
Im using ./oclvanityminer now and im getting
Code:
Searching for pattern: "1UnnDunn" Reward: 0.036000 Value: 0.000001 BTC/Gkey

Is this ok? Shouldn't I be getting all the patterns requested by "04C13D9C.." for example.. ? The sum is greater than 0.036...

I guess it's just a convenient way of displaying it, rather than listing all patterns beings searched for.

Here is the way I'm vanity mining now, searching for 11 rewards using my GPU. I find the public key part with the most rewards pending (from https://vanitypool.appspot.com/availableWork and https://vanitypool.appspot.com/getWork), with at least one reward that is not insanely difficult, which turns out to be:

04C13D...

Then I put all the requested patterns linked to this key part into a file called patterns.txt, one line each, in the same folder as the oclvanitygen executable.

now I run this script:

    #!/bin/bash
    cd /path/to/vanitygen/
    rm *.oclbin
    now=`date +"%m_%d_%Y"`
    outputFile="Solution_$now.txt"
    ./oclvanitygen \
        -D 0:1,grid=1024x1024 \
        -P 04C13D... \
        -f patterns.txt \
        -o $outputFile \
        -k

It appears that the -P option does not show up when you type ./oclvanitygen -help, but it is supported in the code, so hopefully when / if it finds a solution, it will be a valid key part and I'll get one of the rewards. A script to do this automatically should be easy enough to generate, not sure what went wrong with "oclvanityminer".



I have added the ability to dump the pub key when using verbose mode:
https://github.com/nicoschtein/vanitygen/tree/dump-pubkey
Check it out for debugging purposes !
sr. member
Activity: 444
Merit: 313
November 05, 2013, 05:54:16 AM
just out of curiosity is this pool still up and running?

Yes, it's running and it has over 7.5BTC in bounties ready to be collected Smiley.
hero member
Activity: 806
Merit: 1000
COINMIXER.NET
November 05, 2013, 05:52:59 AM
just out of curiosity is this pool still up and running?
sr. member
Activity: 444
Merit: 313
November 04, 2013, 04:49:17 PM
Here is the way I'm vanity mining now, searching for 11 rewards using my GPU. I find the public key part with the most rewards pending (from https://vanitypool.appspot.com/availableWork and https://vanitypool.appspot.com/getWork), with at least one reward that is not insanely difficult, which turns out to be:

04C13D...

Then I put all the requested patterns linked to this key part into a file called patterns.txt, one line each, in the same folder as the oclvanitygen executable.

now I run this script:

    #!/bin/bash
    cd /path/to/vanitygen/
    rm *.oclbin
    now=`date +"%m_%d_%Y"`
    outputFile="Solution_$now.txt"
    ./oclvanitygen \
        -D 0:1,grid=1024x1024 \
        -P 04C13D... \
        -f patterns.txt \
        -o $outputFile \
        -k

It appears that the -P option does not show up when you type ./oclvanitygen -help, but it is supported in the code, so hopefully when / if it finds a solution, it will be a valid key part and I'll get one of the rewards. A script to do this automatically should be easy enough to generate, not sure what went wrong with "oclvanityminer".

Any problems with vanitygen are best addressed to the author of the software - https://bitcointalksearch.org/topic/vanitygen-vanity-bitcoin-address-generatorminer-v022-25804 .
sr. member
Activity: 606
Merit: 273
November 04, 2013, 01:28:34 PM
Here is the way I'm vanity mining now, searching for 11 rewards using my GPU. I find the public key part with the most rewards pending (from https://vanitypool.appspot.com/availableWork and https://vanitypool.appspot.com/getWork), with at least one reward that is not insanely difficult, which turns out to be:

04C13D...

Then I put all the requested patterns linked to this key part into a file called patterns.txt, one line each, in the same folder as the oclvanitygen executable.

now I run this script:

    #!/bin/bash
    cd /path/to/vanitygen/
    rm *.oclbin
    now=`date +"%m_%d_%Y"`
    outputFile="Solution_$now.txt"
    ./oclvanitygen \
        -D 0:1,grid=1024x1024 \
        -P 04C13D... \
        -f patterns.txt \
        -o $outputFile \
        -k

It appears that the -P option does not show up when you type ./oclvanitygen -help, but it is supported in the code, so hopefully when / if it finds a solution, it will be a valid key part and I'll get one of the rewards. A script to do this automatically should be easy enough to generate, not sure what went wrong with "oclvanityminer".

sr. member
Activity: 444
Merit: 313
November 03, 2013, 04:14:14 PM
Im using ./oclvanityminer now and im getting
Code:
Searching for pattern: "1UnnDunn" Reward: 0.036000 Value: 0.000001 BTC/Gkey

Is this ok? Shouldn't I be getting all the patterns requested by "04C13D9C.." for example.. ? The sum is greater than 0.036...

I guess it's just a convenient way of displaying it, rather than listing all patterns beings searched for.
sr. member
Activity: 434
Merit: 250
November 03, 2013, 01:45:18 PM
Im using ./oclvanityminer now and im getting
Code:
Searching for pattern: "1UnnDunn" Reward: 0.036000 Value: 0.000001 BTC/Gkey

Is this ok? Shouldn't I be getting all the patterns requested by "04C13D9C.." for example.. ? The sum is greater than 0.036...
hero member
Activity: 508
Merit: 500
Techwolf on #bitcoin and Reddit
November 01, 2013, 07:55:29 PM
I guess I was right then, you can only search for addresses from one public key at a time. I just didn't notice there were multiple requests with the same key in the pool! Tongue

I'm using vanitygen and not oclvanityminer, so I never noticed before. I should be getting a GPU with more MH/s than my CPU soon, though. (No, it's not integrated, it's just a dedicated card that's ~5 years old. Oclvanityminer tends to crash because there are only ~5-10 threads available for it to use, if that.)
sr. member
Activity: 606
Merit: 273
November 01, 2013, 07:14:40 PM
Yes, oclvanityminer should do all of this automatically...
sr. member
Activity: 444
Merit: 313
Anyone? I guess I can start looking at the source...

When you mine for an address, you take a public key and generate a random private-public keypair associated with it. The resulting address will be a valid vanity address for ALL patterns that use the same public key. So after you generate the address, check it against all patterns of that public key and see if any matches. If they do, submit your solution to that work, otherwise generate a new key.

Of course, you need to abide by the standard vanity address generation algorithms when creating the keypair.
sr. member
Activity: 606
Merit: 273
Anyone? I guess I can start looking at the source...
donator
Activity: 3136
Merit: 1167
Otoh, can you explain how I would mine these 11 requests simultaneously? Are you using oclvanityminer, or vanitygen, and what is the command-line string?

Sorry, I have no idea, I just request these, that's my public key.
sr. member
Activity: 606
Merit: 273
Otoh, can you explain how I would mine these 11 requests simultaneously? Are you using oclvanityminer, or vanitygen, and what is the command-line string?
Pages:
Jump to: