Files
smom-dbis-138/contracts/bridge/interop/BridgeEscrowVault.sol
defiQUG 50ab378da9 feat: Implement Universal Cross-Chain Asset Hub - All phases complete
PRODUCTION-GRADE IMPLEMENTATION - All 7 Phases Done

This is a complete, production-ready implementation of an infinitely
extensible cross-chain asset hub that will never box you in architecturally.

## Implementation Summary

### Phase 1: Foundation 
- UniversalAssetRegistry: 10+ asset types with governance
- Asset Type Handlers: ERC20, GRU, ISO4217W, Security, Commodity
- GovernanceController: Hybrid timelock (1-7 days)
- TokenlistGovernanceSync: Auto-sync tokenlist.json

### Phase 2: Bridge Infrastructure 
- UniversalCCIPBridge: Main bridge (258 lines)
- GRUCCIPBridge: GRU layer conversions
- ISO4217WCCIPBridge: eMoney/CBDC compliance
- SecurityCCIPBridge: Accredited investor checks
- CommodityCCIPBridge: Certificate validation
- BridgeOrchestrator: Asset-type routing

### Phase 3: Liquidity Integration 
- LiquidityManager: Multi-provider orchestration
- DODOPMMProvider: DODO PMM wrapper
- PoolManager: Auto-pool creation

### Phase 4: Extensibility 
- PluginRegistry: Pluggable components
- ProxyFactory: UUPS/Beacon proxy deployment
- ConfigurationRegistry: Zero hardcoded addresses
- BridgeModuleRegistry: Pre/post hooks

### Phase 5: Vault Integration 
- VaultBridgeAdapter: Vault-bridge interface
- BridgeVaultExtension: Operation tracking

### Phase 6: Testing & Security 
- Integration tests: Full flows
- Security tests: Access control, reentrancy
- Fuzzing tests: Edge cases
- Audit preparation: AUDIT_SCOPE.md

### Phase 7: Documentation & Deployment 
- System architecture documentation
- Developer guides (adding new assets)
- Deployment scripts (5 phases)
- Deployment checklist

## Extensibility (Never Box In)

7 mechanisms to prevent architectural lock-in:
1. Plugin Architecture - Add asset types without core changes
2. Upgradeable Contracts - UUPS proxies
3. Registry-Based Config - No hardcoded addresses
4. Modular Bridges - Asset-specific contracts
5. Composable Compliance - Stackable modules
6. Multi-Source Liquidity - Pluggable providers
7. Event-Driven - Loose coupling

## Statistics

- Contracts: 30+ created (~5,000+ LOC)
- Asset Types: 10+ supported (infinitely extensible)
- Tests: 5+ files (integration, security, fuzzing)
- Documentation: 8+ files (architecture, guides, security)
- Deployment Scripts: 5 files
- Extensibility Mechanisms: 7

## Result

A future-proof system supporting:
- ANY asset type (tokens, GRU, eMoney, CBDCs, securities, commodities, RWAs)
- ANY chain (EVM + future non-EVM via CCIP)
- WITH governance (hybrid risk-based approval)
- WITH liquidity (PMM integrated)
- WITH compliance (built-in modules)
- WITHOUT architectural limitations

Add carbon credits, real estate, tokenized bonds, insurance products,
or any future asset class via plugins. No redesign ever needed.

Status: Ready for Testing → Audit → Production
2026-01-24 07:01:37 -08:00

376 lines
12 KiB
Solidity

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Pausable.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/utils/cryptography/EIP712.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
/**
* @title BridgeEscrowVault
* @notice Enhanced escrow vault for multi-rail bridging (EVM, XRPL, Fabric)
* @dev Supports HSM-backed admin functions via EIP-712 signatures
*/
contract BridgeEscrowVault is ReentrancyGuard, Pausable, AccessControl, EIP712 {
using SafeERC20 for IERC20;
bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");
bytes32 public constant OPERATOR_ROLE = keccak256("OPERATOR_ROLE");
bytes32 public constant REFUND_ROLE = keccak256("REFUND_ROLE");
enum DestinationType {
EVM,
XRPL,
FABRIC
}
enum TransferStatus {
INITIATED,
DEPOSIT_CONFIRMED,
ROUTE_SELECTED,
EXECUTING,
DESTINATION_SENT,
FINALITY_CONFIRMED,
COMPLETED,
FAILED,
REFUND_PENDING,
REFUNDED
}
struct Transfer {
bytes32 transferId;
address depositor;
address asset; // address(0) for native ETH
uint256 amount;
DestinationType destinationType;
bytes destinationData; // Encoded destination address/identifier
uint256 timestamp;
uint256 timeout;
TransferStatus status;
bool refunded;
}
struct RefundRequest {
bytes32 transferId;
uint256 deadline;
bytes hsmSignature;
}
// EIP-712 type hashes
bytes32 private constant REFUND_TYPEHASH =
keccak256("RefundRequest(bytes32 transferId,uint256 deadline)");
mapping(bytes32 => Transfer) public transfers;
mapping(bytes32 => bool) public processedTransferIds;
mapping(address => uint256) public nonces;
event Deposit(
bytes32 indexed transferId,
address indexed depositor,
address indexed asset,
uint256 amount,
DestinationType destinationType,
bytes destinationData,
uint256 timestamp
);
event TransferStatusUpdated(
bytes32 indexed transferId,
TransferStatus oldStatus,
TransferStatus newStatus
);
event RefundInitiated(
bytes32 indexed transferId,
address indexed depositor,
uint256 amount
);
event RefundExecuted(
bytes32 indexed transferId,
address indexed depositor,
uint256 amount
);
error ZeroAmount();
error ZeroRecipient();
error ZeroAsset();
error TransferAlreadyProcessed();
error TransferNotFound();
error TransferNotRefundable();
error InvalidTimeout();
error InvalidSignature();
error TransferNotTimedOut();
error InvalidStatus();
constructor(address admin) EIP712("BridgeEscrowVault", "1") {
_grantRole(DEFAULT_ADMIN_ROLE, admin);
_grantRole(PAUSER_ROLE, admin);
_grantRole(OPERATOR_ROLE, admin);
_grantRole(REFUND_ROLE, admin);
}
/**
* @notice Deposit native ETH for cross-chain transfer
* @param destinationType Type of destination (EVM, XRPL, Fabric)
* @param destinationData Encoded destination address/identifier
* @param timeout Timeout in seconds for refund eligibility
* @param nonce User-provided nonce for replay protection
* @return transferId Unique transfer identifier
*/
function depositNative(
DestinationType destinationType,
bytes calldata destinationData,
uint256 timeout,
bytes32 nonce
) external payable nonReentrant whenNotPaused returns (bytes32 transferId) {
if (msg.value == 0) revert ZeroAmount();
if (destinationData.length == 0) revert ZeroRecipient();
if (timeout == 0) revert InvalidTimeout();
nonces[msg.sender]++;
transferId = _generateTransferId(
address(0),
msg.value,
destinationType,
destinationData,
nonce
);
if (processedTransferIds[transferId]) revert TransferAlreadyProcessed();
processedTransferIds[transferId] = true;
transfers[transferId] = Transfer({
transferId: transferId,
depositor: msg.sender,
asset: address(0),
amount: msg.value,
destinationType: destinationType,
destinationData: destinationData,
timestamp: block.timestamp,
timeout: timeout,
status: TransferStatus.INITIATED,
refunded: false
});
emit Deposit(
transferId,
msg.sender,
address(0),
msg.value,
destinationType,
destinationData,
block.timestamp
);
return transferId;
}
/**
* @notice Deposit ERC-20 tokens for cross-chain transfer
* @param token ERC-20 token address
* @param amount Amount to deposit
* @param destinationType Type of destination (EVM, XRPL, Fabric)
* @param destinationData Encoded destination address/identifier
* @param timeout Timeout in seconds for refund eligibility
* @param nonce User-provided nonce for replay protection
* @return transferId Unique transfer identifier
*/
function depositERC20(
address token,
uint256 amount,
DestinationType destinationType,
bytes calldata destinationData,
uint256 timeout,
bytes32 nonce
) external nonReentrant whenNotPaused returns (bytes32 transferId) {
if (token == address(0)) revert ZeroAsset();
if (amount == 0) revert ZeroAmount();
if (destinationData.length == 0) revert ZeroRecipient();
if (timeout == 0) revert InvalidTimeout();
nonces[msg.sender]++;
transferId = _generateTransferId(
token,
amount,
destinationType,
destinationData,
nonce
);
if (processedTransferIds[transferId]) revert TransferAlreadyProcessed();
processedTransferIds[transferId] = true;
IERC20(token).safeTransferFrom(msg.sender, address(this), amount);
transfers[transferId] = Transfer({
transferId: transferId,
depositor: msg.sender,
asset: token,
amount: amount,
destinationType: destinationType,
destinationData: destinationData,
timestamp: block.timestamp,
timeout: timeout,
status: TransferStatus.INITIATED,
refunded: false
});
emit Deposit(
transferId,
msg.sender,
token,
amount,
destinationType,
destinationData,
block.timestamp
);
return transferId;
}
/**
* @notice Update transfer status (operator only)
* @param transferId Transfer identifier
* @param newStatus New status
*/
function updateTransferStatus(
bytes32 transferId,
TransferStatus newStatus
) external onlyRole(OPERATOR_ROLE) {
Transfer storage transfer = transfers[transferId];
if (transfer.transferId == bytes32(0)) revert TransferNotFound();
TransferStatus oldStatus = transfer.status;
transfer.status = newStatus;
emit TransferStatusUpdated(transferId, oldStatus, newStatus);
}
/**
* @notice Initiate refund (requires HSM signature)
* @param request Refund request with HSM signature
* @param hsmSigner HSM signer address
*/
function initiateRefund(
RefundRequest calldata request,
address hsmSigner
) external onlyRole(REFUND_ROLE) {
Transfer storage transfer = transfers[request.transferId];
if (transfer.transferId == bytes32(0)) revert TransferNotFound();
if (transfer.refunded) revert TransferNotRefundable();
if (block.timestamp < transfer.timestamp + transfer.timeout) {
revert TransferNotTimedOut();
}
// Verify HSM signature
bytes32 structHash = keccak256(
abi.encode(REFUND_TYPEHASH, request.transferId, request.deadline)
);
bytes32 hash = _hashTypedDataV4(structHash);
if (ECDSA.recover(hash, request.hsmSignature) != hsmSigner) {
revert InvalidSignature();
}
if (block.timestamp > request.deadline) revert InvalidSignature();
transfer.status = TransferStatus.REFUND_PENDING;
emit RefundInitiated(request.transferId, transfer.depositor, transfer.amount);
}
/**
* @notice Execute refund after initiation
* @param transferId Transfer identifier
*/
function executeRefund(bytes32 transferId) external nonReentrant onlyRole(REFUND_ROLE) {
Transfer storage transfer = transfers[transferId];
if (transfer.transferId == bytes32(0)) revert TransferNotFound();
if (transfer.refunded) revert TransferNotRefundable();
if (transfer.status != TransferStatus.REFUND_PENDING) revert InvalidStatus();
transfer.refunded = true;
transfer.status = TransferStatus.REFUNDED;
if (transfer.asset == address(0)) {
(bool success, ) = transfer.depositor.call{value: transfer.amount}("");
require(success, "Refund failed");
} else {
IERC20(transfer.asset).safeTransfer(transfer.depositor, transfer.amount);
}
emit RefundExecuted(transferId, transfer.depositor, transfer.amount);
}
/**
* @notice Get transfer details
* @param transferId Transfer identifier
* @return Transfer struct
*/
function getTransfer(bytes32 transferId) external view returns (Transfer memory) {
return transfers[transferId];
}
/**
* @notice Check if transfer is refundable
* @param transferId Transfer identifier
* @return True if refundable
*/
function isRefundable(bytes32 transferId) external view returns (bool) {
Transfer storage transfer = transfers[transferId];
if (transfer.transferId == bytes32(0)) return false;
if (transfer.refunded) return false;
return block.timestamp >= transfer.timestamp + transfer.timeout;
}
/**
* @notice Generate unique transfer ID
* @param asset Asset address
* @param amount Amount
* @param destinationType Destination type
* @param destinationData Destination data
* @param nonce User nonce
* @return transferId Unique identifier
*/
function _generateTransferId(
address asset,
uint256 amount,
DestinationType destinationType,
bytes calldata destinationData,
bytes32 nonce
) internal view returns (bytes32) {
return
keccak256(
abi.encodePacked(
asset,
amount,
uint8(destinationType),
destinationData,
nonce,
msg.sender,
block.timestamp,
block.number
)
);
}
/**
* @notice Pause contract
*/
function pause() external onlyRole(PAUSER_ROLE) {
_pause();
}
/**
* @notice Unpause contract
*/
function unpause() external onlyRole(PAUSER_ROLE) {
_unpause();
}
}