- 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.
16 lines
452 B
Solidity
16 lines
452 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.20;
|
|
|
|
/**
|
|
* @title TruthNetworkAdapter
|
|
* @notice Minimal adapter on Chain 138 for ChainRegistry: stores Ethereum Truth Bridge address.
|
|
*/
|
|
contract TruthNetworkAdapter {
|
|
address public immutable ethereumTruthBridge;
|
|
|
|
constructor(address _ethereumTruthBridge) {
|
|
require(_ethereumTruthBridge != address(0), "Zero address");
|
|
ethereumTruthBridge = _ethereumTruthBridge;
|
|
}
|
|
}
|