How many transactions have been included into the blockchain?

3

This website shows the number of bitcoin transactions per day, but I want to know how many there are total. How can I do this?

Nick ODell

Posted 2012-12-02T00:38:32.790

Reputation: 26 536

Answers

2

As of block 210000, the total number of transactions in the chain is 9344662.

Version 0.8 of the reference client keeps track of this number, and reports it for every connected block in debug.log. I just copied the number from the debug.log of a node running pre-release code.

Pieter Wuille

Posted 2012-12-02T00:38:32.790

Reputation: 54 032

1

From this JSON source, the totals can be computed:

Stephen Gornick

Posted 2012-12-02T00:38:32.790

Reputation: 26 118

1Thanks for the help, Stephen, but it appears that the data only goes back one year. Any other ideas?Nick ODell 2012-12-02T07:11:24.573

0

Building on Stephen's answer, here's a python script that will parse out the data and give you a total.
There's an important problem, though. It will only load the last year of data.

import urllib2
import json

url = "http://blockchain.info/charts/n-transactions?format=json"
page = urllib2.urlopen(url).read()
data = json.loads(page)['values']
data = map(lambda point: point['y'], data)
print int(sum(data))

Gist

Nick ODell

Posted 2012-12-02T00:38:32.790

Reputation: 26 536