Bitcoin Forum
April 19, 2024, 12:46:25 AM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 [181] 182 183 184 185 186 187 188 189 190 191 »
  Print  
Author Topic: Vanitygen: Vanity bitcoin address generator/miner [v0.22]  (Read 1152795 times)
Sud0
Newbie
*
Offline Offline

Activity: 5
Merit: 0


View Profile
November 09, 2018, 01:12:19 AM
 #3601


use only capital letters, exclude numbers, exclude xyz include 234
only use letters ABCDEFGJHK and number 23456 etc...

thank you

I think vanitygen works with regex.

vanitygen -v -r ^1[A-Z0-9]{3}.*$

Quick explanation :  ^1[A-Z0-9]{3}.*$

^: Start of regex line
1 : All btc addresses start with 1
[A-Z0-9] : only capital letters, and numbers
{3} : 3 times
. : any character
* : any number of times
$ : end of regex line

You can check more explanations about how to use regex expressions here : https://regex101.com/





Thank you,  , lets say i only want to include 2345 and exclude the res of the number , so 2-5 and letters  a combination of lowercase and uppercase that i choose /. fo example ABSD pqrs and number 2-5.

is that doable?

thank you
1713487585
Hero Member
*
Offline Offline

Posts: 1713487585

View Profile Personal Message (Offline)

Ignore
1713487585
Reply with quote  #2

1713487585
Report to moderator
1713487585
Hero Member
*
Offline Offline

Posts: 1713487585

View Profile Personal Message (Offline)

Ignore
1713487585
Reply with quote  #2

1713487585
Report to moderator
Activity + Trust + Earned Merit == The Most Recognized Users on Bitcointalk
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713487585
Hero Member
*
Offline Offline

Posts: 1713487585

View Profile Personal Message (Offline)

Ignore
1713487585
Reply with quote  #2

1713487585
Report to moderator
1713487585
Hero Member
*
Offline Offline

Posts: 1713487585

View Profile Personal Message (Offline)

Ignore
1713487585
Reply with quote  #2

1713487585
Report to moderator
1713487585
Hero Member
*
Offline Offline

Posts: 1713487585

View Profile Personal Message (Offline)

Ignore
1713487585
Reply with quote  #2

1713487585
Report to moderator
Sud0
Newbie
*
Offline Offline

Activity: 5
Merit: 0


View Profile
November 09, 2018, 01:26:44 AM
 #3602

what i am trying to achive here is to make a L33T phrase which is possible with certin numbers and words. NUmber only 689

letters > ABDEF uppercase ghtwy lowercase

thanks for your help, don know it this is doable with regex, i couldn't figure it out.

KingZee
Sr. Member
****
Offline Offline

Activity: 910
Merit: 452


Check your coin privilege


View Profile
November 09, 2018, 02:27:56 AM
 #3603




Thank you,  , lets say i only want to include 2345 and exclude the res of the number , so 2-5 and letters  a combination of lowercase and uppercase that i choose /. fo example ABSD pqrs and number 2-5.

is that doable?

thank you

what i am trying to achive here is to make a L33T phrase which is possible with certin numbers and words. NUmber only 689

letters > ABDEF uppercase ghtwy lowercase

thanks for your help, don know it this is doable with regex, i couldn't figure it out.



I'd help you out but I have no idea what you mean.

Try to understand what I wrote, and apply what you want :

regex : ^1[a-z]{4}.*$

example match : 1lmnoxxxxxxxxxxxxxxxxxx

regex : ^1[A-Z]{2}.*$

example match : 1IJxxxxxxxxxxxxxxxxxxxx

regex : ^1[A-Z0-9]{4}.*Z$

example match : 1A2B1xxxxxxxxxxxxxxxxxxxxZ

etc...

Beep boop beep boop
LoyceV
Legendary
*
Offline Offline

Activity: 3290
Merit: 16493


Thick-Skinned Gang Leader and Golden Feather 2021


View Profile WWW
November 09, 2018, 07:13:33 AM
 #3604

what i am trying to achive here is to make a L33T phrase which is possible with certin numbers and words. NUmber only 689

letters > ABDEF uppercase ghtwy lowercase
Can you give an example of the prefix you want? Would it be for example 1689ABDEFghtwy or the same characters in any different order?

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
Sud0
Newbie
*
Offline Offline

Activity: 5
Merit: 0


View Profile
November 09, 2018, 01:12:08 PM
 #3605





Thank you,  , lets say i only want to include 2345 and exclude the res of the number , so 2-5 and letters  a combination of lowercase and uppercase that i choose /. fo example ABSD pqrs and number 2-5.

is that doable?

thank you

what i am trying to achive here is to make a L33T phrase which is possible with certin numbers and words. NUmber only 689

letters > ABDEF uppercase ghtwy lowercase

thanks for your help, don know it this is doable with regex, i couldn't figure it out.



I'd help you out but I have no idea what you mean.

Try to understand what I wrote, and apply what you want :

regex : ^1[a-z]{4}.*$

example match : 1lmnoxxxxxxxxxxxxxxxxxx

regex : ^1[A-Z]{2}.*$

example match : 1IJxxxxxxxxxxxxxxxxxxxx

regex : ^1[A-Z0-9]{4}.*Z$

example match : 1A2B1xxxxxxxxxxxxxxxxxxxxZ

etc...


thanks

what i am trying to achive here is to make a L33T phrase which is possible with certin numbers and words. NUmber only 689

letters > ABDEF uppercase ghtwy lowercase
Can you give an example of the prefix you want? Would it be for example 1689ABDEFghtwy or the same characters in any different order?

ok here is prefix >L33T
now
make and address using these and only these . A, M, N, H, Y, G, T, R,  c, b, h, j, k, m, 4, 5, 6

it can not use a lowercase, or B or 2,  iwant it to make address based on my input

thank you
LoyceV
Legendary
*
Offline Offline

Activity: 3290
Merit: 16493


Thick-Skinned Gang Leader and Golden Feather 2021


View Profile WWW
November 09, 2018, 01:37:04 PM
 #3606

ok here is prefix >L33T
now
make and address using these and only these . A, M, N, H, Y, G, T, R,  c, b, h, j, k, m, 4, 5, 6

it can not use a lowercase, or B or 2,  iwant it to make address based on my input
So you want the entire address to meet your requirements? That's going to be very difficult or more likely just impossible.
I'd say try this: make a long list of prefixes:
Code:
1L33TAAA
1L33TAAM
1L33TAAN
1L33TAAH
.......
.......
Make this list 4913 or 83521 prefixes long, so you include lengths 1L33TAAA or 1L33TAAAA.
Then, use this list as input for oclvanitygen (much faster than just vanitygen), and see how long it takes you to get some results. Each additional character is going to take you more than 3 times longer.

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
Sud0
Newbie
*
Offline Offline

Activity: 5
Merit: 0


View Profile
November 09, 2018, 03:18:38 PM
 #3607

you da man thx, @LoyceV

ok here is prefix >L33T
now
make and address using these and only these . A, M, N, H, Y, G, T, R,  c, b, h, j, k, m, 4, 5, 6

it can not use a lowercase, or B or 2,  iwant it to make address based on my input
So you want the entire address to meet your requirements? That's going to be very difficult or more likely just impossible.
I'd say try this: make a long list of prefixes:
Code:
1L33TAAA
1L33TAAM
1L33TAAN
1L33TAAH
.......
.......
Make this list 4913 or 83521 prefixes long, so you include lengths 1L33TAAA or 1L33TAAAA.
Then, use this list as input for oclvanitygen (much faster than just vanitygen), and see how long it takes you to get some results. Each additional character is going to take you more than 3 times longer.
vozphongtom
Full Member
***
Offline Offline

Activity: 386
Merit: 100


View Profile
November 14, 2018, 01:51:38 AM
 #3608

this tool is awesome . i hope next version have more functions or update to make file export have smaller size

we can replace

Pattern: 1
Address: 1xxxxxxxxxxxxxxxxxxx
Privkey: 5xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

by

Pattern: 1  ,Address: 1xxxxxxxxxxxxxxxxxxx ,Privkey: 5xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

on 1 line


or  more function
read file text (mutil line) and convert  to bitcoin address and private key (passphrases to generate like brainwallet)

thank you so much
OgNasty
Donator
Legendary
*
Offline Offline

Activity: 4718
Merit: 4218


Leading Crypto Sports Betting & Casino Platform


View Profile WWW
November 24, 2018, 10:24:43 AM
 #3609

this tool is awesome . i hope next version have more functions or update to make file export have smaller size

we can replace

Pattern: 1
Address: 1xxxxxxxxxxxxxxxxxxx
Privkey: 5xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

by

Pattern: 1  ,Address: 1xxxxxxxxxxxxxxxxxxx ,Privkey: 5xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

on 1 line


or  more function
read file text (mutil line) and convert  to bitcoin address and private key (passphrases to generate like brainwallet)

thank you so much

Vanitygen hasn’t been updated in a long time. You’d need to find someone to make a software branch that includes these changes for you, or write a simple script to do it with the vanitygen output file.

..Stake.com..   ▄████████████████████████████████████▄
   ██ ▄▄▄▄▄▄▄▄▄▄            ▄▄▄▄▄▄▄▄▄▄ ██  ▄████▄
   ██ ▀▀▀▀▀▀▀▀▀▀ ██████████ ▀▀▀▀▀▀▀▀▀▀ ██  ██████
   ██ ██████████ ██      ██ ██████████ ██   ▀██▀
   ██ ██      ██ ██████  ██ ██      ██ ██    ██
   ██ ██████  ██ █████  ███ ██████  ██ ████▄ ██
   ██ █████  ███ ████  ████ █████  ███ ████████
   ██ ████  ████ ██████████ ████  ████ ████▀
   ██ ██████████ ▄▄▄▄▄▄▄▄▄▄ ██████████ ██
   ██            ▀▀▀▀▀▀▀▀▀▀            ██ 
   ▀█████████▀ ▄████████████▄ ▀█████████▀
  ▄▄▄▄▄▄▄▄▄▄▄▄███  ██  ██  ███▄▄▄▄▄▄▄▄▄▄▄▄
 ██████████████████████████████████████████
▄▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▄
█  ▄▀▄             █▀▀█▀▄▄
█  █▀█             █  ▐  ▐▌
█       ▄██▄       █  ▌  █
█     ▄██████▄     █  ▌ ▐▌
█    ██████████    █ ▐  █
█   ▐██████████▌   █ ▐ ▐▌
█    ▀▀██████▀▀    █ ▌ █
█     ▄▄▄██▄▄▄     █ ▌▐▌
█                  █▐ █
█                  █▐▐▌
█                  █▐█
▀▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▀█
▄▄█████████▄▄
▄██▀▀▀▀█████▀▀▀▀██▄
▄█▀       ▐█▌       ▀█▄
██         ▐█▌         ██
████▄     ▄█████▄     ▄████
████████▄███████████▄████████
███▀    █████████████    ▀███
██       ███████████       ██
▀█▄       █████████       ▄█▀
▀█▄    ▄██▀▀▀▀▀▀▀██▄  ▄▄▄█▀
▀███████         ███████▀
▀█████▄       ▄█████▀
▀▀▀███▄▄▄███▀▀▀
..PLAY NOW..
willi9974
Legendary
*
Offline Offline

Activity: 3416
Merit: 2639


Escrow Service


View Profile
December 04, 2018, 07:05:23 AM
 #3610

is it possible to run the program and work with the GPU instead of the CPU?

.
.BLACKJACK ♠ FUN.
█████████
██████████████
████████████
█████████████████
████████████████▄▄
░█████████████▀░▀▀
██████████████████
░██████████████
████████████████
░██████████████
████████████
███████████████░██
██████████
CRYPTO CASINO &
SPORTS BETTING
▄▄███████▄▄
▄███████████████▄
███████████████████
█████████████████████
███████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
███████████████████████
█████████████████████
███████████████████
▀███████████████▀
█████████
.
LoyceV
Legendary
*
Offline Offline

Activity: 3290
Merit: 16493


Thick-Skinned Gang Leader and Golden Feather 2021


View Profile WWW
December 04, 2018, 07:12:31 AM
 #3611

is it possible to run the program and work with the GPU instead of the CPU?
Yes, use oclvanitygen.

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
willi9974
Legendary
*
Offline Offline

Activity: 3416
Merit: 2639


Escrow Service


View Profile
December 04, 2018, 09:46:27 AM
 #3612

can anybody help, it will not work

I start it unter Windows 7 and Windows 10 and get the same error message
i test it with -d 0:0 / -d 0:1 / -D 0:0 / -D 0:1, same error

Code:
oclvanitygen.exe -d 0:0 1WiLLi
Difficulty: 15318045009
Compiling kernel, can take minutes...vg_ocl_context_callback error: Build program failure.
failure.
clBuildProgram: CL_BUILD_PROGRAM_FAILURE
Build log:
1:173:19: error: constant address space qualified variables are required to be initialized
Device: Intel(R) HD Graphics 520
Vendor: Intel(R) Corporation (8086)
Driver: 20.19.15.4444
Profile: FULL_PROFILE
Version: OpenCL 2.0
Max compute units: 24
Max workgroup size: 256
Global memory: 1360632218
Max allocation: 340158054
Available OpenCL platforms:
0: [Intel(R) Corporation] Intel(R) OpenCL
  0: [Intel(R) Corporation] Intel(R) HD Graphics 520
  1: [Intel(R) Corporation] Intel(R) Core(TM) i5-6300U CPU @ 2.40GHz


.
.BLACKJACK ♠ FUN.
█████████
██████████████
████████████
█████████████████
████████████████▄▄
░█████████████▀░▀▀
██████████████████
░██████████████
████████████████
░██████████████
████████████
███████████████░██
██████████
CRYPTO CASINO &
SPORTS BETTING
▄▄███████▄▄
▄███████████████▄
███████████████████
█████████████████████
███████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
███████████████████████
█████████████████████
███████████████████
▀███████████████▀
█████████
.
DaveF
Legendary
*
Offline Offline

Activity: 3458
Merit: 6203


Crypto Swap Exchange


View Profile WWW
December 04, 2018, 11:55:49 AM
 #3613

can anybody help, it will not work

I start it unter Windows 7 and Windows 10 and get the same error message
i test it with -d 0:0 / -d 0:1 / -D 0:0 / -D 0:1, same error

Code:
oclvanitygen.exe -d 0:0 1WiLLi
Difficulty: 15318045009
Compiling kernel, can take minutes...vg_ocl_context_callback error: Build program failure.
failure.
clBuildProgram: CL_BUILD_PROGRAM_FAILURE
Build log:
1:173:19: error: constant address space qualified variables are required to be initialized
Device: Intel(R) HD Graphics 520
Vendor: Intel(R) Corporation (8086)
Driver: 20.19.15.4444
Profile: FULL_PROFILE
Version: OpenCL 2.0
Max compute units: 24
Max workgroup size: 256
Global memory: 1360632218
Max allocation: 340158054
Available OpenCL platforms:
0: [Intel(R) Corporation] Intel(R) OpenCL
  0: [Intel(R) Corporation] Intel(R) HD Graphics 520
  1: [Intel(R) Corporation] Intel(R) Core(TM) i5-6300U CPU @ 2.40GHz


The intel graphics do not support open CL you need an AMD or Nvidia card.
-Dave

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
KingZee
Sr. Member
****
Offline Offline

Activity: 910
Merit: 452


Check your coin privilege


View Profile
December 04, 2018, 12:19:13 PM
 #3614


The intel graphics do not support open CL you need an AMD or Nvidia card.
-Dave

Are you sure about that?

https://software.intel.com/en-us/articles/opencl-drivers#proc-graph-section

Intel has OpenCL runtimes for both their GPU and CPU processors.

This seems to be a bug that occured 5 years ago too : https://github.com/samr7/vanitygen/issues/38

Check the fix there if it might work for you. Or change to one of the forks mentioned in the issue..

Beep boop beep boop
PietCoin97
Jr. Member
*
Offline Offline

Activity: 91
Merit: 3


View Profile
January 01, 2019, 07:31:42 PM
Merited by LoyceV (1)
 #3615

Hello i have a problem with oclvanitygen.

I use cuda 10.0 with 5 GTX 1070

NVIDIA Driver version :  410.48

when i start oclvanitygen normal all works great like this:

Code:
./oclvanitygen -D 0:0 -D 0:1 -D 0:2 -D 0:3 -D 0:4 1BTC
Difficulty: 77178
Compiling kernel, can take minutes...done!
Pattern: 1BTC                                                                 
Address: 1BTCGGz4gRcQzx6qRhvxTu6ZGC158WJbQF
Privkey: 5JfqJigF2ZgwwwXHDWWKjXWbBnHN5TiFiC3YihHg1BvzxfqzZRZ

so the ouput is right.

but when i use the pattern file -f and the seed option -s ( i have 6 MIO Pattern it works with my ram and sometimes i take 12 word seed and sometimes 24 word seed ) the output is wrong.

here i took this seed: love light grit bless gorilla title media curtain horse soup better action seminar squirrel hold shield quick equip frozen retreat honey tomorrow roast autumn

Code:
./oclvanitygen -S -k -D 0:0 -D 0:1 -D 0:2 -D 0:3 -D 0:4 -o found.txt -f 6MIOPattern -s seed

Next match difficulty: 719170320814992132724345727918 (5999998 prefixes)
[171.58 Mkey/s][total 115385303040][Prob 0.0%][50% in 9.212632e+13y]           Match idx: 6082822
CPU hash: 54b93af0933ab37205ba39a21dd479054f3ecccf
GPU hash: [b]3b4df4363caa9e3bd9da58020d3080be8230a4ae[/b]
Found delta: 15716809 Start delta: 15728641
[175.30 Mkey/s][total 167588659200][Prob 0.0%][50% in 9.017270e+13y]

and here i took this seed: range pupil foam valley cart raise family exotic swear bamboo coach room sister drop copy claim about response giraffe pig correct fire mask vote

Code:
./oclvanitygen -S -k -D 0:0 -D 0:1 -D 0:2 -D 0:3 -D 0:4 -o found.txt -f 6MIOPattern -s seed

Next match difficulty: 719170320814992132724345727918 (5999998 prefixes)
Compiling kernel, can take minutes...done!
[168.58 Mkey/s][total 200272773120][Prob 0.0%][50% in 9.376390e+13y]           Match idx: 6082822
CPU hash: 1e1bd1d3bebeae2beedc1293c959ab2b134f8911
GPU hash: [b]3b4df4363caa9e3bd9da58020d3080be8230a4ae[/b]
Found delta: 15719297 Start delta: 47185921
[169.56 Mkey/s][total 252098641920][Prob 0.0%][50% in 9.322174e+13y]           Match idx: 6082822
CPU hash: d590b6052485414473c054533478d9a5e8004063
GPU hash: [b]3b4df4363caa9e3bd9da58020d3080be8230a4ae[/b]
Found delta: 15714174 Start delta: 47185921
[168.33 Mkey/s][total 288809287680][Prob 0.0%][50% in 9.390258e+13y]

you can see i everytime found the same hash with my gpu: 3b4df4363caa9e3bd9da58020d3080be8230a4ae

i really dont understand what i am doing wrong

mabey someone can help me ?

KingZee
Sr. Member
****
Offline Offline

Activity: 910
Merit: 452


Check your coin privilege


View Profile
January 01, 2019, 09:26:45 PM
 #3616

----

Why are you running on safe mode the second time? Try removing -S

To quote the response fom this :
Quote
oclVanitygen generates addresses by using OpenCL. OpenCL can run on GPUs, in contrast to C. After OpenCL thinks an address it created has the expected prefix, it passes the private key (actually the delta value of it), the calculated P2PKH hash and the idx value to the C part of the software. When the GPU calculated hash doesn't match the CPU calculated hash, it dumps the info for debugging.

Short Answer: It would, of course, have printed the private key if it had found an address with the expected prefix.

I also don't get what you're trying to achieve using different seeds. You want to find the same patterns from your input file, so regardless of the seed used, if vanitygen finds a pattern that matches the ones in your file, it'll add it. The seeds only help in changing where vanitygen starts to search for a solution, but provided it runs for long enough (and it looks like it'll need a massive amount of years to find what you want) it won't matter anymore.

Beep boop beep boop
PietCoin97
Jr. Member
*
Offline Offline

Activity: 91
Merit: 3


View Profile
January 01, 2019, 10:37:13 PM
 #3617

ok so i remove the Safe mode

I start with

Code:
./oclvanitygen -k -D 0:0 -D 0:1 -D 0:2 -D 0:3 -D 0:4 -o found.txt -f 6MIOPattern -s seed
Read 77 bytes from RNG seed file

Next match difficulty: 719170320814992132724345727918 (5999998 prefixes)
[183.69 Mkey/s][total 1069547520][Prob 0.0%][50% in 8.605509e+13y]             Match idx: 6082822
CPU hash: 8e824fbbdf941ecd859e1da587e4fa0b563f13ef
GPU hash: 3b4df4363caa9e3bd9da58020d3080be8230a4ae
Found delta: 15727901 Start delta: 31457281
[179.43 Mkey/s][total 6464471040][Prob 0.0%][50% in 8.809719e+13y]

and get always the same hash 3b4df4363caa9e3bd9da58020d3080be8230a4ae

so how do you search ?

big_daddy
Hero Member
*****
Offline Offline

Activity: 1652
Merit: 583


xUSD - The PRIVATE stable coin - Haven Protocol


View Profile WWW
January 09, 2019, 11:01:21 AM
 #3618

I'm trying to generate my custom BTC address but with my CPU is a pain in....
Does anyone managed to run the program over the GPUs? I have AMD cards, rx470 and rx570, but I'm getting errors, the process is not starting

If you don't believe it or don't get it, I don't have the time to try to convince you, sorry.
xhomerx10
Legendary
*
Offline Offline

Activity: 3822
Merit: 7926



View Profile
January 09, 2019, 12:24:02 PM
 #3619

ok so i remove the Safe mode

I start with

Code:
./oclvanitygen -k -D 0:0 -D 0:1 -D 0:2 -D 0:3 -D 0:4 -o found.txt -f 6MIOPattern -s seed
Read 77 bytes from RNG seed file

Next match difficulty: 719170320814992132724345727918 (5999998 prefixes)
[183.69 Mkey/s][total 1069547520][Prob 0.0%][50% in 8.605509e+13y]             Match idx: 6082822
CPU hash: 8e824fbbdf941ecd859e1da587e4fa0b563f13ef
GPU hash: 3b4df4363caa9e3bd9da58020d3080be8230a4ae
Found delta: 15727901 Start delta: 31457281
[179.43 Mkey/s][total 6464471040][Prob 0.0%][50% in 8.809719e+13y]

and get always the same hash 3b4df4363caa9e3bd9da58020d3080be8230a4ae

so how do you search ?



 Are you trying to load a file that contains 6 million patterns to search for?

 Can you give us a small sample of the patterns from your file?

PietCoin97
Jr. Member
*
Offline Offline

Activity: 91
Merit: 3


View Profile
January 09, 2019, 10:45:35 PM
 #3620

ok so i remove the Safe mode

I start with

Code:
./oclvanitygen -k -D 0:0 -D 0:1 -D 0:2 -D 0:3 -D 0:4 -o found.txt -f 6MIOPattern -s seed
Read 77 bytes from RNG seed file

Next match difficulty: 719170320814992132724345727918 (5999998 prefixes)
[183.69 Mkey/s][total 1069547520][Prob 0.0%][50% in 8.605509e+13y]             Match idx: 6082822
CPU hash: 8e824fbbdf941ecd859e1da587e4fa0b563f13ef
GPU hash: 3b4df4363caa9e3bd9da58020d3080be8230a4ae
Found delta: 15727901 Start delta: 31457281
[179.43 Mkey/s][total 6464471040][Prob 0.0%][50% in 8.809719e+13y]

and get always the same hash 3b4df4363caa9e3bd9da58020d3080be8230a4ae

so how do you search ?



 Are you trying to load a file that contains 6 million patterns to search for?

 Can you give us a small sample of the patterns from your file?



of course these are the pattern the first 23 digits from all funded addresses

Code:
16rCmCmbuWDhPjWTrpQGaU3
183hmJGRuTEi2YDCWy5iozY
1FeexV6bAHb8ybZjqQMjJrc
1HQ3Go3ggs8pFnXuHVHRytP
18rnfoQgGo1HqvVQaAN4Qnx
1LdRcdxfbSnmCYYNdeYpUnz
1JCe8z4jJVNXSjohjM4i9Hh
1AC4fMwgY8j9onSbXEWeH6Z
12YygZpCEC8VED2oSMQdWCq
18mkjbVaHAcMauL6iiy7zm9
17hf5H8D6Yc4B7zHEg3orAt
13JQwoSLLR3ffXwswe2HCTK
12ib7dApVFvg82TXKycWBNp
12tkqA9xSoowkzoERHMWNKs
1AnwDVbwsLBVwRfqN2x9Eo4
14eQD1QQb8QFVG8YFwGz7sk
16FSBGvQfy4K8dYvPPWWpmz
17rm2dvb439dZqyMe2d4D6A
1Cr7EjvS8C7gfarREHCvFhd
1PeizMg76Cf96nUQrYg8xuo
18x5Wo3FLQN4t1DLZgV2MoA
1GR9qNz7zgtaW5HwwVpEJWM
1FaUfrUhv37aqFAZ9ij5955
1DWsHCjeekCe3tRzMuJktHh
1HLsDiYE8P61Z3mwqVuq1xt
1PfceCKGraSPEvx6nfjw5ZC
15xZvLJLAgxh8cxEmAbpx1H
1BZaYtmXka1y3Byi2yvXCDG
1GKztam9D8ZWK9GxsNoNZbV
1KKiEAkpnQR2FH5kpkGP644
18hRPy5sTzoYAfX18qn8eK1
1HBM45n214sV9yXoizBwTks
13sixi6TGPoWvbi2e93wdQS
1CMbVZV7xbAiFFauuAf3tgZ
15NQthxeLSwMtEaXJFM7YUC
1aXzEKiDJKzkPxTZy9zGc3y
1DWxysF7GPRYGShNxL5ux2N
1923qxU74HWWz75LgWTsPE4
19G5kkYvjawZiYKhFeh8Wmf
1F34duy2eeMz5mSrvFepVzy
1f1miYFQWTzdLiCBxtHHnNi
187Nqgq3WoKihPNMtWYfRe6
1KbrSKrT3GeEruTuuYYUSQ3
14YK4mzJGo5NKkNnmVJeuEA
12tLs9c9RsALt4ockxa1hB4
1P1iThxBH542Gmk1kZNXyji
1ucXXZQSEf4zny2HRwAQKtV
1BAFWQhH9pNkz3mZDQ1tWrt
1CPaziTqeEixPoSFtJxu74u
1Ki3WTEEqTLPNsN5cGTsMkL
1Kx4QFupZ9vKFmUDhsptfSB
1LfV1tSt3KNyHpFJnAzrqsL
1EU2pMence1UfifCco2UHJC
1DBwffK5gAsL7axG6idGFRX
1Kd6zLb9iAjcrgq8HzWnoWN
1P9fAFAsSLRmMu2P7wZ5CXD
1HLvaTs3zR3oev9ya7Pzp3G
17CzhFvGwH6TT46JtzhnhMp
15nMWix4rnpr7HaZkvfMVkd
167ZWTT8n6s4ya8cGjqNNQj
1HTzd3sKVmrTNZ6QGisPPA1
1NDyJtNTjmwk5xPNhjgAMu4
1HGVtEtKWayb56xiZ4YJQie
19MqjbtGam8oTk21QCM32fj
19rxQRpXBMQcbsYcxo6w9xL
18zuLTKQnLjp987LdxuYvje
1NpZcfBnaJeoRT9ZqwZVRMw
198aMn6ZYAczwrE5NvNTUMy
1MYv4C4hZ7hC5sbHrPkzvmN
1FUBESNxB2JkyXPc4o9wwoG
1EDRfeNkjkH2SAhSbEKzhKu
182p5CrqfDxvonznRyi5AUB
1LyTftu54VMYCv5pq3S4pMz
1Cb1G5qFK91fShyaPPZWVFw
19Te6hzGFSbryomVYqzG2kp
1JpiTWauQdtysbynNp88dWe
1N4yKFsFPjjoJyo3BAKUWpc
Pages: « 1 ... 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 [181] 182 183 184 185 186 187 188 189 190 191 »
  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!