There are more compressed pubkeys 02xxxxx and 03xxxxx in blockchain
If you can ( if its possible ) uncompress them it would be great!
It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
04cc8d85f5e7933cb18f13b97d165e1189c1fb3e9c98b0dd5446b2a1989883ff9e740a8a75da99cc59a21016caf7a7afd3e4e9e7952983e18d1ff70529d62e0ba1
0411db93e1dcdb8a016b49840f8c53bc1eb68a382e97b1482ecad7b148a6909a5cb2e0eaddfb84ccf9744464f82e160bfa9b8b64f9d4c03f999b8643f656b412a3
04fcc2888ca91cf0103d8c5797c256bf976e81f280205d002d85b9b622ed1a6f820866c7b5fe12285cfa78c035355d752fc94a398b67597dc4fbb5b386816425dd
046cc86ddcd0860b7cef16cbaad7fe31fda1bf073c25cb833fa9e409e7f51e296f39b653a9c8040a2f967319ff37cf14b0991b86173462a2d5907cb6c5648b5b76
0478ebe2c28660cd2fa1ba17cc04e58d6312679005a7cad1fd56a7b7f4630bd700bcdb84a888a43fe1a2738ea1f3d2301d02faef357e8a5c35a706e4ae0352a6ad
Tool which scrapes the entire blockchain for all of the pubkeys of all transactions
Requires bitcoind (or Bitcoin Core with daemon enabled) and txindex=1 to be set in Bitcoin.conf
Usage: pubkeyscraper[rpcport] [rpcurl] Required. User of the Bitcoin-RPC server set in bitcoin.conf Required. Password of the Bitcoin-RPC server set in bitcoin.conf
[rpcport] Optional. Port of the Bitcoin-RPC server set in bitcoin.conf. Default is 8332
[rpcurl] Optional. URL or IP address of Bitcoin-RPC server. Default is 127.0.0.1
https://mega.nz/#!ktxGjBYJ!Fm5RYsUZZ5PAa88Smb7R9ojG3MOx-yj450RUzF3sIy4
build-essential libsparsehash-dev libssl-dev libboost-dev
./parser addrdump
sort -u addresses.txt
P.S.: If it helped you then you can say me "Thank you" there: 15WkkJqxgQ2k8nXyhr3za9GYq2Jqpq9gyo ;)
https://mega.nz/#!ktxGjBYJ!Fm5RYsUZZ5PAa88Smb7R9ojG3MOx-yj450RUzF3sIy4
build-essential libsparsehash-dev libssl-dev libboost-dev
./parser addrdump
sort -u addresses.txt
P.S.: If it helped you then you can say me "Thank you" there: 15WkkJqxgQ2k8nXyhr3za9GYq2Jqpq9gyo ;)
// Output script commonly found in block reward TX, pays to explicit pubKey
if(
likely(
65==script[0] && // OP_PUSHDATA(65)
0xAC==script[scriptSize-1] && // OP_CHECKSIG
67==scriptSize
)
)
// Output script commonly found in block reward TX, pays to explicit pubKey
if(
likely(
65==script[0] && // OP_PUSHDATA(65)
0xAC==script[scriptSize-1] && // OP_CHECKSIG
67==scriptSize
)
)
// Output script commonly found in block reward TX, pays to explicit pubKey
if(
likely(
65==script[0] && // OP_PUSHDATA(65)
0xAC==script[scriptSize-1] && // OP_CHECKSIG
67==scriptSize
)
)