- 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.
19 lines
913 B
Solidity
19 lines
913 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.19;
|
|
|
|
library ReasonCodes {
|
|
bytes32 public constant OK = keccak256("OK");
|
|
bytes32 public constant PAUSED = keccak256("PAUSED");
|
|
bytes32 public constant FROM_FROZEN = keccak256("FROM_FROZEN");
|
|
bytes32 public constant TO_FROZEN = keccak256("TO_FROZEN");
|
|
bytes32 public constant FROM_NOT_COMPLIANT = keccak256("FROM_NOT_COMPLIANT");
|
|
bytes32 public constant TO_NOT_COMPLIANT = keccak256("TO_NOT_COMPLIANT");
|
|
bytes32 public constant LIEN_BLOCK = keccak256("LIEN_BLOCK");
|
|
bytes32 public constant INSUFF_FREE_BAL = keccak256("INSUFF_FREE_BAL");
|
|
bytes32 public constant BRIDGE_ONLY = keccak256("BRIDGE_ONLY");
|
|
bytes32 public constant NOT_ALLOWED_ROUTE = keccak256("NOT_ALLOWED_ROUTE");
|
|
bytes32 public constant UNAUTHORIZED = keccak256("UNAUTHORIZED");
|
|
bytes32 public constant CONFIG_ERROR = keccak256("CONFIG_ERROR");
|
|
}
|
|
|