Files
proxmox/docs/11-references/CCIP_CHAIN_SELECTORS.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

37 lines
1.0 KiB
Markdown

# CCIP Chain Selectors Reference
**Last Updated:** 2026-01-31
CCIP uses numeric chain selectors for cross-chain routing. Set `CCIP_DEST_CHAIN_SELECTOR` when using `run-send-cross-chain.sh`.
## Common Chain Selectors
| Chain | Selector (decimal) |
|-------|--------------------|
| Ethereum Mainnet | 5009297550715157269 |
| Arbitrum One | 4949039107694359620 |
| Polygon | 4051577828743386545 |
| Avalanche | 6433500567565415381 |
| Base | 15971525489660198786 |
| Optimism | 3734403246176062136 |
| BSC (BNB Chain) | 11344663589394136015 |
| Gnosis Chain | 465200170687744372 |
| Celo | 1346049177634351622 |
| Wemix | 5142893604156789321 |
## Source
Chain selectors are from Chainlink CCIP documentation. Verify current values at:
- https://docs.chain.link/ccip/supported-networks
- Bridge contract `getChainSelector()` or router config
## Usage
```bash
# Send to Ethereum mainnet (default)
./scripts/bridge/run-send-cross-chain.sh 0.01
# Send to Polygon
CCIP_DEST_CHAIN_SELECTOR=4051577828743386545 ./scripts/bridge/run-send-cross-chain.sh 0.01
```