Ethereum Blockchain – How Many Contracts Are Currently Deployed?

blockchaincontract-deployment

I was recently asked what percentage of transactions represent smart contract deployments on Ethereum, and had no immediate answer.

It is probably easier to ask how many contracts are currently deployed on Ethereum – I had a look around at Etherscan but couldn't find any statistics of direct relevance. I am aware of this answer, but ether.camp appears to only show a real-time list of contract deployments and no summary stats.

Are there any estimates on the number of contracts deployed, and if so, what sources are available to monitor such developments?

Best Answer

From https://etherscan.io/accounts/c, currently there are 123,376 contracts deployed on the Ethereum blockchain holding 8,551,373.447 ethers.

Out of the 123,376 contracts, there are 545 verified contracts, where the source code is independently compiled and compared with the virtual machine code deployed to the blockchain - from https://etherscan.io/contractsVerified.

For comparison, there are 475,244 externally owned accounts (normal addresses) holding 75,384,547.973 ethers - from https://etherscan.io/accounts/a.

Related Topic