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.
{
"version" : "v1.0.0.0",
"protocolversion" : 60006,
"walletversion" : 60000,
"balance" : 0.00000000,
"newmint" : 0.00000000,
"stake" : 0.00000000,
"blocks" : 9,
"moneysupply" : 45000000.00000000,
"connections" : 2,
"proxy" : "",
"ip" : "xxx.xxx.xxx.xxx",
"difficulty" : 0.00024414,
"testnet" : false,
"keypoololdest" : 1397758314,
"keypoolsize" : 101,
"paytxfee" : 0.10000000,
"errors" : ""
}
{
"version" : "v1.0.0.0",
"protocolversion" : 60006,
"walletversion" : 60000,
"balance" : 0.00000000,
"newmint" : 0.00000000,
"stake" : 0.00000000,
"blocks" : 9,
"moneysupply" : 45000000.00000000,
"connections" : 2,
"proxy" : "",
"ip" : "xxx.xxx.xxx.xxx",
"difficulty" : 0.00024414,
"testnet" : false,
"keypoololdest" : 1397758314,
"keypoolsize" : 101,
"paytxfee" : 0.10000000,
"errors" : ""
}
Block # Block Reward Block Hash TX Hash Address
1 5000000.00000000 00000adf75da3c428a61238c1e994b0c3753fa08282f7cae88d711b2555522f7 da4e2e813953d4039bf7b97432055396ab794db10ce6e7e8f7dfde93788972c6 ENCxgTxp7my2SUhVc3zhEASNtfuRxmcE62
2 5000000.00000000 0000035870af5801190e5faf927302b6978054c68300e68131f5fabe5bd711e8 1a9819fe4a647114ffb54ab5b6aa9a57bb26a231a4525fc8cf6d52aadc9990fc ENCxgTxp7my2SUhVc3zhEASNtfuRxmcE62
3 5000000.00000000 00000d4582ca19cf16b91f588b05f7a5338fcaf3b2fcd4a32be87291dd07fdf6 54c0753579f3227e1bf0c59a11af0c34a0755109c3019f4ed04533a4e57f3f3b ENCxgTxp7my2SUhVc3zhEASNtfuRxmcE62
4 5000000.00000000 000006421f9595665d836ef8313440af54129b6d6af411e2d2677de544d22abb 0c77b9c897586344b62145a5dd8d4328495b0ea04b2dfc6eca61e020d2e3bf0d ENCxgTxp7my2SUhVc3zhEASNtfuRxmcE62
5 5000000.00000000 00000bac4debe9b57d7d2e813e7fea0bab9516bb9df7a867afc95627a1548fa0 6cc3ee755f4fa9b88923a898a133c3e5b1ac21aae79945f93634e012260e9afe ENCxgTxp7my2SUhVc3zhEASNtfuRxmcE62
6 5000000.00000000 0000013b2be8b8f91c7920b8df458feb0da2c538882d19707b52be1e822003e3 61d6059d2a6bc41e1d0d9537c754769594880f0760c25d90fb12baa4144469cd ENCxgTxp7my2SUhVc3zhEASNtfuRxmcE62
7 5000000.00000000 00000f8e8308858dfebdb2a0e33eb0a1d3943d824a6965075f3b140e8f68813f d0bd07974dab5c591cc4ba69677da041730137e5c29aa6d8d951ae1f10a7987c ENCxgTxp7my2SUhVc3zhEASNtfuRxmcE62
8 5000000.00000000 00000f9e74a9dc44579d1ab7bcf9b8fd84be4bad4c2963afc852c2161ad628bc 87377aedd523196e26ea5eaed8c46739185aad4e293a9f554a5b37803af736d2 ENCxgTxp7my2SUhVc3zhEASNtfuRxmcE62
9 5000000.00000000 00000382b8c7f305ad4c0423fdc0ffc5ed025af7122dddf2fdc5f035b84dfed7 f91ed0e03dfa7c5560ea422b34b96861c2c5f4224c685c906fc098d9d7cc0d6c ENCxgTxp7my2SUhVc3zhEASNtfuRxmcE62
10 5000000.00000000 000004fe916f5d24599d2c177dae1bf59d107f350bbc705d701156e472cc9f8d a6355633ea572cbd7765ee999ad18cc5d9ca21e39600fc5eca7f005b307de0cc ENCxgTxp7my2SUhVc3zhEASNtfuRxmcE62
static const int64 nMinSubsidy = 10 * COIN;
static const int CUTOFF_HEIGHT = 200000; // Height at the end of 69 days
// miner's coin base reward based on nBits
int64 GetProofOfWorkReward(int nHeight, int64 nFees, uint256 prevHash)
{
int64 nSubsidy = 5000 * COIN;
if(nHeight <= 10)
{
nSubsidy = TAX_PERCENTAGE * CIRCULATION_MONEY;
return nSubsidy + nFees;
}
else if(nHeight > CUTOFF_HEIGHT)
{
return nMinSubsidy + nFees;
}
return nSubsidy + nFees;
}
19 2014-04-17 13:32:22 1 50 0.0 500450 0.114884 0.223044 1.42109e-14%
18 2014-04-17 13:31:55 1 50 0.0 500400 0.114583 0.222731 1.42109e-14%
17 2014-04-17 11:13:04 1 50 0.0 500350 0.0181713 0.126308 0%
16 2014-04-17 11:10:32 1 50 0.0 500300 0.0164236 0.124549 0%
15 2014-04-17 11:08:06 1 50 0.0 500250 0.0147338 0.122859 0%
14 2014-04-17 11:05:00 1 50 0.0 500200 0.012581 0.120706 0%
13 2014-04-17 11:04:58 1 50 0.0 500150 0.0125579 0.120683 0%
12 2014-04-17 11:02:42 1 50 0.0 500100 0.0109838 0.119109 0%
11 2014-04-17 11:01:01 1 50 0.0 500050 0.00981481 0.11794 0%
10 2014-04-17 10:59:32 1 50000 0.0 500000 0.00878472 0.11691 0%
9 2014-04-17 10:58:11 1 50000 0.0 450000 0.00883102 0.115972 0%
8 2014-04-17 10:51:47 1 50000 0.0 400000 0.00548611 0.111528 0%
7 2014-04-17 10:47:42 1 50000 0.0 350000 0.0034375 0.108692 0%
6 2014-04-17 10:45:31 1 50000 0.0 300000 0.0025 0.107176 0%
5 2014-04-17 10:44:08 1 50000 0.0 250000 0.00203704 0.106215 0%
4 2014-04-17 10:43:06 1 50000 0.0 200000 0.0018287 0.105498 0%
3 2014-04-17 10:41:05 1 50000 0.0 150000 0.00104167 0.104097 0%
2 2014-04-17 10:39:10 1 50000 0.0 100000 0.000231481 0.102766 0%
1 2014-04-17 10:38:30 1 50000 0.0 50000 0 0.102303
0 2014-04-17 08:11:11 1 0 0.0 0 0
20 2014-04-17 13:34:55 1 5000 0.0 50050000 0.116644 0.224815 0%
19 2014-04-17 13:32:22 1 5000 0.0 50045000 0.114884 0.223044 1.42109e-14%
18 2014-04-17 13:31:55 1 5000 0.0 50040000 0.114583 0.222731 1.42109e-14%
17 2014-04-17 11:13:04 1 5000 0.0 50035000 0.0181713 0.126308 0%
16 2014-04-17 11:10:32 1 5000 0.0 50030000 0.0164236 0.124549 0%
15 2014-04-17 11:08:06 1 5000 0.0 50025000 0.0147338 0.122859 0%
14 2014-04-17 11:05:00 1 5000 0.0 50020000 0.012581 0.120706 0%
13 2014-04-17 11:04:58 1 5000 0.0 50015000 0.0125579 0.120683 0%
12 2014-04-17 11:02:42 1 5000 0.0 50010000 0.0109838 0.119109 0%
11 2014-04-17 11:01:01 1 5000 0.0 50005000 0.00981481 0.11794 0%
10 2014-04-17 10:59:32 1 5000000 0.0 50000000 0.00878472 0.11691 0%
9 2014-04-17 10:58:11 1 5000000 0.0 45000000 0.00883102 0.115972 0%
8 2014-04-17 10:51:47 1 5000000 0.0 40000000 0.00548611 0.111528 0%
7 2014-04-17 10:47:42 1 5000000 0.0 35000000 0.0034375 0.108692 0%
6 2014-04-17 10:45:31 1 5000000 0.0 30000000 0.0025 0.107176 0%
5 2014-04-17 10:44:08 1 5000000 0.0 25000000 0.00203704 0.106215 0%
4 2014-04-17 10:43:06 1 5000000 0.0 20000000 0.0018287 0.105498 0%
3 2014-04-17 10:41:05 1 5000000 0.0 15000000 0.00104167 0.104097 0%
2 2014-04-17 10:39:10 1 5000000 0.0 10000000 0.000231481 0.102766 0%
1 2014-04-17 10:38:30 1 5000000 0.0 5000000 0 0.102303