Bitcoin Forum

Bitcoin => Bitcoin Technical Support => Topic started by: milomen100 on February 02, 2018, 11:22:30 AM



Title: Address generator for test.
Post by: milomen100 on February 02, 2018, 11:22:30 AM
Hello.
I need find or write simple generator for some testing.
I need to generate many many adress from given secret exponent decimal value and write to file.

For example i need generate all address from 1 to 1000000.

I need in file only secret exponent and x value pubkey or x,y pubkey.

Any idea?


Title: Re: Address generator for test.
Post by: jackg on February 02, 2018, 01:12:46 PM
Hello.
I need find or write simple generator for some testing.
I need to generate many many adress from given secret exponent decimal value and write to file.

For example i need generate all address from 1 to 1000000.

I need in file only secret exponent and x value pubkey or x,y pubkey.

Any idea?

bitaddress.org is probably a good place to start. You'll have to convert the secret later though. Also vanitygen just using s 1 each time with your public key might work (though it might bring up the same address each time actually).


Title: Re: Address generator for test.
Post by: milomen100 on February 02, 2018, 01:40:55 PM
i need something in python, or something like directory.io but in place address i need pubkey, and in place privkey decimal value


Title: Re: Address generator for test.
Post by: LoyceV on February 02, 2018, 02:23:41 PM
I think bitcoin-tool (https://github.com/matja/bitcoin-tool) can fulfill most of your needs, although it's written in C instead of Python.
I didn't test if it can do exactly what you need, I'll leave that up to you.


Title: Re: Address generator for test.
Post by: milomen100 on February 02, 2018, 02:53:59 PM
Thx.
I just need database in excel file.





Title: Re: Address generator for test.
Post by: jackg on February 02, 2018, 06:00:33 PM
Thx.
I just need database in excel file.




There's a bitcoin library called bitcoin tools that might do this. Try running Python in the command line with the following command "Python -m pip install bitcoin-tools".
Or search Google for it on github (i couldn't find the exact link though).