About throughput performance

+2 votes
The Bitcoin has a block time of 10 minutes and a throughput of about 7 tx/sec. Etherium has a block time of 12 seconds and a throughput of about 27tx/sec. How can MultiChain get 500 tx/sec processing performance?

 

And With bitcoin-style protocol of MultiChain, can I get that throughput performance(~500 tx/sec)?

 

Thank you MultiChain Team.
asked Jul 3, 2017 by Ilhun

1 Answer

+1 vote

The throughput of the bitcoin blockchain is due to the block size limit of 1 MB, combined with the block time of 10 minutes. Since a small transaction (one input, two outputs, all regular addresses) is about 230 bytes in size, this means the peak throughput is indeed as you say:

1000000 / 10 / 60 / 230 = 7.25 tx/second

In MultiChain you can set the block size limit much higher (up to 1 GB) and the block time much lower (down to 2 seconds), so based on this calculation it could process over 2 million tx/second. But for now the codebase itself can handle a little over 1000 tx/second on mid-range hardware, using either the multichain or bitcoin protocol. (In reality you would also have to consider the connection between block size and propagation latency which affects the minimum viable block time.)

Ethereum's constraints may be based on block gas limits, and/or what the codebase can handle – I'm not sure.

answered Jul 4, 2017 by MultiChain
...