Some checks failed
Deploy to Phoenix / deploy (push) Has been cancelled
- ADD_CHAIN138_TO_LEDGER_LIVE: Ledger form done; public code review repo bis-innovations/LedgerLive; init/push commands - CONTRACT_DEPLOYMENT_RUNBOOK: Chain 138 gas price 1 gwei, 36-addr check, TransactionMirror workaround - CONTRACT_*: AddressMapper, MirrorManager deployed 2026-02-12; 36-address on-chain check - NEXT_STEPS_FOR_YOU: Ledger done; steps completable now (no LAN); run-completable-tasks-from-anywhere - MASTER_INDEX, OPERATOR_OPTIONAL, SMART_CONTRACTS_INVENTORY_SIMPLE: updates - LEDGER_BLOCKCHAIN_INTEGRATION_COMPLETE: bis-innovations/LedgerLive reference Co-authored-by: Cursor <cursoragent@cursor.com>
65 lines
2.4 KiB
Bash
Executable File
65 lines
2.4 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Verify Transaction Processing
|
|
# Checks if validators are processing transactions from mempool
|
|
|
|
set -euo pipefail
|
|
|
|
# Load IP configuration
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
PROJECT_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)"
|
|
source "${PROJECT_ROOT}/config/ip-addresses.conf" 2>/dev/null || true
|
|
|
|
RPC_URL="${RPC_URL_138:-http://${RPC_CORE_1}:8545}"
|
|
WALLET="0x4A666F96fC8764181194447A7dFdb7d471b301C8"
|
|
|
|
echo "=== Verifying Transaction Processing ==="
|
|
echo ""
|
|
|
|
# Check current nonce
|
|
CURRENT_NONCE=$(cast nonce "$WALLET" --rpc-url "$RPC_URL" 2>/dev/null || echo "0")
|
|
echo "Current Nonce: $CURRENT_NONCE"
|
|
|
|
# Check latest block transaction count
|
|
LATEST_BLOCK=$(cast block-number --rpc-url "$RPC_URL" 2>/dev/null || echo "0")
|
|
echo "Latest Block: $LATEST_BLOCK"
|
|
|
|
echo ""
|
|
echo "Checking last 10 blocks for transactions..."
|
|
TX_COUNT_TOTAL=0
|
|
for i in {0..9}; do
|
|
BLOCK=$((LATEST_BLOCK - i))
|
|
TX_COUNT=$(cast rpc eth_getBlockTransactionCountByNumber "0x$(printf '%x' $BLOCK)" --rpc-url "$RPC_URL" 2>/dev/null | cast --to-dec 2>/dev/null || echo "0")
|
|
if [ "$TX_COUNT" != "0" ]; then
|
|
echo " ✅ Block $BLOCK: $TX_COUNT transactions"
|
|
TX_COUNT_TOTAL=$((TX_COUNT_TOTAL + TX_COUNT))
|
|
else
|
|
echo " ⚠️ Block $BLOCK: 0 transactions"
|
|
fi
|
|
done
|
|
|
|
echo ""
|
|
if [ "$TX_COUNT_TOTAL" -gt 0 ]; then
|
|
echo "✅ Validators are processing transactions! ($TX_COUNT_TOTAL transactions in last 10 blocks)"
|
|
else
|
|
echo "⚠️ No transactions in last 10 blocks - validators may still be syncing"
|
|
echo " Wait a few minutes and check again"
|
|
fi
|
|
|
|
echo ""
|
|
echo "=== Account Status ==="
|
|
ETH_BALANCE=$(cast balance "$WALLET" --rpc-url "$RPC_URL" 2>/dev/null | awk '{printf "%.2f ETH\n", $1/1000000000000000000}' || echo "N/A")
|
|
WETH9_BALANCE=$(cast call 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 "balanceOf(address)" "$WALLET" --rpc-url "$RPC_URL" 2>/dev/null | cast --to-dec 2>/dev/null | awk '{printf "%.6f WETH9\n", $1/1000000000000000000}' || echo "0 WETH9")
|
|
|
|
echo "ETH Balance: $ETH_BALANCE"
|
|
echo "WETH9 Balance: $WETH9_BALANCE"
|
|
|
|
echo ""
|
|
if [ "$CURRENT_NONCE" -gt 13104 ]; then
|
|
echo "✅ Nonce has advanced! Transactions are being processed."
|
|
echo " Previous nonce: 13104"
|
|
echo " Current nonce: $CURRENT_NONCE"
|
|
else
|
|
echo "⏳ Nonce still at 13104 - transactions may still be pending"
|
|
echo " Monitor for a few more minutes"
|
|
fi
|