How many transactions per second can blake2s algorithm can handle?

0

i saw the hash functions speed (miBps) are 947 according to this website: https://blake2.net/

but how many transactions blake2s algorithm can handle? Verge uses the same algorithm right?

more about blake2s https://eprint.iacr.org/2013/322.pdf

chico lima

Posted 2018-04-12T09:36:50.427

Reputation: 15

Answers

1

The number of transactions per second a blockchain can process is not correlated to the relative computational speed of the hashing algorithm.

A faster hashing algorithm just means the network's miners will be able to attempt more hashes per second, given the same (general purpose) hardware.

The number of transactions per second will depend on the block size, transaction size(s), and the average block time.

chytrik

Posted 2018-04-12T09:36:50.427

Reputation: 10 276

thanks for the answer, how can I calculate it in Verge? simple sample for that? thank you.chico lima 2018-04-12T11:01:36.090

@chicolima (megabyte/block) / ((megabyte/avg transaction)*(seconds/block))chytrik 2018-04-12T18:57:52.630