From e279443e1c43de6247984f092c99fcd75449e561 Mon Sep 17 00:00:00 2001 From: defiQUG Date: Mon, 11 May 2026 16:12:14 -0700 Subject: [PATCH] docs(ccip): document fund-ccip --cap-to-deployer for deployer-only LINK Co-authored-by: Cursor --- docs/deployment/CCIP_BRIDGE_DESTINATIONS_AND_LINK_FUNDING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/deployment/CCIP_BRIDGE_DESTINATIONS_AND_LINK_FUNDING.md b/docs/deployment/CCIP_BRIDGE_DESTINATIONS_AND_LINK_FUNDING.md index 387ec3c..c72ac2e 100644 --- a/docs/deployment/CCIP_BRIDGE_DESTINATIONS_AND_LINK_FUNDING.md +++ b/docs/deployment/CCIP_BRIDGE_DESTINATIONS_AND_LINK_FUNDING.md @@ -86,7 +86,7 @@ Repeat for each destination chain (BSC, Polygon, Base, Optimism, Avalanche, Cron 1. Get LINK on the same chain as the bridge (e.g. from an exchange or faucet). 2. Transfer LINK to the **bridge contract address** (the same address you use for `addDestination`), or use any approved mechanism (e.g. admin top-up function if the contract has one). - **LINK token addresses** per chain are in `.env` (e.g. `CCIP_GNOSIS_LINK_TOKEN`, `CCIP_ETH_LINK_TOKEN`, etc.) and on [Chainlink CCIP Supported Networks](https://docs.chain.link/ccip/supported-networks). -- **Script:** Run `scripts/deployment/fund-ccip-bridges-with-link.sh` to send LINK to all CCIP bridges (sources .env; set `--link amount, default 10 LINK; use --dry-run` to print commands only). +- **Script:** Run `scripts/deployment/fund-ccip-bridges-with-link.sh` to send LINK to all CCIP bridges (sources `.env`). Flags: `--link ` (default 10 LINK), `--dry-run` (print `cast` only), **`--cap-to-deployer`** (per chain: each bridge gets `min(--link, deployer_balance // bridges_on_chain)` so you can use only deployer LINK without matching 10 LINK on every chain). See script header in `scripts/deployment/fund-ccip-bridges-with-link.sh`. ---