- 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.
42 lines
990 B
JSON
42 lines
990 B
JSON
{
|
|
"name": "@defi-oracle/metamask-sdk",
|
|
"version": "1.0.0",
|
|
"description": "MetaMask integration helpers for DeFi Oracle Meta Mainnet (ChainID 138)",
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.esm.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "vitest",
|
|
"test:coverage": "vitest --coverage",
|
|
"lint": "eslint src --ext .ts"
|
|
},
|
|
"keywords": [
|
|
"metamask",
|
|
"wallet",
|
|
"chainid-138",
|
|
"defi-oracle",
|
|
"ethereum"
|
|
],
|
|
"author": "DeFi Oracle Meta Mainnet",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Defi-Oracle-Tooling/smom-dbis-138"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
"@typescript-eslint/parser": "^6.0.0",
|
|
"eslint": "^8.0.0",
|
|
"typescript": "^5.0.0",
|
|
"vitest": "^1.0.0",
|
|
"@vitest/coverage-v8": "^1.0.0",
|
|
"jsdom": "^23.0.0"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md"
|
|
]
|
|
}
|