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.
RK | ORGANIZATION | BITCOIN DONATION ADDRESS |
#1 | Gavin Andresen Faucet (2x) | 15ArtCgi3wmpQAAfYx4riaFmo4prJA4VsK; 15VjRaDX9zpbA8LVnbrCAFzrVzN7ixHNsC |
#2 | Bitcointalk Forum | 17RTTUAiiPqUTKtEggJPec8RxLMi2n9EZ9 |
#3 | Bitcoin Foundation | 1BTCorgHwCg6u2YSAWKgS17qUad6kHmtQW |
#4 | I2P (2x) | 1BPdWwovytfGdBwUDVgqbMZ8omcPQzshpX; 1HkJCceXf7of1sTNRVJbXiZHfDTLL71Siy |
#5 | WikiLeaks (2x) | 1HB5XMLmzFVj8ALj6mfBsbifRoD4miY36v; 1MaXZE92yjuy4NYjTspmdWHMRT3jQUcTf4 |
#6 | bitcoingamer.com | 1MCwBbhNGp5hRm5rC1Aims2YFRe2SXPYKt |
#7 | donateathome.org | 19b62wRL6hGEWa1bLbkdjaiWvZm1C56XuL |
#8 | Bitcoin100.org | 1BTC1oo1J3MEt5SFj74ZBcF2Mk97Aah4ac |
#9 | Torservers (4x) | 1KLhvgi9exzvea7fr1CNdHroDC28SkkvEL; 1GvVpDGM426bHp2eXwHzwDNqv8g2xyfznJ; 1hX1PFASwcShnB7VyGpfbdBK8LbhGD7dt; 1N5sJeuxCCtG8mXxhgHD3H7W5FWTHK3H21 |
#10 | bitcoin.gw.gd/ | 1va4sqj5AFnMYicD7JzhDfxauk5w6Uuug |
#11 | Free Software Foundation | 1PC9aZC4hNX2rmmrt7uHTfYAS3hRbph4UN |
#12 | Free Ross | 1Ross5Np5doy4ajF9iGXzgKaC2Q3Pwwxv |
#13 | The Freenet Project | 1966U1pjj15tLxPXZ19U48c99EJDkdXeqb |
#14 | Freedomain Radio | 1Fd8RuZqJNG4v56rPD1v6rgYptwnHeJRWs |
#15 | Seans Outpost | 1M72Sfpbz1BPpXFHz9m3CdqATR44Jvaydd |
#!/usr/bin/env php
$addrbuf = <<< END
Gavin Andresen Faucet (2x) 15ArtCgi3wmpQAAfYx4riaFmo4prJA4VsK,15VjRaDX9zpbA8LVnbrCAFzrVzN7ixHNsC
Bitcointalk Forum 17RTTUAiiPqUTKtEggJPec8RxLMi2n9EZ9
Bitcoin Foundation 1BTCorgHwCg6u2YSAWKgS17qUad6kHmtQW
I2P (2x) 1BPdWwovytfGdBwUDVgqbMZ8omcPQzshpX,1HkJCceXf7of1sTNRVJbXiZHfDTLL71Siy
WikiLeaks (2x) 1HB5XMLmzFVj8ALj6mfBsbifRoD4miY36v,1MaXZE92yjuy4NYjTspmdWHMRT3jQUcTf4
bitcoingamer.com 1MCwBbhNGp5hRm5rC1Aims2YFRe2SXPYKt
donateathome.org 19b62wRL6hGEWa1bLbkdjaiWvZm1C56XuL
Bitcoin100.org 1BTC1oo1J3MEt5SFj74ZBcF2Mk97Aah4ac
Torservers (4x) 1KLhvgi9exzvea7fr1CNdHroDC28SkkvEL,1GvVpDGM426bHp2eXwHzwDNqv8g2xyfznJ,1hX1PFASwcShnB7VyGpfbdBK8LbhGD7dt,1N5sJeuxCCtG8mXxhgHD3H7W5FWTHK3H21
bitcoin.gw.gd 1va4sqj5AFnMYicD7JzhDfxauk5w6Uuug
Free Software Foundation 1PC9aZC4hNX2rmmrt7uHTfYAS3hRbph4UN
Free Ross 1Ross5Np5doy4ajF9iGXzgKaC2Q3Pwwxv
The Freenet Project 1966U1pjj15tLxPXZ19U48c99EJDkdXeqb
Freedomain Radio 1Fd8RuZqJNG4v56rPD1v6rgYptwnHeJRWs
Seans Outpost 1M72Sfpbz1BPpXFHz9m3CdqATR44Jvaydd
END;
$entries = explode("\n", $addrbuf);
$data = [];
foreach($entries as $e) {
list($org,$addrs) = explode("\t", $e);
$data[$org] = trim($addrs);
}
$results = [];
foreach( $data as $org => $addrs ) {
$totals = get_donation_addrs_history( $addrs );
$results[] = ['Org' => $org, 'Addrs' => $addrs, 'Total BTC' => $totals['BTC In'], 'Total USD' => $totals['USD In'], 'Total USD Now' => $totals['USD In Now'] ];
}
// Sort results by USD In, desc.
usort( $results, function( $a, $b ) {
$a = $a['Total USD'];
$b = $b['Total USD'];
if( $a == $b) {
return 0;
}
return $a > $b ? -1 : 1;
});
$json = json_encode( $results, JSON_PRETTY_PRINT );
file_put_contents( '/tmp/donations/results.json', $json );
echo "\n\n -- Results --\n\n$json\n\n";
function get_donation_addrs_history( $addrs ) {
$mask = './bitprices.php --api=btcd --btcd-rpc-user=--btcd-rpc-pass= ;--addr-tx-limit=100000 --cols=btcin,fiatin,fiatinnow,price --addresses=%1$s --format=all --outfile=/tmp/donations/%1$s -g'
$cmd = sprintf( $mask, $addrs );
echo "Querying for $addrs\n";
exec( $cmd, $output, $rc );
if( $rc != 0 ) {
throw new Exception( "sub-command failed with error code $rc");
}
$data = json_decode( file_get_contents( "/tmp/donations/$addrs.json" ), true );
// we're going to re-calc totals ourselves, and use oldest historical price for older dates.
//remove totals row
$totals = array_pop( $data );
// change to latest to oldest.
$data = array_reverse( $data );
$usd_total = 0;
$usd_price_first = 0.05; // from 2010-07-17 (source: bitcoinaverage.com)
foreach( $data as $d ) {
$usd_amount = $d['USD In'];
$btc_amount = $d['BTC In'];
if( ! ($usd_amount > 0) ) {
$usd_amount = $btc_amount * $usd_price_first;
}
$usd_total += $usd_amount;
}
$totals['USD In'] = $usd_total;
return $totals;
}
-- Results --
[
{
"Org": "Bitcointalk Forum",
"Addrs": "17RTTUAiiPqUTKtEggJPec8RxLMi2n9EZ9",
"Total BTC": "7633.49149164",
"Total USD": 986723.92000177,
"Total USD Now": "3204921.55"
},
{
"Org": "Free Ross",
"Addrs": "1Ross5Np5doy4ajF9iGXzgKaC2Q3Pwwxv",
"Total BTC": "820.30984510",
"Total USD": 323957.73000227,
"Total USD Now": "344808.79"
},
{
"Org": "Seans Outpost",
"Addrs": "1M72Sfpbz1BPpXFHz9m3CdqATR44Jvaydd",
"Total BTC": "491.06490427",
"Total USD": 300852.96026939,
"Total USD Now": "206413.33"
},
{
"Org": "Bitcoin Foundation",
"Addrs": "1BTCorgHwCg6u2YSAWKgS17qUad6kHmtQW",
"Total BTC": "5883.50241439",
"Total USD": 131938.19102752,
"Total USD Now": "2470188.69"
},
{
"Org": "WikiLeaks (2x)",
"Addrs": "1HB5XMLmzFVj8ALj6mfBsbifRoD4miY36v,1MaXZE92yjuy4NYjTspmdWHMRT3jQUcTf4",
"Total BTC": "3924.47902174",
"Total USD": 115705.78236354,
"Total USD Now": "1648053.16"
},
{
"Org": "Freedomain Radio",
"Addrs": "1Fd8RuZqJNG4v56rPD1v6rgYptwnHeJRWs",
"Total BTC": "634.03573359",
"Total USD": 109314.86550234,
"Total USD Now": "266510.39"
},
{
"Org": "Gavin Andresen Faucet (2x)",
"Addrs": "15ArtCgi3wmpQAAfYx4riaFmo4prJA4VsK,15VjRaDX9zpbA8LVnbrCAFzrVzN7ixHNsC",
"Total BTC": "19923.38032271",
"Total USD": 44850.015225973,
"Total USD Now": "8364829.91"
},
{
"Org": "Free Software Foundation",
"Addrs": "1PC9aZC4hNX2rmmrt7uHTfYAS3hRbph4UN",
"Total BTC": "951.32629793",
"Total USD": 39238.910798012,
"Total USD Now": "399880.05"
},
{
"Org": "Bitcoin100.org",
"Addrs": "1BTC1oo1J3MEt5SFj74ZBcF2Mk97Aah4ac",
"Total BTC": "1651.48669176",
"Total USD": 37791.190012717,
"Total USD Now": "694185.65"
},
{
"Org": "I2P (2x)",
"Addrs": "1BPdWwovytfGdBwUDVgqbMZ8omcPQzshpX,1HkJCceXf7of1sTNRVJbXiZHfDTLL71Siy",
"Total BTC": "5467.58001615",
"Total USD": 35160.49171029,
"Total USD Now": "2295563.56"
},
{
"Org": "Torservers (4x)",
"Addrs": "1KLhvgi9exzvea7fr1CNdHroDC28SkkvEL,1GvVpDGM426bHp2eXwHzwDNqv8g2xyfznJ,1hX1PFASwcShnB7VyGpfbdBK8LbhGD7dt,1N5sJeuxCCtG8mXxhgHD3H7W5FWTHK3H21",
"Total BTC": "1644.45857872",
"Total USD": 31965.960056102,
"Total USD Now": "691231.53"
},
{
"Org": "bitcoin.gw.gd",
"Addrs": "1va4sqj5AFnMYicD7JzhDfxauk5w6Uuug",
"Total BTC": "1061.27817961",
"Total USD": 23150.0300005,
"Total USD Now": "446097.68"
},
{
"Org": "donateathome.org",
"Addrs": "19b62wRL6hGEWa1bLbkdjaiWvZm1C56XuL",
"Total BTC": "3205.45252467",
"Total USD": 21020.5800005,
"Total USD Now": "1347379.90"
},
{
"Org": "The Freenet Project",
"Addrs": "1966U1pjj15tLxPXZ19U48c99EJDkdXeqb",
"Total BTC": "652.63995575",
"Total USD": 2507.81008505,
"Total USD Now": "274330.57"
},
{
"Org": "bitcoingamer.com",
"Addrs": "1MCwBbhNGp5hRm5rC1Aims2YFRe2SXPYKt",
"Total BTC": "3515.48071160",
"Total USD": 1721.395477,
"Total USD Now": "1477696.92"
}
]