chore: sync submodule state (parent ref update)

Made-with: Cursor
This commit is contained in:
defiQUG
2026-03-02 12:14:09 -08:00
parent 50ab378da9
commit 5efe36b1e0
1100 changed files with 155024 additions and 8674 deletions

View File

@@ -0,0 +1,15 @@
// 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;
}
}