Code: Select all
{
"height" : 225494,
"bestblock" : "00000000eb0443fd7dc4a1ed5c686a8e995057805f9a161d9a5a77a95e72b7b6",
"transactions" : 335344,
"txouts" : 2221582,
"bytes_serialized" : 72130407,
"hash_serialized" : "3d14832b1b468f52ce942d4b9dc0c76a54fa6865207ff64540105403e3109f43",
"total_amount" : 10886823.50380013
}
After reading your comment I think (I hope) I might now understand the question (submitted by BitcoinWhosWho) somewhat better.I think what you are looking for is gettxsetinfo
This query takes a while considering the amount of data it needs to parse through your node. I just tried to run it and it still hasn't populated after 200 seconds, but this is an example of what it should look like.
....
@BitcoinWhosWho2nd comment DELETED
Code: Select all
<?php
$info2= "https://blockchain.info/charts/n-transactions-total?format=json";
$data2 = json_decode(file_get_contents($info2), true);
echo serialize($data2['values'][365]['y']);
?>
Code: Select all
<?php
$info2= "https://blockchain.info/charts/n-transactions-total?format=json";
$date2 = '{"values":"values","365":"365","y":"y"}';
$data2 = json_decode(file_get_contents($info2), true);
echo $data2['values'][365]['y'];
?>
Users browsing this forum: No registered users and 4 guests