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
9.0 KiB
9.0 KiB
DODO PMM Integration Documentation
Date: 2025-01-12
Status: Implementation Guide
Purpose: Integration with DODO Proactive Market Maker (PMM) for liquidity pools
Overview
DODO PMM Integration enables liquidity pools between CompliantUSDT (cUSDT)/CompliantUSDC (cUSDC) and official USDT/USDC tokens. This provides:
- Exchangeability: Users can swap between compliant and official tokens
- Price Stability: PMM algorithm maintains 1:1 peg
- Liquidity: Efficient capital utilization
- Arbitrage Opportunities: Market-driven peg maintenance
Architecture
Contract: DODOPMMIntegration
Location: contracts/dex/DODOPMMIntegration.sol
Purpose:
- Create and manage DODO PMM pools
- Facilitate swaps between compliant and official tokens
- Manage liquidity provision
Key Features:
- Pool creation (cUSDT/USDT, cUSDC/USDC)
- Liquidity management
- Swap execution
- Price discovery via PMM algorithm
DODO PMM Overview
Proactive Market Maker (PMM)
DODO's PMM algorithm:
- Uses external price oracles (TWAP)
- Maintains price stability through automated market making
- More capital efficient than traditional AMMs
- Lower slippage for stablecoin pairs
Pool Types
DODO Vending Machine (DVM):
- Most common for custom pairs
- Supports single-sided liquidity provision
- Better for stablecoin pairs
Key Parameters:
i: Initial price (1e18 = $1 for stablecoins)k: Slippage factor (lower = less slippage, 0.5e18 recommended)lpFeeRate: LP fee in basis points (3 = 0.03%)isOpenTWAP: Enable time-weighted average price oracle
Deployment
Prerequisites
-
DODO Contracts (check DODO docs for chain-specific addresses):
- DODO Vending Machine Factory
- DODO Approve (optional, for gas optimization)
-
Token Addresses:
- Official USDT/USDC (on target chain)
- Compliant cUSDT/cUSDC (on Chain 138)
-
Network: Deploy on chain where official tokens exist
Deployment Steps
Step 1: Set Environment Variables
# In .env file
PRIVATE_KEY=0x...
RPC_URL=https://...
# DODO contracts (example for Ethereum Mainnet - check DODO docs)
DODO_VENDING_MACHINE_ADDRESS=0x... # DODO Vending Machine Factory
DODO_APPROVE_ADDRESS=0x... # Optional
# Official tokens
OFFICIAL_USDT_ADDRESS=0xdAC17F958D2ee523a2206206994597C13D831ec7
OFFICIAL_USDC_ADDRESS=0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48
# Compliant tokens
COMPLIANT_USDT_ADDRESS=0x93E66202A11B1772E55407B32B44e5Cd8eda7f22
COMPLIANT_USDC_ADDRESS=0xf22258f57794CC8E06237084b353Ab30fFfa640b
# Admin
DODO_INTEGRATION_ADMIN=0x...
Step 2: Deploy Contract
cd smom-dbis-138
forge script script/dex/DeployDODOPMMIntegration.s.sol:DeployDODOPMMIntegration \
--rpc-url $RPC_URL \
--broadcast \
--legacy \
--gas-price 30000000000 \
--via-ir \
-vv
# Save deployed address
export DODO_PMM_INTEGRATION_ADDRESS=<deployed_address>
Pool Creation
Create cUSDT/USDT Pool
# Pool parameters
LP_FEE_RATE=3 # 0.03% = 3 basis points
INITIAL_PRICE=1000000000000000000 # 1e18 = $1
K_FACTOR=500000000000000000 # 0.5e18 = 50% slippage factor
ENABLE_TWAP=true # Enable TWAP oracle
cast send $DODO_PMM_INTEGRATION_ADDRESS \
"createCUSDTUSDTPool(uint256,uint256,uint256,bool)" \
$LP_FEE_RATE \
$INITIAL_PRICE \
$K_FACTOR \
$ENABLE_TWAP \
--rpc-url $RPC_URL \
--private-key $PRIVATE_KEY \
--gas-price 30000000000 \
--legacy \
-vv
# Get pool address
POOL_ADDRESS=$(cast call $DODO_PMM_INTEGRATION_ADDRESS \
"pools(address,address)" \
$COMPLIANT_USDT_ADDRESS \
$OFFICIAL_USDT_ADDRESS \
--rpc-url $RPC_URL | cast --to-addr)
Create cUSDC/USDC Pool
cast send $DODO_PMM_INTEGRATION_ADDRESS \
"createCUSDCUSDCPool(uint256,uint256,uint256,bool)" \
$LP_FEE_RATE \
$INITIAL_PRICE \
$K_FACTOR \
$ENABLE_TWAP \
--rpc-url $RPC_URL \
--private-key $PRIVATE_KEY \
--gas-price 30000000000 \
--legacy \
-vv
Liquidity Provision
Add Liquidity to Pool
# Parameters
POOL_ADDRESS=0x... # Pool address from creation
BASE_AMOUNT=1000000000000 # Amount of base token (cUSDT/cUSDC)
QUOTE_AMOUNT=1000000000000 # Amount of quote token (USDT/USDC)
# 1. Approve tokens to integration contract
cast send $COMPLIANT_USDT_ADDRESS \
"approve(address,uint256)" \
$DODO_PMM_INTEGRATION_ADDRESS \
$BASE_AMOUNT \
--rpc-url $RPC_URL \
--private-key $PRIVATE_KEY \
--gas-price 30000000000 \
--legacy
cast send $OFFICIAL_USDT_ADDRESS \
"approve(address,uint256)" \
$DODO_PMM_INTEGRATION_ADDRESS \
$QUOTE_AMOUNT \
--rpc-url $RPC_URL \
--private-key $PRIVATE_KEY \
--gas-price 30000000000 \
--legacy
# 2. Add liquidity
cast send $DODO_PMM_INTEGRATION_ADDRESS \
"addLiquidity(address,uint256,uint256)" \
$POOL_ADDRESS \
$BASE_AMOUNT \
$QUOTE_AMOUNT \
--rpc-url $RPC_URL \
--private-key $PRIVATE_KEY \
--gas-price 30000000000 \
--legacy \
-vv
Swapping
Swap cUSDT → USDT
AMOUNT_IN=1000000000000 # 1,000,000 cUSDT (6 decimals)
MIN_AMOUNT_OUT=999000000000 # Minimum USDT to receive (slippage protection)
# 1. Approve cUSDT
cast send $COMPLIANT_USDT_ADDRESS \
"approve(address,uint256)" \
$DODO_PMM_INTEGRATION_ADDRESS \
$AMOUNT_IN \
--rpc-url $RPC_URL \
--private-key $PRIVATE_KEY \
--gas-price 30000000000 \
--legacy
# 2. Execute swap
cast send $DODO_PMM_INTEGRATION_ADDRESS \
"swapCUSDTForUSDT(address,uint256,uint256)" \
$POOL_ADDRESS \
$AMOUNT_IN \
$MIN_AMOUNT_OUT \
--rpc-url $RPC_URL \
--private-key $PRIVATE_KEY \
--gas-price 30000000000 \
--legacy \
-vv
Swap USDT → cUSDT
# Similar process, using swapUSDTForCUSDT()
cast send $DODO_PMM_INTEGRATION_ADDRESS \
"swapUSDTForCUSDT(address,uint256,uint256)" \
$POOL_ADDRESS \
$AMOUNT_IN \
$MIN_AMOUNT_OUT \
--rpc-url $RPC_URL \
--private-key $PRIVATE_KEY \
--gas-price 30000000000 \
--legacy \
-vv
Query Functions
Get Pool Price
cast call $DODO_PMM_INTEGRATION_ADDRESS \
"getPoolPrice(address)" \
$POOL_ADDRESS \
--rpc-url $RPC_URL
# Returns: price in 1e18 format (1000000000000000000 = $1)
Get Pool Reserves
cast call $DODO_PMM_INTEGRATION_ADDRESS \
"getPoolReserves(address)" \
$POOL_ADDRESS \
--rpc-url $RPC_URL
# Returns: (baseReserve, quoteReserve)
Get Pool Configuration
cast call $DODO_PMM_INTEGRATION_ADDRESS \
"getPoolConfig(address)" \
$POOL_ADDRESS \
--rpc-url $RPC_URL
# Returns: PoolConfig struct with all parameters
Get All Pools
cast call $DODO_PMM_INTEGRATION_ADDRESS \
"getAllPools()" \
--rpc-url $RPC_URL
# Returns: Array of all pool addresses
Pool Parameters Guide
Initial Price (i)
- Value:
1000000000000000000(1e18) - Meaning: $1 for stablecoin pairs
- Adjustment: Can set different initial price if needed
K Factor (k)
- Range: 0 to 1e18
- Recommended:
500000000000000000(0.5e18 = 50%) - Lower k: Less slippage, more capital intensive
- Higher k: More slippage, less capital intensive
- For stablecoins: Lower k (0.3-0.5) recommended
LP Fee Rate
- Unit: Basis points (100 = 1%)
- Recommended: 3-10 basis points (0.03% - 0.1%)
- Lower fee: More attractive for traders
- Higher fee: More revenue for LPs
TWAP Oracle
- Purpose: Price discovery and stability
- Recommended: Enable for stablecoin pairs
- Benefit: Reduces price manipulation
Integration Workflow
Phase 1: Setup
- Deploy DODOPMMIntegration contract
- Create pools (cUSDT/USDT, cUSDC/USDC)
- Configure pool parameters
Phase 2: Seed Liquidity
- Approve tokens to integration contract
- Add initial liquidity to pools
- Monitor pool reserves and prices
Phase 3: Enable Trading
- Open pools for public trading
- Monitor swap volumes
- Adjust parameters if needed
Phase 4: Maintenance
- Monitor pool health
- Add/remove liquidity as needed
- Update parameters for optimization
Best Practices
- Liquidity Depth: Maintain sufficient liquidity for expected volume
- Price Monitoring: Monitor pool prices vs. 1:1 peg
- Arbitrage: Allow arbitrageurs to maintain peg
- Slippage Protection: Use appropriate slippage tolerances
- Gas Optimization: Use DODO Approve for batch operations
- Security: Audit contracts before mainnet deployment
Troubleshooting
Pool Creation Fails
- Check DODO Vending Machine address is correct
- Verify token addresses are valid
- Ensure sufficient gas
Swaps Failing
- Check pool has sufficient liquidity
- Verify slippage tolerance is appropriate
- Check token approvals
Price Deviation
- Check pool reserves are balanced
- Monitor for large trades
- Consider adding/removing liquidity
Example Setup Script
See scripts/setup-dodo-pools.sh for automated pool creation and configuration.
Next Steps
- Deploy integration contract
- Create pools with optimal parameters
- Seed initial liquidity
- Enable trading
- Monitor and optimize