12 lines
478 B
Bash
Executable File
12 lines
478 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Print Caliper integration hints for Chain 138 (no network I/O).
|
|
# See docs/03-deployment/CALIPER_CHAIN138_PERF_HOOK.md
|
|
|
|
set -euo pipefail
|
|
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"
|
|
echo "Caliper is not bundled in this repo."
|
|
echo "Read: $ROOT/docs/03-deployment/CALIPER_CHAIN138_PERF_HOOK.md"
|
|
echo ""
|
|
echo "Suggested SUT URL for benchmarks (lab): \${RPC_URL_138:-http://192.168.11.211:8545}"
|
|
echo "Chain ID: 138 (verify with eth_chainId)."
|