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.
Coin Creation Supply Current_supply Normalized_supply Block_target Halving_every Halving_date Price BPE Normalized_BPE
Namecoin 2011 21000000 14736400 1 10.0 210000 Sa 13. Okt 19:22:08 CEST 2018 1.71 1.50 1.75*10^-4
Litecoin 2011 84000000 55707176 4 2.5 840000 Do 8. Aug 14:55:04 CEST 2019 159.36 524.35 6.14*10^-2
Bitcoin 2009 21000000 16929362 1 10.0 210000 So 31. Mai 12:05:49 CEST 2020 8543.10 8543.10 1.00
Feathercoin 2013 336000000 195166760 16 1.0 2100000 Mi 23. Feb 00:10:54 CET 2022 0.28 3.24 3.80*10^-4
#!/bin/bash
# bc-binary
bc_exec=bc;
current_block=$1;
halving_block=$2;
blockinterval=$3;
remaining_blocks=$(echo "obase=10;ibase=10;scale=10;$halving_block-$current_block" | $bc_exec);
duration=$(echo "obase=10;ibase=10;scale=10;$remaining_blocks*$blockinterval*60" | $bc_exec);
current_epoch=$(date +%s);
halving_epoch=$(echo "obase=10;ibase=10;scale=10;$current_epoch+$duration" | $bc_exec);
halving_date=$(date -d @$halving_epoch);
echo "current block : $current_block";
echo "remaining blocks: $remaining_blocks";
echo "halving date : $halving_date";
chmod 700 halving.sh
./halving.sh 514350 630000 10
current block : 514350
remaining blocks: 115650
halving date : So 31. Mai 12:05:49 CEST 2020
./halving.sh 1388405 1680000 2.5
current block : 1388405
remaining blocks: 291595
halving date : Do 8. Aug 14:55:04 CEST 2019