Files
smom-dbis-138/contracts/m00-diamond/M00BridgeStorage.sol
T
defiQUGandCursor 651fb59786 Add mainnet checkpoint stack: ISO attestation, participant Etherscan surface, and services.
Ship AddressActivityRegistry V1/V2, ISO20022IntakeGateway, Chain138ParticipantSurface,
checkpoint hub contracts, checkpoint-core package, aggregator/indexer/sdk services,
relay profile guards, M00 diamond bridge facet, and OMNL compliance contracts.

Co-authored-by: Cursor <[email protected]>
2026-06-24 21:54:05 -07:00

32 lines
888 B
Solidity

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
/**
* @title M00BridgeStorage
* @notice Namespaced wiring for Chain 138 ↔ Ethereum Mainnet mirror / tether / checkpoint v2.
*/
library M00BridgeStorage {
/// @custom:storage-location erc7201:dbis.storage.M00Bridge
bytes32 private constant SLOT =
0x4d30304272696467650000000000000000000000000000000000000000000000;
struct Layout {
address chain138BatchEmitter;
address chain138Mirror;
address mainnetCheckpoint;
address mainnetMirror;
address mainnetTether;
address rwaTokenFactory;
address rwaTokenRegistry;
uint64 lastCommittedBatchId;
uint256 lastAnchoredBlock138;
}
function layout() internal pure returns (Layout storage l) {
bytes32 slot = SLOT;
assembly {
l.slot := slot
}
}
}