143 lines
3.4 KiB
Markdown
143 lines
3.4 KiB
Markdown
# Funding Report - Executive Summary
|
|
|
|
**Date**: 2025-01-12
|
|
**Account**: `0x4A666F96fC8764181194447A7dFdb7d471b301C8`
|
|
|
|
---
|
|
|
|
## Quick Summary
|
|
|
|
### Current Prices
|
|
- **ETH**: $2,920.82 USD
|
|
- **LINK**: $12.15 USD
|
|
|
|
### Account Balances
|
|
- **ETH**: 999,630,769 ETH ✅ (More than sufficient)
|
|
- **LINK**: 0 LINK ⚠️ (Token not deployed)
|
|
- **WETH9**: 6 WETH9
|
|
- **WETH10**: 0 WETH10
|
|
|
|
### Funding Required
|
|
- **Total**: 20 LINK tokens ($243.00 USD)
|
|
- WETH9 Bridge: 10 LINK ($121.50)
|
|
- WETH10 Bridge: 10 LINK ($121.50)
|
|
|
|
---
|
|
|
|
## Detailed Breakdown
|
|
|
|
### Contracts Needing Funding
|
|
|
|
| Contract | Address | Asset | Current | Required | Needed | USD Cost |
|
|
|----------|---------|-------|---------|----------|--------|----------|
|
|
| **WETH9 Bridge** | `0x89dd12025bfCD38A168455A44B400e913ED33BE2` | LINK | 0 LINK | 10 LINK | **10 LINK** | **$121.50** |
|
|
| **WETH10 Bridge** | `0xe0E93247376aa097dB308B92e6Ba36bA015535D0` | LINK | 0 LINK | 10 LINK | **10 LINK** | **$121.50** |
|
|
|
|
### Contracts NOT Needing Funding
|
|
|
|
| Contract | Asset | Status | Reason |
|
|
|----------|-------|--------|--------|
|
|
| **Account** | ETH | ✅ Sufficient | Has 999,630,769 ETH (more than enough) |
|
|
| **WETH9 Bridge** | ETH | ✅ Not needed | Gas paid by users, not bridge |
|
|
| **WETH10 Bridge** | ETH | ✅ Not needed | Gas paid by users, not bridge |
|
|
|
|
---
|
|
|
|
## Transfer Commands
|
|
|
|
### Fund WETH9 Bridge
|
|
```bash
|
|
cast send 0x326C977E6efc84E512bB9C30f76E30c160eD06FB \
|
|
"transfer(address,uint256)" \
|
|
0x89dd12025bfCD38A168455A44B400e913ED33BE2 \
|
|
10000000000000000000 \
|
|
--rpc-url http://192.168.11.250:8545 \
|
|
--private-key $PRIVATE_KEY \
|
|
--gas-price $(./scripts/get-optimal-gas-from-api.sh proposed)
|
|
```
|
|
|
|
### Fund WETH10 Bridge
|
|
```bash
|
|
cast send 0x326C977E6efc84E512bB9C30f76E30c160eD06FB \
|
|
"transfer(address,uint256)" \
|
|
0xe0E93247376aa097dB308B92e6Ba36bA015535D0 \
|
|
10000000000000000000 \
|
|
--rpc-url http://192.168.11.250:8545 \
|
|
--private-key $PRIVATE_KEY \
|
|
--gas-price $(./scripts/get-optimal-gas-from-api.sh proposed)
|
|
```
|
|
|
|
### Automated Funding
|
|
```bash
|
|
# Fund both bridges with 10 LINK each
|
|
./scripts/fund-bridge-contracts.sh 10
|
|
```
|
|
|
|
---
|
|
|
|
## Network Requirements
|
|
|
|
### Source Chain (ChainID 138)
|
|
- **ETH**: ✅ Sufficient (999,630,769 ETH)
|
|
- **LINK**: ⚠️ 20 LINK needed ($243.00)
|
|
|
|
### Destination Chains
|
|
- **No funding required** from this account
|
|
- Users pay their own gas fees
|
|
- Bridge contracts on destination chains manage their own LINK
|
|
|
|
---
|
|
|
|
## Cost Analysis
|
|
|
|
### One-Time Setup
|
|
- **20 LINK**: $243.00 USD
|
|
|
|
### Per Transaction
|
|
- **CCIP Fee**: ~0.0011 LINK (~$0.013)
|
|
- **Gas Fee**: ~0.0001 ETH (~$0.29)
|
|
- **Total**: ~$0.30 per transaction
|
|
|
|
### Annual (1000 transactions)
|
|
- **CCIP Fees**: ~1.1 LINK (~$13.37)
|
|
- **Gas Fees**: ~0.1 ETH (~$292.08)
|
|
- **Total**: ~$305.45
|
|
|
|
---
|
|
|
|
## Prerequisites
|
|
|
|
### Before Funding
|
|
1. **Deploy/Verify LINK Token**
|
|
- Address: `0x326C977E6efc84E512bB9C30f76E30c160eD06FB`
|
|
- Status: Currently appears empty
|
|
- Action: Deploy or verify LINK token contract
|
|
|
|
2. **Acquire LINK Tokens**
|
|
- Amount: 20 LINK minimum
|
|
- Cost: $243.00 USD
|
|
- Source: Exchange, DEX, or faucet
|
|
|
|
---
|
|
|
|
## Summary
|
|
|
|
### ✅ Ready
|
|
- Account has sufficient ETH
|
|
- All scripts created
|
|
- Funding commands ready
|
|
|
|
### ⚠️ Blockers
|
|
- LINK token not deployed/verified
|
|
- Need to acquire 20 LINK tokens
|
|
|
|
### 🎯 Next Steps
|
|
1. Deploy/verify LINK token
|
|
2. Acquire 20 LINK tokens
|
|
3. Run: `./scripts/fund-bridge-contracts.sh 10`
|
|
|
|
---
|
|
|
|
**Last Updated**: 2025-01-12
|
|
|