- 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.
24 lines
1.1 KiB
Bash
Executable File
24 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# List all smart contracts that need Ethereum Mainnet deployment
|
|
|
|
|
|
log_info "=== Ethereum Mainnet Deployment Contracts List ==="
|
|
log_info "Required Contracts:"
|
|
echo "1. CCIPLogger"
|
|
echo " Location: contracts/ccip-integration/CCIPLogger.sol"
|
|
echo " Deployment: npm run deploy:logger:mainnet"
|
|
echo " Dependencies: CCIP Router (Chainlink official)"
|
|
echo "2. CCIPWETH9Bridge"
|
|
echo " Location: contracts/ccip/CCIPWETH9Bridge.sol"
|
|
echo " Deployment: script/DeployCCIPWETH9Bridge.s.sol"
|
|
echo " Dependencies: CCIP Router, WETH9 (0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)"
|
|
echo "3. CCIPWETH10Bridge"
|
|
echo " Location: contracts/ccip/CCIPWETH10Bridge.sol"
|
|
echo " Deployment: script/DeployCCIPWETH10Bridge.s.sol"
|
|
echo " Dependencies: CCIP Router, WETH10 (0xf4BB2e28688e89fCcE3c0580D37d36A7672E8A9f)"
|
|
log_info "Deployment Order:"
|
|
echo " 1. CCIPLogger (no dependencies on new contracts)"
|
|
echo " 2. CCIPWETH9Bridge (depends on CCIP Router)"
|
|
echo " 3. CCIPWETH10Bridge (depends on CCIP Router)"
|
|
log_warn "Note: WETH9 and WETH10 already exist on Mainnet at canonical addresses"
|