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.
$ for I in 113wjPuzxuDn3WjjautVdQu28DhA8zqhy3 11dYT3E4D9QWocteC9bnMzvWaSSqNn8m4 12345Vypv2QSmuRXcciT5oEB27mPbWGeva; do
> ./bitcoind validateaddress $I |grep -E 'isvalid|address'
> done
"isvalid" : true,
"address" : "113wjPuzxuDn3WjjautVdQu28DhA8zqhy3",
"isvalid" : true,
"address" : "11dYT3E4D9QWocteC9bnMzvWaSSqNn8m4",
"isvalid" : true,
"address" : "12345Vypv2QSmuRXcciT5oEB27mPbWGeva",
$ _
$ ./bitcoind getaddressesbyaccount ''
[
"12345Vypv2QSmuRXcciT5oEB27mPbWGeva",
...
]
$ ./bitcoind getnewaddress '' '^11'
...searching...
$ ./bitcoind getaddressesbyaccount ''
[
"11dYT3E4D9QWocteC9bnMzvWaSSqNn8m4",
"12345Vypv2QSmuRXcciT5oEB27mPbWGeva",
...
]
$ ./bitcoind getnewaddress '' ^11
...searching...
$ ./bitcoind getaddressesbyaccount ''
[
"113wjPuzxuDn3WjjautVdQu28DhA8zqhy3",
"11dYT3E4D9QWocteC9bnMzvWaSSqNn8m4",
"12345Vypv2QSmuRXcciT5oEB27mPbWGeva",
...
]
$ _
bash: ibase=16; n=${1^^}; while(n>0) { n%3A ; n/=3A }: bad substitution
encodeBase58() {
# 58 = 0x3A
n=`echo $1 | tr '[:lower:]' '[:upper:]'`
bc <<<"ibase=16; n=$n; while(n>0) { n%3A ; n/=3A }" |
tac |
while read n
do echo -n ${base58[n]}
done
}
...
publicKeyToAddress() {
hash160ToAddress $(openssl ec -pubin -pubout -outform DER 2>/dev/null | tail -c65 | hash160)
}