- 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.
28 lines
653 B
JSON
28 lines
653 B
JSON
{
|
|
"name": "ccip-watcher-relayer",
|
|
"version": "1.0.0",
|
|
"description": "Production-grade CCIP watcher and relayer for Chain-138 to Ethereum",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"dev": "ts-node src/index.ts",
|
|
"test": "jest"
|
|
},
|
|
"dependencies": {
|
|
"ethers": "^6.9.0",
|
|
"pg": "^8.11.3",
|
|
"dotenv": "^16.3.1",
|
|
"winston": "^3.11.0",
|
|
"prometheus-client": "^15.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.10.0",
|
|
"@types/pg": "^8.10.9",
|
|
"typescript": "^5.3.0",
|
|
"ts-node": "^10.9.2",
|
|
"jest": "^29.7.0",
|
|
"@types/jest": "^29.5.11"
|
|
}
|
|
}
|