Files
smom-dbis-138/contracts/utils/TokenRegistry.sol

202 lines
6.3 KiB
Solidity
Raw Normal View History

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
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
/**
* @title TokenRegistry
* @notice Registry for all tokens on ChainID 138
* @dev Provides a centralized registry for token addresses, metadata, and status
*/
contract TokenRegistry is AccessControl {
bytes32 public constant REGISTRAR_ROLE = keccak256("REGISTRAR_ROLE");
/**
* @notice Token information structure
*/
struct TokenInfo {
address tokenAddress;
string name;
string symbol;
uint8 decimals;
bool isActive;
bool isNative;
address bridgeAddress; // If bridged from another chain
uint256 registeredAt;
uint256 lastUpdated;
}
mapping(address => TokenInfo) private _tokens;
mapping(string => address) private _tokensBySymbol;
address[] private _tokenList;
event TokenRegistered(
address indexed tokenAddress,
string name,
string symbol,
uint8 decimals,
uint256 timestamp
);
event TokenUpdated(
address indexed tokenAddress,
bool isActive,
uint256 timestamp
);
event TokenRemoved(
address indexed tokenAddress,
uint256 timestamp
);
/**
* @notice Constructor
* @param admin Address that will receive DEFAULT_ADMIN_ROLE
*/
constructor(address admin) {
_grantRole(DEFAULT_ADMIN_ROLE, admin);
_grantRole(REGISTRAR_ROLE, admin);
}
/**
* @notice Register a new token
* @param tokenAddress Address of the token contract
* @param name Token name
* @param symbol Token symbol
* @param decimals Number of decimals
* @param isNative Whether this is a native token (e.g., ETH)
* @param bridgeAddress Bridge address if this is a bridged token (address(0) if not)
* @dev Requires REGISTRAR_ROLE
*/
function registerToken(
address tokenAddress,
string calldata name,
string calldata symbol,
uint8 decimals,
bool isNative,
address bridgeAddress
) external onlyRole(REGISTRAR_ROLE) {
require(tokenAddress != address(0), "TokenRegistry: zero address");
require(_tokens[tokenAddress].tokenAddress == address(0), "TokenRegistry: token already registered");
require(_tokensBySymbol[symbol] == address(0), "TokenRegistry: symbol already used");
// Verify token contract exists (if not native)
if (!isNative) {
require(tokenAddress.code.length > 0, "TokenRegistry: invalid token contract");
}
_tokens[tokenAddress] = TokenInfo({
tokenAddress: tokenAddress,
name: name,
symbol: symbol,
decimals: decimals,
isActive: true,
isNative: isNative,
bridgeAddress: bridgeAddress,
registeredAt: block.timestamp,
lastUpdated: block.timestamp
});
_tokensBySymbol[symbol] = tokenAddress;
_tokenList.push(tokenAddress);
emit TokenRegistered(tokenAddress, name, symbol, decimals, block.timestamp);
}
/**
* @notice Update token status
* @param tokenAddress Address of the token
* @param isActive New active status
* @dev Requires REGISTRAR_ROLE
*/
function updateTokenStatus(address tokenAddress, bool isActive) external onlyRole(REGISTRAR_ROLE) {
require(_tokens[tokenAddress].tokenAddress != address(0), "TokenRegistry: token not registered");
_tokens[tokenAddress].isActive = isActive;
_tokens[tokenAddress].lastUpdated = block.timestamp;
emit TokenUpdated(tokenAddress, isActive, block.timestamp);
}
/**
* @notice Remove a token from the registry
* @param tokenAddress Address of the token
* @dev Requires REGISTRAR_ROLE
*/
function removeToken(address tokenAddress) external onlyRole(REGISTRAR_ROLE) {
require(_tokens[tokenAddress].tokenAddress != address(0), "TokenRegistry: token not registered");
// Remove from symbol mapping
delete _tokensBySymbol[_tokens[tokenAddress].symbol];
// Remove from list (swap with last element and pop)
for (uint256 i = 0; i < _tokenList.length; i++) {
if (_tokenList[i] == tokenAddress) {
_tokenList[i] = _tokenList[_tokenList.length - 1];
_tokenList.pop();
break;
}
}
delete _tokens[tokenAddress];
emit TokenRemoved(tokenAddress, block.timestamp);
}
/**
* @notice Get token information
* @param tokenAddress Address of the token
* @return Token information struct
*/
function getTokenInfo(address tokenAddress) external view returns (TokenInfo memory) {
return _tokens[tokenAddress];
}
/**
* @notice Get token address by symbol
* @param symbol Token symbol
* @return Token address (address(0) if not found)
*/
function getTokenBySymbol(string calldata symbol) external view returns (address) {
address tokenAddr = _tokensBySymbol[symbol];
return tokenAddr;
}
/**
* @notice Check if a token is registered
* @param tokenAddress Address of the token
* @return True if registered, false otherwise
*/
function isTokenRegistered(address tokenAddress) external view returns (bool) {
return _tokens[tokenAddress].tokenAddress != address(0);
}
/**
* @notice Check if a token is active
* @param tokenAddress Address of the token
* @return True if active, false otherwise
*/
function isTokenActive(address tokenAddress) external view returns (bool) {
TokenInfo memory token = _tokens[tokenAddress];
return token.tokenAddress != address(0) && token.isActive;
}
/**
* @notice Get all registered tokens
* @return Array of token addresses
*/
function getAllTokens() external view returns (address[] memory) {
return _tokenList;
}
/**
* @notice Get count of registered tokens
* @return Number of registered tokens
*/
function getTokenCount() external view returns (uint256) {
return _tokenList.length;
}
}