Files
proxmox/docs/06-besu/T1_2_CREATE2_DEPLOYMENT_SUMMARY.md
defiQUG fbda1b4beb
Some checks failed
Deploy to Phoenix / deploy (push) Has been cancelled
docs: Ledger Live integration, contract deploy learnings, NEXT_STEPS updates
- ADD_CHAIN138_TO_LEDGER_LIVE: Ledger form done; public code review repo bis-innovations/LedgerLive; init/push commands
- CONTRACT_DEPLOYMENT_RUNBOOK: Chain 138 gas price 1 gwei, 36-addr check, TransactionMirror workaround
- CONTRACT_*: AddressMapper, MirrorManager deployed 2026-02-12; 36-address on-chain check
- NEXT_STEPS_FOR_YOU: Ledger done; steps completable now (no LAN); run-completable-tasks-from-anywhere
- MASTER_INDEX, OPERATOR_OPTIONAL, SMART_CONTRACTS_INVENTORY_SIMPLE: updates
- LEDGER_BLOCKCHAIN_INTEGRATION_COMPLETE: bis-innovations/LedgerLive reference

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 15:46:57 -08:00

2.1 KiB

CREATE2 Deployment to Canonical LINK - Summary

Last Updated: 2026-01-31
Document Version: 1.0
Status: Active Documentation


Date: 2026-01-18
Status: SCRIPTS CREATED | ⚠️ COMPILATION BLOCKED


What Was Completed

1. Deployment Script Created

File: smom-dbis-138/script/DeployLinkToCanonicalAddress.s.sol

Features:

  • Deploys CREATE2Factory
  • Brute-forces salt search (up to 1M iterations)
  • Deploys LINK token at canonical address if salt found
  • Mints 1M LINK to deployer

2. Deployment Wrapper Script Created

File: scripts/deploy-link-canonical-create2.sh

Features:

  • RPC connection testing with fallback
  • Canonical address verification
  • Deployment execution
  • Post-deployment verification

3. Compilation Fixes Applied

Fixed function visibility issues:

  • VaultBridgeIntegration.registerDepositToken: externalpublic
  • WTokenBridgeIntegration.registerWToken: externalpublic
  • WTokenBridgeIntegration.registerWTokenDefault: externalpublic
  • eMoneyBridgeIntegration.registereMoneyToken: externalpublic
  • VaultErrors.sol: Removed invalid @title tag

⚠️ Current Blocker

Compilation Errors in Unrelated Contracts:

  • Identifier conflicts in InitializeBridgeSystem.s.sol
  • Function override issues in vault contracts
  • Missing interface members

Impact: Blocks forge script from compiling the deployment script.

Deployment Script Status: The script itself is correct and should compile if project-wide errors are resolved.


🚀 Execution When Ready

Once compilation errors are fixed, execute:

cd /home/intlc/projects/proxmox
./scripts/deploy-link-canonical-create2.sh

📋 Expected Behavior

  1. Salt Search: Script searches up to 1,000,000 salt values
  2. If Salt Found: Deploys LINK token at 0x514910771AF9Ca656af840dff83E8264EcF986CA
  3. If Salt Not Found: Exits with explanation (bytecode mismatch, CREATE vs CREATE2, etc.)

Status: SCRIPTS READY | ⚠️ AWAITING COMPILATION FIXES

Last Updated: 2026-01-18