- 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.
39 lines
1.3 KiB
Bash
Executable File
39 lines
1.3 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Set up monitoring and alerting for deployed contracts
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
source "$SCRIPT_DIR/../lib/init.sh"
|
|
PROJECT_ROOT="$(cd "$SCRIPT_DIR/../.." && pwd)"
|
|
|
|
|
|
log_info "=== Monitoring Setup Guide ==="
|
|
|
|
# Load environment
|
|
if [ -f "$PROJECT_ROOT/.env" ]; then
|
|
source "$PROJECT_ROOT/.env"
|
|
fi
|
|
|
|
log_info "Monitoring Checklist:"
|
|
echo "1. Etherscan Alerts:"
|
|
echo " • Set up alerts for contract events"
|
|
echo " • Monitor transaction activity"
|
|
echo " • Track contract interactions"
|
|
echo "2. Event Monitoring:"
|
|
echo " • CrossChainTransferInitiated"
|
|
echo " • CrossChainTransferCompleted"
|
|
echo " • CrossChainTransferFailed"
|
|
echo "3. Balance Monitoring:"
|
|
echo " • Monitor bridge LINK balances (for CCIP fees)"
|
|
echo " • Monitor bridge WETH balances"
|
|
echo " • Set up alerts for low balances"
|
|
echo "4. CCIP Message Tracking:"
|
|
echo " • Monitor CCIP message status"
|
|
echo " • Track message delivery times"
|
|
echo " • Alert on failed messages"
|
|
echo "5. Recommended Tools:"
|
|
echo " • Etherscan API for event monitoring"
|
|
echo " • The Graph for indexing"
|
|
echo " • Tenderly for transaction monitoring"
|
|
echo " • Custom scripts with ethers.js"
|
|
log_warn "⚠️ Manual setup required"
|