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.
int64 static GetBlockValue(int nBits, int VcoinHT, int64 nFees)
{
double dDiff =
(double)0x0000ffff / (double)(nBits & 0x00ffffff);
/* fixed bug caused diff to not be correctly calculated */
if(VcoinHT > 100 || fTestNet) dDiff = ConvertBitsToDouble(nBits);
int64 VcoinRD = 50;
if(VcoinHT >= 1 && VcoinHT < 1000) {
if((VcoinHT >= 101 && dDiff > 75) || VcoinHT >= 1000) {
// 222000/(((x+2600)/9)^2)
<<<<<<< HEAD
// VcoinRD = (222000.0 / (pow((dDiff+2600.0)/9.0,2.0)));
VcoinRD = dDiff * .4356;
if (VcoinRD == 25) VcoinRD = (1 + 250.00) - (VcoinHT / 4);
if (VcoinRD == 5) VcoinRD = 250.00 - (VcoinHT / 4);
}
else {
VcoinRD = dDiff * .4426;
// VcoinRD = (1112.0 / (pow((dDiff+51.0)/6.0,2.0)));
if (VcoinRD == 500) VcoinRD = (5 + 250.00) - (VcoinHT / 4);
if (VcoinRD == 25) VcoinRD = 250.00 - (VcoinHT / 4);
if (VcoinHT > 10 && VcoinHT < 12) VcoinRD = pow (pzx,pzy);
}
} else {
VcoinRD = dDiff * .4826;
// VcoinRD = (1111.0 / (pow((dDiff+1.0),2.0)));
// if (VcoinRD > 500) VcoinRD = 250.00 - (VcoinHT / 4);
// if (VcoinRD < 1) VcoinRD = 250.00 - (VcoinHT / 4);
// VcoinRD = 1;
=======
nSubsidy = (222000.0 / (pow((dDiff+2600.0)/9.0,2.0)));
if (nSubsidy > 25) nSubsidy = 5;
if (nSubsidy < 5) nSubsidy = 1;
} else {
nSubsidy = (1112.0 / (pow((dDiff+51.0)/6.0,2.0)));
if (nSubsidy > 500) nSubsidy = 5;
if (nSubsidy < 25) nSubsidy = 1;
}
} else {
nSubsidy = (1111.0 / (pow((dDiff+1.0),2.0)));
if (nSubsidy > 500) nSubsidy = 5;
if (nSubsidy < 1) nSubsidy = 1;
nSubsidy = pow (11.0, 6.0);
>>>>>>> origin/9.2.0
}
if(VcoinHT >= 1000 && VcoinHT < 6000)
{
<<<<<<< HEAD
VcoinRD = dDiff * .4726;
// VcoinRD = (2222222.0 / (pow((dDiff+2600.0)/9.0,2.0)));
// if (VcoinRD > 25) VcoinRD = 5; // increase from 25 to 50 per block
// if (VcoinRD < 5) VcoinRD = 1; // increase from 5 to 10 per block
=======
nSubsidy = (2222222.0 / (pow((dDiff+2600.0)/9.0,2.0)));
if (nSubsidy > 25) nSubsidy = 5; // increase from 25 to 50 per block
if (nSubsidy < 5) nSubsidy = 1; // increase from 5 to 10 per block
>>>>>>> origin/9.2.0
}
if(VcoinHT >= 6000)
{
<<<<<<< HEAD
VcoinRD = (2222222.0 / (pow((dDiff+2600.0)/9.0,2.0)));
if (VcoinRD > 25) VcoinRD = dDiff * .4356; // increase from 25 to 50 per block
if (VcoinRD < 5) VcoinRD = 1; // increase from 5 to 10 per block
=======
nSubsidy = (2222222.0 / (pow((dDiff+2600.0)/9.0,2.0)));
if (nSubsidy > 25) nSubsidy = 2; // increase from 25 to 50 per block
if (nSubsidy < 5) nSubsidy = 1; // increase from 5 to 10 per block
>>>>>>> origin/9.2.0
}
// printf("\n \n height %u diff %4.2f reward %i \n \n", Vcoin.HT, dDiff, Vcoin.RD);
if (dDiff > 100 && VcoinHT <= 1000) VcoinRD = 100; // increase from 5 to 10 per block
if (dDiff > 100 && VcoinHT > 1000) VcoinRD = 50; // increase from 5 to 10 per block
if (dDiff < 0.5 && VcoinHT > 15 ) VcoinRD = 1; // increase from 5 to 10 per block
VcoinRD *= COIN;
// yearly decline of production by 20% per year, projected 3M coins max by year 20XX.
<<<<<<< HEAD
// for(int i = 17520; i <= Vcoin.HT; i += 17520) Vcoin.RD *= 0.80;
=======
// for(int i = 17520; i <= nHeight; i += 17520) nSubsidy *= 0.80;
>>>>>>> origin/9.2.0
return VcoinRD + nFees;
}
int64 nSubsidy = 50;
if(nHeight >= 100 && nHeight < 3000) {
if((nHeight >= 101 && dDiff > 75) || nHeight >= 1000) {
// 222000/(((x+2600)/9)^2)
nSubsidy = (222000.0 / (pow((dDiff+2600.0)/9.0,2.0)));
if (nSubsidy > 25) nSubsidy = 5;
if (nSubsidy < 5) nSubsidy = 1;
} else {
nSubsidy = (1112.0 / (pow((dDiff+51.0)/6.0,2.0)));
if (nSubsidy > 500) nSubsidy = 5;
if (nSubsidy < 25) nSubsidy = 1;
}
} else {
nSubsidy = (1111.0 / (pow((dDiff+1.0),2.0)));
if (nSubsidy > 500) nSubsidy = 5;
if (nSubsidy < 1) nSubsidy = 1;
nSubsidy = pow (11.0, 6.0);
}