docs(deployment): update CCIPWETH10Bridge address across documentation and scripts

- Changed CCIPWETH10Bridge address from `0x8078A09637e47Fa5Ed34F626046Ea2094a5CDE5e` to `0xe0E93247376aa097dB308B92e6Ba36bA015535D0` in various deployment documents and scripts.
- Ensured consistency in bridge configuration and verification steps for ChainID 138 and Mainnet.

Made-with: Cursor
This commit is contained in:
defiQUG
2026-03-24 22:49:50 -07:00
parent fc3a95de08
commit a780eff7c5
27 changed files with 121 additions and 102 deletions

View File

@@ -36,13 +36,13 @@
| Property | Value |
|----------|-------|
| **Address** | `0x8078A09637e47Fa5Ed34F626046Ea2094a5CDE5e` |
| **Address** | `0x04E1e22B0D41e99f4275bd40A50480219bc9A223` |
| **Status** | ✅ Deployed |
| **Verified** | ✅ Verified |
| **Contract File** | `contracts/ccip/CCIPWETH10Bridge.sol` |
| **Deployment Method** | Foundry (`forge script`) |
| **Deployment Date** | Previously deployed |
| **Etherscan** | [View on Etherscan](https://etherscan.io/address/0x8078A09637e47Fa5Ed34F626046Ea2094a5CDE5e) |
| **Etherscan** | [View on Etherscan](https://etherscan.io/address/0x04E1e22B0D41e99f4275bd40A50480219bc9A223) |
| **Constructor Args** | Router: `0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D`<br>WETH10: `0xf4BB2e28688e89fCcE3c0580D37d36A7672E8A9f`<br>LINK: `0x514910771AF9Ca656af840dff83E8264EcF986CA` |
**Purpose**: Cross-chain bridge for WETH10 tokens using Chainlink CCIP
@@ -150,7 +150,7 @@ Ethereum Mainnet
| Contract | Address | Verified | Action Needed |
|----------|---------|----------|---------------|
| CCIPWETH9Bridge | `0x3304b747E565a97ec8AC220b0B6A1f6ffDB837e6` | ✅ | ✅ Complete |
| CCIPWETH10Bridge | `0x8078A09637e47Fa5Ed34F626046Ea2094a5CDE5e` | ✅ | ✅ Complete |
| CCIPWETH10Bridge | `0x04E1e22B0D41e99f4275bd40A50480219bc9A223` | ✅ | ✅ Complete |
| WETH9 | `0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2` | ✅ | Already verified (canonical) |
| WETH10 | `0xf4BB2e28688e89fCcE3c0580D37d36A7672E8A9f` | ✅ | Already verified (canonical) |
@@ -189,7 +189,7 @@ forge verify-contract \
--num-of-optimizations 200 \
--watch \
--constructor-args "$CONSTRUCTOR_ARGS" \
0x8078A09637e47Fa5Ed34F626046Ea2094a5CDE5e \
0x04E1e22B0D41e99f4275bd40A50480219bc9A223 \
contracts/ccip/CCIPWETH10Bridge.sol:CCIPWETH10Bridge \
$ETHERSCAN_API_KEY
```
@@ -203,7 +203,7 @@ Add these to `.env`:
```bash
# Mainnet Contract Addresses
CCIPWETH9BRIDGE_MAINNET=0x3304b747E565a97ec8AC220b0B6A1f6ffDB837e6
CCIPWETH10BRIDGE_MAINNET=0x8078A09637e47Fa5Ed34F626046Ea2094a5CDE5e
CCIPWETH10BRIDGE_MAINNET=0x04E1e22B0D41e99f4275bd40A50480219bc9A223
# Pre-deployed (canonical)
WETH9_MAINNET=0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
@@ -219,7 +219,7 @@ CCIP_MAINNET_LINK_TOKEN=0x514910771AF9Ca656af840dff83E8264EcF986CA
## 🔗 Quick Links
- **CCIPWETH9Bridge**: https://etherscan.io/address/0x3304b747E565a97ec8AC220b0B6A1f6ffDB837e6
- **CCIPWETH10Bridge**: https://etherscan.io/address/0x8078A09637e47Fa5Ed34F626046Ea2094a5CDE5e
- **CCIPWETH10Bridge**: https://etherscan.io/address/0x04E1e22B0D41e99f4275bd40A50480219bc9A223
- **WETH9**: https://etherscan.io/address/0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
- **WETH10**: https://etherscan.io/address/0xf4BB2e28688e89fCcE3c0580D37d36A7672E8A9f
- **CCIP Router**: https://etherscan.io/address/0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D
@@ -229,4 +229,3 @@ CCIP_MAINNET_LINK_TOKEN=0x514910771AF9Ca656af840dff83E8264EcF986CA
---
**Last Updated**: 2025-12-11