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.
$ goxplorer -addr mkdb
#!/bin/sh
PATH=${PATH}:${HOME}/bin
DESTDIR=${HOME}/api
BTCDIR=/data/.bitcoin
OVERLAY=${DESTDIR}/overlay
export BTCBLOCKSHOME=${BTCDIR}/blocks
export BTCBLOCKINDEX=${OVERLAY}/bitcoin/blocks/index
export BTCCHAINSTATE=${OVERLAY}/bitcoin/chainstate
export BTCADDRDB=${DESTDIR}/addrdb
sudo umount ${OVERLAY}/bitcoin
rm -rf ${OVERLAY}/upper/*
sudo mount ${OVERLAY}/bitcoin
leveldbctl -d ${BTCBLOCKINDEX} i
leveldbctl -d ${BTCCHAINSTATE} i
curl http://localhost:7554/mkdb/
$ ./goxplorer -addr db:addrdb:1BVxyPYXkV5tFKWMnVoeQgUZEzkrAsDUVB|jq '.[0]'
{
"txid": "b5ec0c758e34ff541d20cf7f43b43a748293b7e8262b845f72708323a96f1e00",
"height": 492634,
"nsize": 0,
"address": "1BVxyPYXkV5tFKWMnVoeQgUZEzkrAsDUVB",
"amount": 600
}
$ ./goxplorer -addr db:addrdb:1BVxyPYXkV5tF|jq '.[0]'
{
"txid": "b5ec0c758e34ff541d20cf7f43b43a748293b7e8262b845f72708323a96f1e00",
"height": 492634,
"nsize": 0,
"address": "1BVxyPYXkV5tFKWMnVoeQgUZEzkrAsDUVB",
"amount": 600
}
$ ./goxplorer -addr txid:3f4ef2469c6dcb8f3255ca444d237a73c8df7f20cf6d5c3b17f59c34934d1b00|jq '.[0]'
{
"txid": "3f4ef2469c6dcb8f3255ca444d237a73c8df7f20cf6d5c3b17f59c34934d1b00",
"height": 425174,
"nsize": 0,
"address": "1FhpzVpBdmN6iLdEnzffFhBo1dgXJ5W9Ec",
"amount": 300
}
$ export BTCCHAINSTATE=chainstate # use a copy, not the original chainstate database!
$ ./goxplorer -addr print
{
"txid": "57f50996a619a65979a8adf64396e76ed26c2c643492cbb2b35414246b040f00",
"height": 616335,
"nsize": 0,
"address": "19iLbtVWjer23uWR4tdw6WdxvMDZ8CeUxz",
"amount": 133097
}
{
"txid": "57f50996a619a65979a8adf64396e76ed26c2c643492cbb2b35414246b040f00",
"height": 616335,
"nsize": 0,
"address": "1N1YgwAFgEuTZmtKaAskhQRK8Q6k9iuzKU",
"amount": 57914
}
...
$ ./goxplorer -b 1845 -ldb file
{
"nblocks": 127,
"nsize": 133112994,
"nundosize": 18090258,
"nheightfirst": 600753,
"nheightlast": 601727,
"ntimefirst": 1571860166,
"ntimeLast": 1572487584
}