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.
2017-08-15 03:30:54 SetBestChain: new best=7594a59e1211311b99169187f8363cd89d2e1e1307819d408aa2b65bb481b2bd height=1959345 difficulty=7.3047667 log2Work=13.504695 log2ChainWork=44.258749 tx=2245104 date=2017-08-15 03:30:51 progress=0.999999
2017-08-14 03:30:52 SetBestChain: new best=fc935e650560f39fcca3ff4171211a8993dd68ad2adf04be5dc617485bf567df height=1954949 difficulty=6.995058 log2Work=12.794213 log2ChainWork=44.258746 tx=2240706 date=2017-08-14 03:30:50 progress=0.999999
2017-08-13 03:30:46 SetBestChain: new best=28090ab3548cba4cf231b54fb61f0fd714125454014b87f4eae7759f8b424c1c height=1952510 difficulty=6.9938966 log2Work=12.749869 log2ChainWork=44.258745 tx=2238267 date=2017-08-13 03:30:50 progress=1.000001
2017-08-12 03:30:46 SetBestChain: new best=dadbaa7a6fe26302567e08cc6bcf6bcc9c559fa9b0b728ece6479b35e0ae1f20 height=1949902 difficulty=6.9922183 log2Work=12.688032 log2ChainWork=44.258744 tx=2235659 date=2017-08-12 03:30:49 progress=1.000001
2017-08-11 03:30:18 SetBestChain: new best=76cc4738718c01e3b8828495fe0769abb9e03347ead635a362f768d421a6ec2b height=1946915 difficulty=6.98932 log2Work=12.587309 log2ChainWork=44.258742 tx=2232672 date=2017-08-11 03:30:20 progress=1.000001
2017-08-10 03:30:49 SetBestChain: new best=d69040ec4119b134e470ab23b4d67cba09e4ec1237d269c352191304d3382e6a height=1944039 difficulty=6.9856988 log2Work=12.470405 log2ChainWork=44.258741 tx=2229795 date=2017-08-10 03:30:51 progress=1.000001
Value getdata(const Array& params, bool fHelp)
{
if (fHelp || params.size() != 1)
throw runtime_error(
"getdata\n"
"Returns base64 data from a given tx-hash.");
std::string strHash = params[0].get_str();
uint256 hash(strHash);
CTransaction tx;
uint256 hashBlock = 0;
if (!GetTransaction(hash, tx, hashBlock, true))
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "No information available about transaction");
string data = tx.GetBase64Data();
return data;
}
Value getdata(const Array& params, bool fHelp)
{
if (fHelp || params.size() != 1)
throw runtime_error(
"getdata\n"
"Returns base64 data from a given tx-hash.");
std::string strHash = params[0].get_str();
uint256 hash(strHash);
CTransaction tx;
uint256 hashBlock = 0;
if (!GetTransaction(hash, tx, hashBlock, true))
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "No information available about transaction");
string data = tx.GetBase64Data();
return data;
}
std::string HelpRequiringPassphrase()
{
return pwalletMain->IsCrypted()
? "\nrequires wallet passphrase to be set with walletpassphrase first"
: "";
}