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?
Tell me more
×
Bitcoin Stack Exchange is a question and answer site for
Bitcoin crypto-currency enthusiasts. It's 100% free, no registration required.
|
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. |
|||
|
|
|
From this JSON source, the totals can be computed: |
|||||
|
|
Building on Stephen's answer, here's a python script that will parse out the data and give you a total.
|
|||
|
|