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-Jan-19 09:51:46.388846 DEBUG Incoming connection from 127.0.0.1:45190
2017-Jan-19 09:51:46.388972 DEBUG In walletrpcserver
HTTP Request Body: {"method":"transfer","params":{"destinations":{"amount":0.17354123,"address":"bip1ZT7AY9dAE3KYrXcFeoVtFe43WZvGBAA2NFVXXbn4Yxw15gYgekQc7VUFJFHM7DMNsZKRDZAeTe81P8yke37z4JVJupJF1j"},"mixin_count":"1"},"id":1}
2017-Jan-19 09:51:46.389107 DEBUG In walletrpcserver
method found
2017-Jan-19 09:51:46.389184 DEBUG In walletrpcserver
JSON Request Body: {"id":1,"jsonrpc":"2.0","method":"transfer","params":{"destinations":{"address":"bip1ZT7AY9dAE3KYrXcFeoVtFe43WZvGBAA2NFVXXbn4Yxw15gYgekQc7VUFJFHM7DMNsZKRDZAeTe81P8yke37z4JVJupJF1j","amount":0.17354123},"mixin_count":"1"}}
2017-Jan-19 09:51:46.389282 ERROR In WalletRPCServer
Adress Parsed:
To send: 0
2017-Jan-19 09:51:46.389340 ERROR In WalletRPCServer
Adress Parsed:
To send: 0
2017-Jan-19 09:51:46.389496 DEBUG In walletrpcserver
JSON Response Body: {"error":{"code":-4,"message":"Bad address"},"id":1,"jsonrpc":"2.0"}
2017-Jan-19 09:51:46.389829 DEBUG Closing connection from 127.0.0.1:45190 total=1
$destination = array(
'amount' => $amt,
'address' => $bipwallet
);
$params = array(
'destinations' => $destination,
'mixin_count' => '1'
);
$request = array(
'method' => 'transfer',
'params' => $params,
'id' => $currentId
);
$request = json_encode($request);
$opts = array ('http' => array (
'method' => 'POST',
'header' => 'Content-type: application/json',
'content' => $request
));
$context = stream_context_create($opts);
$fp = fopen($this->url, 'r', false, $context);
$response = trim(fgets($fp))."\n";
$response = json_decode($response,true);