Files
smom-dbis-138/scripts/ccip-deployment/deploy-ccip-reporter.js
defiQUG 2b52cc6e32 refactor(archive): move historical contracts and adapters to archive directory
- Archived multiple non-EVM adapters (Algorand, Hedera, Tron, TON, Cosmos, Solana) and compliance contracts (IndyVerifier) to `archive/solidity/contracts/`.
- Updated documentation to reflect the historical status of archived components.
- Adjusted `foundry.toml` and `README.md` for clarity on historical dependencies and configurations.
- Enhanced Makefile and package.json scripts for improved contract testing and building processes.
- Removed obsolete contracts (AlltraCustomBridge, CommodityCCIPBridge, ISO4217WCCIPBridge, VaultBridgeAdapter) from the main directory.
- Updated implementation reports to indicate archived status for various components.
2026-04-12 18:21:05 -07:00

8 lines
435 B
JavaScript
Executable File

const archivedSource = "archive/solidity/contracts/ccip-integration/CCIPTxReporter.sol";
console.error("CCIPTxReporter has been archived out of the active compile graph.");
console.error(`Historical source: ${archivedSource}`);
console.error("If you need a fresh deployment, restore that source into contracts/ first.");
console.error("If you only need the existing deployment, set CHAIN138_CCIP_REPORTER in .env.");
process.exit(1);