- Introduced Aggregator.sol for Chainlink-compatible oracle functionality, including round-based updates and access control. - Added OracleWithCCIP.sol to extend Aggregator with CCIP cross-chain messaging capabilities. - Created .gitmodules to include OpenZeppelin contracts as a submodule. - Developed a comprehensive deployment guide in NEXT_STEPS_COMPLETE_GUIDE.md for Phase 2 and smart contract deployment. - Implemented Vite configuration for the orchestration portal, supporting both Vue and React frameworks. - Added server-side logic for the Multi-Cloud Orchestration Portal, including API endpoints for environment management and monitoring. - Created scripts for resource import and usage validation across non-US regions. - Added tests for CCIP error handling and integration to ensure robust functionality. - Included various new files and directories for the orchestration portal and deployment scripts.
38 lines
783 B
Bash
Executable File
38 lines
783 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Load test for RPC node capacity
|
|
# Tests RPC node under load
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
PROJECT_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)"
|
|
|
|
RPC_URL="${RPC_URL:-http://localhost:8545}"
|
|
REQUESTS="${REQUESTS:-10000}"
|
|
CONCURRENT="${CONCURRENT:-100}"
|
|
|
|
echo "RPC Load Test"
|
|
echo "RPC URL: $RPC_URL"
|
|
echo "Requests: $REQUESTS"
|
|
echo "Concurrent: $CONCURRENT"
|
|
|
|
# Test eth_blockNumber
|
|
for i in $(seq 1 $REQUESTS); do
|
|
(
|
|
curl -s -X POST "$RPC_URL" \
|
|
-H "Content-Type: application/json" \
|
|
-d '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":'$i'}' \
|
|
> /dev/null || true
|
|
) &
|
|
|
|
if [ $((i % CONCURRENT)) -eq 0 ]; then
|
|
wait
|
|
fi
|
|
done
|
|
|
|
wait
|
|
|
|
echo "Load test complete!"
|
|
|