AnTPS (Anti-TPS) is a tool designed to benchmark blockchain performance, specifically focusing on Transactions Per Second (TPS). In an era where TPS claims often become marketing tools rather than reliable metrics, AnTPS aims to provide an objective, transparent, and reproducible methodology for measuring blockchain performance.
- 🔍 Objective Measurement: Clearly defined criteria for TPS calculation
- 🌐 Fully Support: Support from infrastructure to measurement
- 🛠 Multiple Scenarios: Test different transaction types and loads
- 🔒 Transparent Methodology: Fully disclosed measurement process
AnTPS is developed by members of Decipher, the SNU Blockchain Research Center:
@rrhlrmrr @bicoCrypto @SOLMIN LEE
This project is licensed under the MIT License
Ensure you have the following installed:
- Go (version 1.21.7 or higher)
- Python (version 3.8.10 or higher)
- Terraform (version 1.4.6 or higher)
- kubectl (version 1.28.2 or higher)
- Clone the repository:
git clone https://github.com/decipherhub/AnTPS cd AnTPS
- Build the Project:
make build-mac # For macOS make build-linux # For Linux
-
Start the blockchain nodes:
make avalanche # For Avalanche network make ethereum # For Ethereum network make klaytn # For Klaytn network
-
Deploy smart contracts:
./antps init
-
Run benchmarks:
./antps erc20mint # Mint ERC20 tokens ./antps erc20transfer # Transfer ERC20 tokens ./antps erc721mint # Mint ERC721 tokens ./antps erc721transfer # Transfer ERC721 tokens ./antps erc1155mint # Mint ERC1155 tokens ./antps erc1155transfer # Transfer ERC1155 tokens ./antps nativetransfer # Transfer native tokens (ETH, AVAX) ./antps multitransfer # Transfer tokens from multiple accounts
-
View results:
make ava-output make eth-output