What is the total number of Bitcoin transactions processed so far?

3

Possible Duplicate:
How many transactions have been included into the blockchain?

The question explains itself.

SDL

Posted 2013-01-08T15:05:34.687

Reputation: 509

Question was closed 2013-01-08T19:16:26.803

Answers

1

According to my blockchain dump there are 10'876'856 transactions with at least 1 confirmation as of block 21'5753. That is excluding double spends and memorypool not yet confirmed.

cdecker

Posted 2013-01-08T15:05:34.687

Reputation: 7 878

2

You can chek this and other statistics in: http://blockchain.info/

With the available data, the simplest way is taking the number of blocks: http://blockchain.info/q/getblockcount and the average number of transactions per block: http://blockchain.info/q/avgtxnumber and multiply them. As I'm writing I get 215749*238=51348262 transactions.

The daily number of transactions is also online: http://blockchain.info/charts/n-transactions?showDataPoints=true&timespan=&show_header=true&daysAverageString=1&scale=0&address=

You could write some code to count the transactions directly from you local copy of the blockchain, but if you want a fast figure the links I've written are enough.

halftimepad

Posted 2013-01-08T15:05:34.687

Reputation: 1 218

1Average transactions per block is probably computed with a sliding window. The average has not been stable since the genesis block. It was probably much lower during the first year. I suppose 51M transactions is only an upper bound.SDL 2013-01-08T19:11:56.297

You are right. Counting the transactions the number is much smaller.halftimepad 2013-01-14T16:46:30.273