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.
var elastic = require("./lib/index.js");
/* Configuration BEGIN */
var passphrase = "test";
var host = "127.0.0.1";
var port = 6876;
var use_ssl = false;
/* Configuration END */
elastic.init(passphrase, host, port, use_ssl, function(){
console.log("[!] Established connection with Elastic Core.");
/* Create a new work */
var work = {
work_title: "My simple work",
source_code: "verify m[0] >= 1000000;",
xel_per_bounty: 1,
xel_per_pow: 0.1,
deposit_in_xel: 10000
};
/* Publish and watch the new work */
elastic.publish_work(work, function(event, data){
switch(event){
case elastic.events.WORK_WAITING_TO_CONFIRM:
console.log("[*] Work with id = " + data.transaction + " is awaiting first confirmation.");
break;
case elastic.events.WORK_STARTED:
console.log("[*] Work with id = " + data.transaction + " just became live.");
break;
case elastic.events.WORK_CLOSED:
console.log("[*] Work with id = " + data.transaction + " is finished.");
break;
case elastic.events.WORK_UPDATE:
// Right now, this event is fired every block with the current work JSON object as the data!
// You can read the left balance and the number of POW/Bounties here
break;
case elastic.events.NEW_BOUNTY:
break;
case elastic.events.NEW_POW:
break;
case elastic.events.FAILURE:
console.log("[E] Failure:",data);
break;
}
});
});