Files
smom-dbis-138/scripts/get-usdt-usdc-supply.sh
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

128 lines
4.1 KiB
Bash
Executable File

#!/usr/bin/env bash
# Get total supply for CompliantUSDT and CompliantUSDC tokens
# Usage: ./get-usdt-usdc-supply.sh
set -euo pipefail
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
PROJECT_ROOT="$(cd "$SCRIPT_DIR/../.." && pwd)"
# Colors
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
BLUE='\033[0;34m'
NC='\033[0m'
log_info() { echo -e "${BLUE}[INFO]${NC} $1"; }
log_success() { echo -e "${GREEN}[✓]${NC} $1"; }
log_error() { echo -e "${RED}[✗]${NC} $1"; }
log_warn() { echo -e "${YELLOW}[⚠]${NC} $1"; }
# Load environment variables if .env exists
if [ -f "$PROJECT_ROOT/.env" ]; then
source "$PROJECT_ROOT/.env"
elif [ -f "$PROJECT_ROOT/smom-dbis-138/.env" ]; then
source "$PROJECT_ROOT/smom-dbis-138/.env"
fi
# Configuration
RPC_URL="${RPC_URL:-${RPC_URL_138:-http://192.168.11.250:8545}}"
COMPLIANT_USDT_ADDRESS="${COMPLIANT_USDT_ADDRESS:-0x93E66202A11B1772E55407B32B44e5Cd8eda7f22}"
COMPLIANT_USDC_ADDRESS="${COMPLIANT_USDC_ADDRESS:-0xf22258f57794CC8E06237084b353Ab30fFfa640b}"
# Token decimals (both USDT and USDC use 6 decimals)
USDT_DECIMALS=6
USDC_DECIMALS=6
log_info "========================================="
log_info "USDT and USDC Total Supply"
log_info "========================================="
log_info ""
log_info "RPC URL: $RPC_URL"
log_info ""
# Function to query total supply
query_total_supply() {
local token_address=$1
local token_name=$2
local decimals=$3
log_info "$token_name Token Information:"
log_info " Address: $token_address"
# Get total supply
TOTAL_SUPPLY_RAW=$(cast call "$token_address" "totalSupply()" --rpc-url "$RPC_URL" 2>&1 || echo "ERROR")
if [ "$TOTAL_SUPPLY_RAW" = "ERROR" ] || [ -z "$TOTAL_SUPPLY_RAW" ]; then
log_error " Failed to query totalSupply()"
log_error " Check if contract is deployed and RPC is accessible"
return 1
fi
# Convert hex to decimal if needed
if echo "$TOTAL_SUPPLY_RAW" | grep -q "^0x"; then
TOTAL_SUPPLY_DEC=$(cast --to-dec "$TOTAL_SUPPLY_RAW" 2>/dev/null || echo "0")
else
TOTAL_SUPPLY_DEC="$TOTAL_SUPPLY_RAW"
fi
# Convert to human-readable format (divide by 10^decimals)
# Using bc for precision
DIVISOR=$(echo "10^$decimals" | bc)
TOTAL_SUPPLY_FORMATTED=$(echo "scale=$decimals; $TOTAL_SUPPLY_DEC / $DIVISOR" | bc 2>/dev/null || echo "0")
log_info " Raw Total Supply: $TOTAL_SUPPLY_DEC (wei/base units)"
log_info " Decimals: $decimals"
log_success " Total Supply: $TOTAL_SUPPLY_FORMATTED $token_name"
# Also get name and symbol if possible
TOKEN_NAME=$(cast call "$token_address" "name()" --rpc-url "$RPC_URL" 2>/dev/null || echo "")
TOKEN_SYMBOL=$(cast call "$token_address" "symbol()" --rpc-url "$RPC_URL" 2>/dev/null || echo "")
if [ -n "$TOKEN_NAME" ] && [ "$TOKEN_NAME" != "0x" ]; then
TOKEN_NAME_CLEAN=$(echo "$TOKEN_NAME" | cast --to-ascii 2>/dev/null | tr -d '\0' || echo "$TOKEN_NAME")
log_info " Name: $TOKEN_NAME_CLEAN"
fi
if [ -n "$TOKEN_SYMBOL" ] && [ "$TOKEN_SYMBOL" != "0x" ]; then
TOKEN_SYMBOL_CLEAN=$(echo "$TOKEN_SYMBOL" | cast --to-ascii 2>/dev/null | tr -d '\0' || echo "$TOKEN_SYMBOL")
log_info " Symbol: $TOKEN_SYMBOL_CLEAN"
fi
log_info ""
# Return the formatted value (for potential use in other scripts)
echo "$TOTAL_SUPPLY_FORMATTED"
}
# Query USDT
log_info "Querying CompliantUSDT..."
USDT_SUPPLY=$(query_total_supply "$COMPLIANT_USDT_ADDRESS" "USDT" "$USDT_DECIMALS")
USDT_RESULT=$?
# Query USDC
log_info "Querying CompliantUSDC..."
USDC_SUPPLY=$(query_total_supply "$COMPLIANT_USDC_ADDRESS" "USDC" "$USDC_DECIMALS")
USDC_RESULT=$?
log_info "========================================="
log_info "Summary"
log_info "========================================="
log_info ""
if [ "$USDT_RESULT" -eq 0 ]; then
log_success "USDT Total Supply: $USDT_SUPPLY"
else
log_error "USDT: Failed to query"
fi
if [ "$USDC_RESULT" -eq 0 ]; then
log_success "USDC Total Supply: $USDC_SUPPLY"
else
log_error "USDC: Failed to query"
fi
log_info ""