From 10e1335bd13f45f7f79468a14cb0b09f3668df42 Mon Sep 17 00:00:00 2001 From: Vsevolod-Rusinskiy Date: Fri, 25 Jul 2025 18:03:47 +0300 Subject: [PATCH 1/3] fix(chain-load-test): correct typos in README and improve documentation --- chain-load-test/README.md | 32 +++++++++++++++++++++----------- 1 file changed, 21 insertions(+), 11 deletions(-) diff --git a/chain-load-test/README.md b/chain-load-test/README.md index 232d61b..2bccfb2 100644 --- a/chain-load-test/README.md +++ b/chain-load-test/README.md @@ -1,20 +1,30 @@ -### Load tests contain scenarios designed to check load balancing and transactions per second (TPS) on the blockchain. +# Chain Load Test -## Envs: +Load tests contain scenarios designed to check load balancing and transactions per second (TPS) on the blockchain. -``` NODE_URL: Chain url ``` +## Environment Variables -``` SENDER: sender private key ``` +```bash +NODE_URL: Chain URL +SENDER: Sender private key +RECIPIENT: Recipient private key +``` -``` RECEPIENT: recepient private key ``` +## Installation +```bash +npm install +``` -## Commands: +## Usage -### Install deps +```bash +npm run test +``` -```npm install``` +## Description -### run tests - -```npm run test``` +This tool provides load testing scenarios for blockchain networks to measure: +- Transaction throughput (TPS) +- Load balancing performance +- Network stability under stress From 93773a2121a07df5ff999d04318654cf7946c467 Mon Sep 17 00:00:00 2001 From: Vsevolod-Rusinskiy Date: Fri, 25 Jul 2025 18:07:05 +0300 Subject: [PATCH 2/3] docs: add main README with project overview and development status --- README.md | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..2bc361a --- /dev/null +++ b/README.md @@ -0,0 +1,47 @@ +# Quantum Fusion Scripts + +Collection of blockchain testing and monitoring tools for QuantumFusion network. + +## Projects + +### 🔗 Chain Load Test +Load testing tool for measuring blockchain performance and TPS (Transactions Per Second). + +**Features:** +- Load balancing scenarios +- TPS measurement +- Network stability testing + +**Location:** `chain-load-test/` + +### 📊 TPS Monitoring Tool +Advanced TUI dashboard for real-time blockchain monitoring and stress testing. + +**Features:** +- Real-time TPS visualization +- Interactive TUI dashboard +- Process management +- CSV export capabilities +- Memory usage monitoring + +**Location:** `tps-monitoring/` + +## Getting Started + +Each project has its own README with specific installation and usage instructions. + +## Development Status + +- **Chain Load Test**: ✅ Ready for use +- **TPS Monitoring Tool**: 🚧 In active development (92% complete) + +## Contributing + +1. Create a feature branch +2. Make your changes +3. Follow conventional commit format +4. Submit a pull request + +## License + +MIT License \ No newline at end of file From 120038b3a941a348d195387da1fe800edf2045bc Mon Sep 17 00:00:00 2001 From: Vsevolod-Rusinskiy Date: Fri, 25 Jul 2025 18:08:30 +0300 Subject: [PATCH 3/3] docs: update README to remove outdated sections and clarify project status --- README.md | 34 ---------------------------------- 1 file changed, 34 deletions(-) diff --git a/README.md b/README.md index 2bc361a..2c91582 100644 --- a/README.md +++ b/README.md @@ -11,37 +11,3 @@ Load testing tool for measuring blockchain performance and TPS (Transactions Per - Load balancing scenarios - TPS measurement - Network stability testing - -**Location:** `chain-load-test/` - -### 📊 TPS Monitoring Tool -Advanced TUI dashboard for real-time blockchain monitoring and stress testing. - -**Features:** -- Real-time TPS visualization -- Interactive TUI dashboard -- Process management -- CSV export capabilities -- Memory usage monitoring - -**Location:** `tps-monitoring/` - -## Getting Started - -Each project has its own README with specific installation and usage instructions. - -## Development Status - -- **Chain Load Test**: ✅ Ready for use -- **TPS Monitoring Tool**: 🚧 In active development (92% complete) - -## Contributing - -1. Create a feature branch -2. Make your changes -3. Follow conventional commit format -4. Submit a pull request - -## License - -MIT License \ No newline at end of file