自分用メモ
ツール
- Blockchain Sync
- Ethereum Test Tools
- Transaction Storm Test for the EVM Contract
自分でJavaScriptで書いてしまう
まずアカウントをアンロックする: personal.unlockAccount(sender, password, time);
var start = new Date().getTime();
var amount = 1;
var sender = personal.listAccounts[0]
var receiver = personal.listAccounts[0]
for (i = 0; i < 5000; ++i) {
eth.sendTransaction({from:sender, to:receiver, value: amount});
}
var end = new Date().getTime();
var time = end - start;
console.log('Execution time: ' + time);
引用: Is there any benchmark tool to test transaction speed? – Ethereum Stack Exchange