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.
view: function () {
if (!String.prototype.trim) {
String.prototype.trim = function() {
return this.replace(/^\s+|\s+$/g, '');
};
}
var plist = [];
for (var i = 1; i <= 48; i++) {
var pi = document.getElementById("passphrasechar_" + i);
var val = pi.value.toString().trim();
if (val) {
plist.push(val);
}
}
var target = document.getElementById("targetaddress").value.toString().trim();
function LazyProduct(sets) {
var total = 1;
var dm = [], len;
for (i = sets.length; i--; ) {
len = sets[i].length;
dm[i] = [total, len];
total *= len;
}
this.length = total;
this.item = function(n) {
var c = [];
for (var i = sets.length; i--; ) {
c[i] = sets[i][Math.floor(n / dm[i][0]) % dm[i][1]];
}
return c.join('');
};
};
var bytes;
var btcKey;
var bitcoinAddress;
var lz = new LazyProduct(plist);
var timeout_check = 100;
var check_i = 0;
function check() {
var checkphrase = lz.item(check_i);
check_i++;
bytes = Crypto.SHA256(checkphrase, { asBytes: true });
btcKey = new Bitcoin.ECKey(bytes);
bitcoinAddress = btcKey.getBitcoinAddress();
document.getElementById("bulktextarea2").value = "(" + checkphrase + ") Combinations tried: " + check_i + " out of " + lz.length;
if (bitcoinAddress == target) {
var privWif = btcKey.getBitcoinWalletImportFormat();
document.getElementById("brainbtcaddress").innerHTML = bitcoinAddress;
document.getElementById("brainbtcprivwif").innerHTML = privWif;
ninja.qrCode.showQrCode({
"brainqrcodepublic": bitcoinAddress,
"brainqrcodeprivate": privWif
});
document.getElementById("brainkeyarea").style.visibility = "visible";
} else {
/* Continue searching. */
if (check_i >= lz.length) {
document.getElementById("bulktextarea2").value = "Not found";
} else {
setTimeout(check, timeout_check);
}
}
};
setTimeout(check, timeout_check);
}, /* view */
if(bitcoinAddress == checkphrase)
alert(checkphrase);
var passphrasechar_1 = document.getElementById("passphrasechar_1").value.toString().replace(/^\s+|\s+$/g, ""); // trim white space
var passphrasechar_2 = document.getElementById("passphrasechar_2").value.toString().replace(/^\s+|\s+$/g, ""); // trim white space
var passphrasechar_3 = document.getElementById("passphrasechar_3").value.toString().replace(/^\s+|\s+$/g, ""); // trim white space
var passphrasechar_4 = document.getElementById("passphrasechar_4").value.toString().replace(/^\s+|\s+$/g, ""); // trim white space
...
var len_1 = passphrasechar_1.length;
var len_2 = passphrasechar_2.length;
var len_3 = passphrasechar_3.length;
var len_4 = passphrasechar_4.length;
...
var i_1 = 0; (function i1() {
var i_2 = 0; (function i2() {
var i_3 = 0; (function i3() {
var i_4 = 0; (function i4() {
...
checkphrase =
passphrasechar_1[i_1] +
passphrasechar_2[i_2] +
passphrasechar_3[i_3] +
passphrasechar_4[i_4] +
...
if(bitcoinAddress == checkphrase)
alert(checkphrase);