Manage Token Transfer Fees Using Foundry
Guide Versions
This guide is available in multiple versions. Choose the one that matches your needs.
CCIP v2 token pools let pool owners opt into pool-level token transfer fee overrides per destination lane. When an override is disabled, the OnRamp falls back to FeeQuoter defaults for that lane. In this tutorial you will:
- Review the current fee configuration for both configured lanes.
- Optionally set a fee admin who can withdraw accrued fees.
- Configure lane-specific flat fees, transfer fees, destination gas overhead, and destination bytes overhead.
- Send a LINK-paid transfer and inspect accrued fees in the source token pool.
- Withdraw accrued fee tokens.
- Disable the fee configuration on both lanes to return to
FeeQuoterdefaults.
Before You Begin
1 Set Up Your Development Environment
-
Install Node.js and npm:
- Make sure you have
Node.js v22.10.0or above installed. If not, installNode.js v22.10.0using the Node.js documentation. npmis bundled with Node.js. If you can't runnpm, reinstall or update Node.js from the official installer.
- Make sure you have
-
Install Foundry. If you haven't already, follow the Foundry installation instructions, then verify the installation:
forge --version
- Install/Update
ccip-cliand verify the installed version:
npm install -g @chainlink/ccip-cli
ccip-cli --version
- Clone the repository and navigate to the project directory:
Clone docs-cct-foundry for the CCT Foundry scripts used in this tutorial.
git clone https://github.com/smartcontractkit/docs-cct-foundry.git
cd docs-cct-foundry
- Create an encrypted Foundry keystore, if you haven't already:
cast wallet import your_keystore_name --interactive
Optionally, create an encrypted Foundry keystore for the fee admin, if you haven't already:
cast wallet import your_fee_admin_keystore_name --interactive
- Create a
.envfile by copying.env.example, then fill in the required values:
cp .env.example .env
# Keystore name (created via `cast wallet import`)
KEYSTORE_NAME=your_keystore_name
# Optional: keystore name for a configured fee admin
FEE_ADMIN_KEYSTORE_NAME=your_fee_admin_keystore_name
# RPC URLs
ETHEREUM_SEPOLIA_RPC_URL=your_eth_sepolia_rpc
ETHEREUM_TESTNET_SEPOLIA_ARBITRUM_1_RPC_URL=your_arbitrum_sepolia_rpc
# Etherscan API key (required only if you pass --verify to deployment scripts)
ETHERSCAN_API_KEY=your_etherscan_api_key
Use the CCIP Directory or script/HelperConfig.s.sol to confirm the router and LINK addresses for your network.
- To make sure your terminal has access to these variables, run:
source .env
- Build the project:
npm install && forge build
Tutorial
1 Verify and Set Fee Admin
The fee admin is part of the token pool dynamic configuration. Use GetDynamicConfig.s.sol to inspect the current router, rate limit admin, and fee admin before making any changes.
View the dynamic config query script on GitHub.
forge script \
script/configure/dynamic-config/GetDynamicConfig.s.sol \
--rpc-url $ETHEREUM_SEPOLIA_RPC_URL
Your output should look something like this:
========================================
โ๏ธ Get Dynamic Config
========================================
Chain: Ethereum Sepolia
Token Pool: 0x147D4625b71f58D7CFA54BB705DC7741B94e0CE9
Action: View dynamic config
========================================
Dynamic Configuration:
Router: 0x0BF3dE8c5D3e8A2B34D2BEeB17ABfCeBaf363A59
Rate Limit Admin: 0xYourAddressForRateLimitAdmin
Fee Admin: 0xYourAddressForFeeAdmin
========================================
Token Pool: https://sepolia.etherscan.io/address/0x147D4625b71f58D7CFA54BB705DC7741B94e0CE9
========================================
forge script \
script/configure/dynamic-config/GetDynamicConfig.s.sol \
--rpc-url $ETHEREUM_TESTNET_SEPOLIA_ARBITRUM_1_RPC_URL
Your output should look something like this:
========================================
โ๏ธ Get Dynamic Config
========================================
Chain: Arbitrum Sepolia
Token Pool: 0x7D2f4A6c8E1b3D5a9F0c2E4b6A8d1C3e5F7a9B2d
Action: View dynamic config
========================================
Dynamic Configuration:
Router: 0x2a9C5afB0d0e4BAb2BCdaE109EC4b0c4Be15a165
Rate Limit Admin: 0xYourAddressForRateLimitAdmin
Fee Admin: 0xYourAddressForFeeAdmin
========================================
Token Pool: https://sepolia.arbiscan.io/address/0x7D2f4A6c8E1b3D5a9F0c2E4b6A8d1C3e5F7a9B2d
========================================
Use SetDynamicConfig.s.sol to set a fee admin. This script sets the router, rate limit admin, and fee admin together, so pass the current router and rate limit admin from the previous output unless you intend to change them.
View the dynamic config update script on GitHub.
| Env var | Required | Description |
|---|---|---|
ROUTER | No | Router to keep or set. Use the current router from GetDynamicConfig.s.sol unless intentionally changing it. |
RATE_LIMIT_ADMIN | No | Rate limit admin to keep or set. Use the current value unless intentionally changing it. |
FEE_ADMIN | No | Address allowed to withdraw accrued fee tokens. Set to address(0) to restrict withdrawal to the pool owner. |
KEYSTORE_NAME | Yes | Foundry keystore for the pool owner. |
- Set the fee admin on the Ethereum Sepolia pool:
ROUTER=0xCurrentRouterFromOutput \
RATE_LIMIT_ADMIN=0xYourAddressForRateLimitAdmin \
FEE_ADMIN=0xYourFeeAdminAddress \
forge script \
script/configure/dynamic-config/SetDynamicConfig.s.sol \
--rpc-url $ETHEREUM_SEPOLIA_RPC_URL \
--account $KEYSTORE_NAME \
--broadcast
Your output should look something like this:
========================================
โ๏ธ Set Dynamic Config
========================================
Chain: Ethereum Sepolia
Token Pool: 0x147D4625b71f58D7CFA54BB705DC7741B94e0CE9
Action: Set dynamic config
========================================
Current Configuration:
Router: 0x0BF3dE8c5D3e8A2B34D2BEeB17ABfCeBaf363A59
Rate Limit Admin: 0xYourAddressForRateLimitAdmin
Fee Admin: 0xYourAddressForFeeAdmin
New Configuration:
Router: 0x0BF3dE8c5D3e8A2B34D2BEeB17ABfCeBaf363A59
Rate Limit Admin: 0x3A34637a41aB08519d30Fdb65344aBa8E9b2e994
Fee Admin: 0x3A34637a41aB08519d30Fdb65344aBa8E9b2e994
[Step 1] Setting dynamic config on Ethereum Sepolia
โ
Dynamic config updated successfully!
========================================
โ
Configuration Complete on Ethereum Sepolia!
========================================
Token Pool: 0x147D4625b71f58D7CFA54BB705DC7741B94e0CE9
Router: 0x0BF3dE8c5D3e8A2B34D2BEeB17ABfCeBaf363A59
Rate Limit Admin: 0x3A34637a41aB08519d30Fdb65344aBa8E9b2e994
Fee Admin: 0x3A34637a41aB08519d30Fdb65344aBa8E9b2e994
Token Pool: https://sepolia.etherscan.io/address/0x147D4625b71f58D7CFA54BB705DC7741B94e0CE9
========================================
- Set the fee admin on the Arbitrum Sepolia pool:
ROUTER=0xCurrentRouterFromOutput \
RATE_LIMIT_ADMIN=0xYourAddressForRateLimitAdmin \
FEE_ADMIN=0xYourFeeAdminAddress \
forge script \
script/configure/dynamic-config/SetDynamicConfig.s.sol \
--rpc-url $ETHEREUM_TESTNET_SEPOLIA_ARBITRUM_1_RPC_URL \
--account $KEYSTORE_NAME \
--broadcast
Your output should look something like this:
========================================
โ๏ธ Set Dynamic Config
========================================
Chain: Arbitrum Sepolia
Token Pool: 0x7D2f4A6c8E1b3D5a9F0c2E4b6A8d1C3e5F7a9B2d
Action: Set dynamic config
========================================
Current Configuration:
Router: 0x2a9C5afB0d0e4BAb2BCdaE109EC4b0c4Be15a165
Rate Limit Admin: 0xYourAddressForRateLimitAdmin
Fee Admin: 0xYourAddressForFeeAdmin
New Configuration:
Router: 0x2a9C5afB0d0e4BAb2BCdaE109EC4b0c4Be15a165
Rate Limit Admin: 0x3A34637a41aB08519d30Fdb65344aBa8E9b2e994
Fee Admin: 0x3A34637a41aB08519d30Fdb65344aBa8E9b2e994
[Step 1] Setting dynamic config on Arbitrum Sepolia
โ
Dynamic config updated successfully!
========================================
โ
Configuration Complete on Arbitrum Sepolia!
========================================
Token Pool: 0x7D2f4A6c8E1b3D5a9F0c2E4b6A8d1C3e5F7a9B2d
Router: 0x2a9C5afB0d0e4BAb2BCdaE109EC4b0c4Be15a165
Rate Limit Admin: 0x3A34637a41aB08519d30Fdb65344aBa8E9b2e994
Fee Admin: 0x3A34637a41aB08519d30Fdb65344aBa8E9b2e994
Token Pool: https://sepolia.arbiscan.io/address/0x7D2f4A6c8E1b3D5a9F0c2E4b6A8d1C3e5F7a9B2d
========================================
2 Review Current Fee Configuration
Use GetTokenTransferFeeConfig.s.sol to read the current fee configuration for a destination lane from the source-chain token pool.
View the fee config query script on GitHub.
| Env var | Required | Description |
|---|---|---|
DEST_CHAIN | Yes | Remote chain whose lane is being queried. |
| Source pool env var | Yes | ETHEREUM_SEPOLIA_TOKEN_POOL, ETHEREUM_TESTNET_SEPOLIA_ARBITRUM_1_TOKEN_POOL, or the inline TOKEN_POOL alias for the source chain selected by --rpc-url. |
- Check the Ethereum Sepolia pool for the lane to Arbitrum Sepolia:
DEST_CHAIN=ETHEREUM_TESTNET_SEPOLIA_ARBITRUM_1 \
forge script \
script/configure/fee-config/GetTokenTransferFeeConfig.s.sol \
--rpc-url $ETHEREUM_SEPOLIA_RPC_URL
Your output should look something like this:
========================================
๐ฐ Get Token Transfer Fee Config
========================================
Chain: Ethereum Sepolia
Remote Chain: Arbitrum Sepolia
Token Pool: 0x147D4625b71f58D7CFA54BB705DC7741B94e0CE9
Action: View fee config
========================================
Dest Chain Selector: 3478487238524512106
Fee Configuration:
isEnabled: false
destGasOverhead: 0
destBytesOverhead: 0
finalityFeeUSDCents: 0
fastFinalityFeeUSDCents: 0
finalityTransferFeeBps: 0
fastFinalityTransferFeeBps: 0
โ ๏ธ Fee config is disabled for this lane.
The OnRamp will fall back to FeeQuoter defaults for this destination.
========================================
Token Pool: https://sepolia.etherscan.io/address/0x147D4625b71f58D7CFA54BB705DC7741B94e0CE9
========================================
- Check the Arbitrum Sepolia pool for the lane to Ethereum Sepolia:
DEST_CHAIN=ETHEREUM_SEPOLIA \
forge script \
script/configure/fee-config/GetTokenTransferFeeConfig.s.sol \
--rpc-url $ETHEREUM_TESTNET_SEPOLIA_ARBITRUM_1_RPC_URL
Your output should look something like this:
========================================
๐ฐ Get Token Transfer Fee Config
========================================
Chain: Arbitrum Sepolia
Remote Chain: Ethereum Sepolia
Token Pool: 0x7D2f4A6c8E1b3D5a9F0c2E4b6A8d1C3e5F7a9B2d
Action: View fee config
========================================
Dest Chain Selector: 16015286601757825753
Fee Configuration:
isEnabled: false
destGasOverhead: 0
destBytesOverhead: 0
finalityFeeUSDCents: 0
fastFinalityFeeUSDCents: 0
finalityTransferFeeBps: 0
fastFinalityTransferFeeBps: 0
โ ๏ธ Fee config is disabled for this lane.
The OnRamp will fall back to FeeQuoter defaults for this destination.
========================================
Token Pool: https://sepolia.arbiscan.io/address/0x7D2f4A6c8E1b3D5a9F0c2E4b6A8d1C3e5F7a9B2d
========================================
3 Set Token Transfer Fee Configuration
Use UpdateTokenTransferFeeConfig.s.sol to configure fee parameters for a destination lane on the source-chain token pool.
View the fee config update script on GitHub.
| Env var | Required | Description |
|---|---|---|
DEST_CHAIN | Yes | Remote chain to configure fees for. |
| Source pool env var | Yes | ETHEREUM_SEPOLIA_TOKEN_POOL, ETHEREUM_TESTNET_SEPOLIA_ARBITRUM_1_TOKEN_POOL, or the inline TOKEN_POOL alias for the source chain selected by --rpc-url. |
KEYSTORE_NAME | Yes | Foundry keystore for the pool owner. |
DEST_GAS_OVERHEAD | No | Gas overhead charged in the fee model. Must be greater than 0 when enabled. |
DEST_BYTES_OVERHEAD | No | Data availability bytes overhead. Use at least 32 for Burn & Mint and Lock & Release pools. |
FINALITY_FEE_USD_CENTS | No | Flat fee in 0.01 USD units for default-finality transfers. |
FAST_FINALITY_FEE_USD_CENTS | No | Flat fee in 0.01 USD units for fast-finality transfers. |
FINALITY_TRANSFER_FEE_BPS | No | Basis-point fee deducted from the transferred amount for default-finality transfers. Must be below 10000. |
FAST_FINALITY_TRANSFER_FEE_BPS | No | Basis-point fee deducted from the transferred amount for fast-finality transfers. Must be below 10000. |
DISABLE | No | Set to true to disable the fee config for this lane. |
This section uses a two-step update demo for the Ethereum Sepolia โ Arbitrum Sepolia lane so you can see that omitting fields does not reset them.
- Step 1 sets a basis-point fee for default-finality transfers.
- Step 2 adds a flat fee for fast-finality transfers, while intentionally omitting the basis points env var so it carries forward.
Fee behavior in this tutorial:
- bps fields are deducted from the transferred token amount and retained by the source pool as the pool token.
- Flat fee fields are charged in the selected fee token (LINK in this tutorial) and credited to the source pool.
Step 1: Configure a basis points fee for default-finality transfers (ETH Sepolia โ Arbitrum Sepolia)
DEST_CHAIN=ETHEREUM_TESTNET_SEPOLIA_ARBITRUM_1 \
DEST_GAS_OVERHEAD=50000 \
DEST_BYTES_OVERHEAD=32 \
FINALITY_FEE_USD_CENTS=0 \
FINALITY_TRANSFER_FEE_BPS=25 \
FAST_FINALITY_FEE_USD_CENTS=0 \
FAST_FINALITY_TRANSFER_FEE_BPS=0 \
forge script \
script/configure/fee-config/UpdateTokenTransferFeeConfig.s.sol \
--rpc-url $ETHEREUM_SEPOLIA_RPC_URL \
--account $KEYSTORE_NAME \
--broadcast
Your output should look something like this:
========================================
๐ฐ Update Token Transfer Fee Config
========================================
Chain: Ethereum Sepolia
Remote Chain: Arbitrum Sepolia
Token Pool: 0x147D4625b71f58D7CFA54BB705DC7741B94e0CE9
Action: Set fee config
========================================
Dest Chain Selector: 3478487238524512106
Current On-Chain Fee Configuration:
isEnabled: false
destGasOverhead: 0
destBytesOverhead: 0
finalityFeeUSDCents: 0
fastFinalityFeeUSDCents: 0
finalityTransferFeeBps: 0
fastFinalityTransferFeeBps: 0
Fee Configuration to Apply:
destGasOverhead: 50000
destBytesOverhead: 32
finalityFeeUSDCents: 0
fastFinalityFeeUSDCents: 0
finalityTransferFeeBps: 25
fastFinalityTransferFeeBps: 0
[Step 1] Applying fee config for lane to Arbitrum Sepolia
โ
Fee config applied successfully!
========================================
โ
Operation Complete!
========================================
Token Pool: 0x147D4625b71f58D7CFA54BB705DC7741B94e0CE9
Token Pool: https://sepolia.etherscan.io/address/0x147D4625b71f58D7CFA54BB705DC7741B94e0CE9
========================================
Step 2: Add a flat fee for fast-finality transfers (ETH Sepolia โ Arbitrum Sepolia)
This command intentionally omits FINALITY_TRANSFER_FEE_BPS. The script defaults omitted fields to the current on-chain values, so the 25 basis points default-finality fee carries forward.
DEST_CHAIN=ETHEREUM_TESTNET_SEPOLIA_ARBITRUM_1 \
FAST_FINALITY_FEE_USD_CENTS=150 \
forge script \
script/configure/fee-config/UpdateTokenTransferFeeConfig.s.sol \
--rpc-url $ETHEREUM_SEPOLIA_RPC_URL \
--account $KEYSTORE_NAME \
--broadcast
Your output should look something like this:
========================================
๐ฐ Update Token Transfer Fee Config
========================================
Chain: Ethereum Sepolia
Remote Chain: Arbitrum Sepolia
Token Pool: 0x147D4625b71f58D7CFA54BB705DC7741B94e0CE9
Action: Set fee config
========================================
Dest Chain Selector: 3478487238524512106
Current On-Chain Fee Configuration:
isEnabled: true
destGasOverhead: 50000
destBytesOverhead: 32
finalityFeeUSDCents: 0
fastFinalityFeeUSDCents: 0
finalityTransferFeeBps: 25
fastFinalityTransferFeeBps: 0
Fee Configuration to Apply:
destGasOverhead: 50000
destBytesOverhead: 32
finalityFeeUSDCents: 0
fastFinalityFeeUSDCents: 150
finalityTransferFeeBps: 25
fastFinalityTransferFeeBps: 0
[Step 1] Applying fee config for lane to Arbitrum Sepolia
โ
Fee config applied successfully!
========================================
โ
Operation Complete!
========================================
Token Pool: 0x147D4625b71f58D7CFA54BB705DC7741B94e0CE9
Token Pool: https://sepolia.etherscan.io/address/0x147D4625b71f58D7CFA54BB705DC7741B94e0CE9
========================================
Repeat for the reverse lane (Arbitrum Sepolia โ Ethereum Sepolia)
Repeat the same two steps on the Arbitrum Sepolia token pool by switching the RPC URL and destination chain.
Step 1:
DEST_CHAIN=ETHEREUM_SEPOLIA \
DEST_GAS_OVERHEAD=50000 \
DEST_BYTES_OVERHEAD=32 \
FINALITY_FEE_USD_CENTS=0 \
FINALITY_TRANSFER_FEE_BPS=25 \
FAST_FINALITY_FEE_USD_CENTS=0 \
FAST_FINALITY_TRANSFER_FEE_BPS=0 \
forge script \
script/configure/fee-config/UpdateTokenTransferFeeConfig.s.sol \
--rpc-url $ETHEREUM_TESTNET_SEPOLIA_ARBITRUM_1_RPC_URL \
--account $KEYSTORE_NAME \
--broadcast
Step 2:
DEST_CHAIN=ETHEREUM_SEPOLIA \
FAST_FINALITY_FEE_USD_CENTS=150 \
forge script \
script/configure/fee-config/UpdateTokenTransferFeeConfig.s.sol \
--rpc-url $ETHEREUM_TESTNET_SEPOLIA_ARBITRUM_1_RPC_URL \
--account $KEYSTORE_NAME \
--broadcast
Both steps should complete successfully and print the token pool address and transaction hash for the update.
4 Verify the Updated Fee Configuration
Re-run GetTokenTransferFeeConfig.s.sol to confirm the final (Step 2) configuration for the Ethereum Sepolia โ Arbitrum Sepolia lane.
- Verify the Ethereum Sepolia pool for the lane to Arbitrum Sepolia:
DEST_CHAIN=ETHEREUM_TESTNET_SEPOLIA_ARBITRUM_1 \
forge script \
script/configure/fee-config/GetTokenTransferFeeConfig.s.sol \
--rpc-url $ETHEREUM_SEPOLIA_RPC_URL
Your output should look something like this:
========================================
๐ฐ Get Token Transfer Fee Config
========================================
Chain: Ethereum Sepolia
Remote Chain: Arbitrum Sepolia
Token Pool: 0x147D4625b71f58D7CFA54BB705DC7741B94e0CE9
Action: View fee config
========================================
Dest Chain Selector: 3478487238524512106
Fee Configuration:
isEnabled: true
destGasOverhead: 50000
destBytesOverhead: 32
finalityFeeUSDCents: 0
fastFinalityFeeUSDCents: 150
finalityTransferFeeBps: 25
fastFinalityTransferFeeBps: 0
========================================
Token Pool: https://sepolia.etherscan.io/address/0x147D4625b71f58D7CFA54BB705DC7741B94e0CE9
========================================
- Repeat for the reverse lane (Arbitrum Sepolia โ Ethereum Sepolia):
DEST_CHAIN=ETHEREUM_SEPOLIA \
forge script \
script/configure/fee-config/GetTokenTransferFeeConfig.s.sol \
--rpc-url $ETHEREUM_TESTNET_SEPOLIA_ARBITRUM_1_RPC_URL
Success criteria:
- Ethereum Sepolia โ Arbitrum Sepolia shows
isEnabled: true. - Ethereum Sepolia โ Arbitrum Sepolia shows
destGasOverhead: 50000. - Ethereum Sepolia โ Arbitrum Sepolia shows
destBytesOverhead: 32. - Ethereum Sepolia โ Arbitrum Sepolia shows
finalityFeeUSDCents: 0andfinalityTransferFeeBps: 25. - Ethereum Sepolia โ Arbitrum Sepolia shows
fastFinalityFeeUSDCents: 150andfastFinalityTransferFeeBps: 0. - The reverse lane should show the same values after you repeat the two-step update.
5 Send Transfers That Use the Fee Config
This section demonstrates Ethereum Sepolia โ Arbitrum Sepolia cross-chain transfers. Repeat the same pattern from Arbitrum Sepolia if you want the Arbitrum Sepolia source pool to accrue fees.
Before sending, inspect the source pool balances for LINK and the source token:
FEE_TOKENS="$ETHEREUM_SEPOLIA_LINK,$ETHEREUM_SEPOLIA_TOKEN" \
forge script \
script/operations/GetFeeTokenBalances.s.sol \
--rpc-url $ETHEREUM_SEPOLIA_RPC_URL
Your output should look something like this:
========================================
๐ Get Fee Token Balances
========================================
Chain: Ethereum Sepolia
Token Pool: 0x147D4625b71f58D7CFA54BB705DC7741B94e0CE9
Action: Inspect fee token balances
========================================
Pool Token: 0xD73D06d36cEa36817186779fF877e418Ab759F09 (for reference)
Fee Token Balances:
[0] 0x779877A7B0D9E8603169DdbD7836e478b4624789 โ balance: 0 โ ๏ธ (skipping)
[1] 0xD73D06d36cEa36817186779fF877e418Ab759F09 โ balance: 0 โ ๏ธ (skipping)
โน๏ธ No fee tokens have a non-zero balance in the pool. Nothing to withdraw.
- Send a default-finality transfer and pay CCIP fees in LINK:
ccip-cli send \
--source ethereum-testnet-sepolia \
--router $ETHEREUM_SEPOLIA_ROUTER \
--dest ethereum-testnet-sepolia-arbitrum-1 \
--transfer-tokens $ETHEREUM_SEPOLIA_TOKEN=1.23 \
--receiver 0xYourReceiverAddress \
--fee-token LINK \
--wallet foundry:$KEYSTORE_NAME \
--rpc "$ETHEREUM_SEPOLIA_RPC_URL" \
--rpc "$ETHEREUM_TESTNET_SEPOLIA_ARBITRUM_1_RPC_URL"
Your output should look something like this:
Fee: 119317588427515265n = 0.119317588427515265 LINK
Request (source):
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ (index) โ Values โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
โ fee โ '0.119317588427515265 LINK' โ
โ tokens โ '1.226925 BnM-T' โ
โ tokenAmountBeforeTokenPoolFees โ 1230000000000000000n โ
โ receipts[1].issuer โ '0x147D4625b71f58D7CFA54BB705DC7741B94e0CE9' โ
โ receipts[1].feeTokenAmount โ 93786750729051300n โ
โ finality โ 'finalized' โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
This send uses finalityTransferFeeBps (25 bps). In this demo, finalityFeeUSDCents is 0.
- Send a fast-finality transfer with block-depth finality and pay CCIP fees in LINK:
ccip-cli send \
--source ethereum-testnet-sepolia \
--router $ETHEREUM_SEPOLIA_ROUTER \
--dest ethereum-testnet-sepolia-arbitrum-1 \
--transfer-tokens $ETHEREUM_SEPOLIA_TOKEN=1.23 \
--receiver 0xYourReceiverAddress \
--fee-token LINK \
--extra finality=32 \
--wallet foundry:$KEYSTORE_NAME \
--rpc "$ETHEREUM_SEPOLIA_RPC_URL" \
--rpc "$ETHEREUM_TESTNET_SEPOLIA_ARBITRUM_1_RPC_URL"
Your output should look something like this:
Request (source):
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ (index) โ Values โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
โ tokenAmountBeforeTokenPoolFees โ 1230000000000000000n โ
โ tokens โ '1.23 BnM-T' โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
This send uses fastFinalityFeeUSDCents (150). In this demo, fastFinalityTransferFeeBps is 0.
How to read fees from the ccip-cli output
- The top-level
fee: <X> LINKis the total fee paid by the sender. It is not necessarily the amount credited to the token pool. - For the fee-token amount credited to the pool, find the receipt where
receipts[i].issuerequals the source token pool address. The correspondingreceipts[i].feeTokenAmountis denominated in the fee token (LINK) in wei. - For basis points deductions, compare
tokenAmountBeforeTokenPoolFeeswith thetokensfield. Their difference is the token amount retained by the source pool.
6 Inspect and Withdraw Accrued Fees
After the transfers complete, inspect the source pool balances again:
FEE_TOKENS="$ETHEREUM_SEPOLIA_LINK,$ETHEREUM_SEPOLIA_TOKEN" \
forge script \
script/operations/GetFeeTokenBalances.s.sol \
--rpc-url $ETHEREUM_SEPOLIA_RPC_URL
Your output should look something like this:
========================================
๐ Get Fee Token Balances
========================================
Chain: Ethereum Sepolia
Token Pool: 0x147D4625b71f58D7CFA54BB705DC7741B94e0CE9
Action: Inspect fee token balances
========================================
Pool Token: 0xD73D06d36cEa36817186779fF877e418Ab759F09 (for reference)
Fee Token Balances:
[0] 0x779877A7B0D9E8603169DdbD7836e478b4624789 โ balance: <LINK_BALANCE_WEI>
[1] 0xD73D06d36cEa36817186779fF877e418Ab759F09 โ balance: 3075000000000000
โ
2 token(s) with non-zero balances are ready for withdrawal.
Expected balances:
- Source token (bps fee): The default-finality send uses
finalityTransferFeeBps = 25. With a1.23token transfer:- Retained by the pool: (1.23 \times 25 / 10000 = 0.003075) tokens
- Verify in
ccip-clioutput:tokenAmountBeforeTokenPoolFees (1.23)-tokens received (1.226925)=0.003075
- LINK (fee token credited to the pool): The fee-token amount credited to the token pool is visible in the send output receipt where
receipts[i].issuerequals the source token pool address. Sumreceipts[i].feeTokenAmountacross the default-finality and fast-finality sends, then convert from wei to LINK by dividing by (10^18). Confirm it matchesgetFeeTokenBalancesfor LINK.
Set a value for the FEE_ADMIN_KEYSTORE_NAME variable inside your .env, using the instructions covered inside Set Up Your Development Environment.
Use WithdrawFeeTokens.s.sol to withdraw accrued fee balances to a recipient. Withdraw as the configured fee admin:
RECIPIENT=0xYourRecipientAddress \
FEE_TOKENS="$ETHEREUM_SEPOLIA_LINK,$ETHEREUM_SEPOLIA_TOKEN" \
forge script \
script/operations/WithdrawFeeTokens.s.sol \
--rpc-url $ETHEREUM_SEPOLIA_RPC_URL \
--account $FEE_ADMIN_KEYSTORE_NAME \
--broadcast
Your output should look something like this:
========================================
๐ธ Withdraw Fee Tokens
========================================
Chain: Ethereum Sepolia
Token Pool: 0x147D4625b71f58D7CFA54BB705DC7741B94e0CE9
Action: Withdraw fee tokens
========================================
Pool Token: 0xD73D06d36cEa36817186779fF877e418Ab759F09 (for reference)
Tokens to Withdraw:
[0] 0x779877A7B0D9E8603169DdbD7836e478b4624789 โ balance: <LINK_BALANCE_WEI>
[1] 0xD73D06d36cEa36817186779fF877e418Ab759F09 โ balance: 3075000000000000
[Step 1] Withdrawing fee tokens on Ethereum Sepolia
Recipient: 0x368b6c4218Cd5B8feF04eFDb207Bd52f0566c411
โ
Fee tokens withdrawn successfully!
========================================
โ
Withdrawal complete on Ethereum Sepolia!
========================================
Token Pool: 0x147D4625b71f58D7CFA54BB705DC7741B94e0CE9
Recipient: 0x368b6c4218Cd5B8feF04eFDb207Bd52f0566c411
Recipient: https://sepolia.etherscan.io/address/0x368b6c4218Cd5B8feF04eFDb207Bd52f0566c411
========================================
Or withdraw as the pool owner:
RECIPIENT=0xYourRecipientAddress \
FEE_TOKENS="$ETHEREUM_SEPOLIA_LINK,$ETHEREUM_SEPOLIA_TOKEN" \
forge script \
script/operations/WithdrawFeeTokens.s.sol \
--rpc-url $ETHEREUM_SEPOLIA_RPC_URL \
--account $KEYSTORE_NAME \
--broadcast
Your output should look something like this:
========================================
๐ธ Withdraw Fee Tokens
========================================
Chain: Ethereum Sepolia
Token Pool: 0x147D4625b71f58D7CFA54BB705DC7741B94e0CE9
Action: Withdraw fee tokens
========================================
Pool Token: 0xD73D06d36cEa36817186779fF877e418Ab759F09 (for reference)
Tokens to Withdraw:
[0] 0x779877A7B0D9E8603169DdbD7836e478b4624789 โ balance: <LINK_BALANCE_WEI>
[1] 0xD73D06d36cEa36817186779fF877e418Ab759F09 โ balance: 3075000000000000
[Step 1] Withdrawing fee tokens on Ethereum Sepolia
Recipient: 0x368b6c4218Cd5B8feF04eFDb207Bd52f0566c411
โ
Fee tokens withdrawn successfully!
========================================
โ
Withdrawal complete on Ethereum Sepolia!
========================================
Token Pool: 0x147D4625b71f58D7CFA54BB705DC7741B94e0CE9
Recipient: 0x368b6c4218Cd5B8feF04eFDb207Bd52f0566c411
Recipient: https://sepolia.etherscan.io/address/0x368b6c4218Cd5B8feF04eFDb207Bd52f0566c411
========================================
Verify the balances after withdrawal:
FEE_TOKENS="$ETHEREUM_SEPOLIA_LINK,$ETHEREUM_SEPOLIA_TOKEN" \
forge script \
script/operations/GetFeeTokenBalances.s.sol \
--rpc-url $ETHEREUM_SEPOLIA_RPC_URL
Your output should look something like this:
========================================
๐ Get Fee Token Balances
========================================
Chain: Ethereum Sepolia
Token Pool: 0x147D4625b71f58D7CFA54BB705DC7741B94e0CE9
Action: Inspect fee token balances
========================================
Pool Token: 0xD73D06d36cEa36817186779fF877e418Ab759F09 (for reference)
Fee Token Balances:
[0] 0x779877A7B0D9E8603169DdbD7836e478b4624789 โ balance: 0 โ ๏ธ (skipping)
[1] 0xD73D06d36cEa36817186779fF877e418Ab759F09 โ balance: 0 โ ๏ธ (skipping)
โน๏ธ No fee tokens have a non-zero balance in the pool. Nothing to withdraw.
========================================
7 Disable the Fee Configuration
Disabling a lane deletes the pool-level override and makes the OnRamp use FeeQuoter defaults for that lane. Disabling does not withdraw already accrued fee balances.
- Disable the Ethereum Sepolia โ Arbitrum Sepolia fee config:
DEST_CHAIN=ETHEREUM_TESTNET_SEPOLIA_ARBITRUM_1 \
DISABLE=true \
forge script \
script/configure/fee-config/UpdateTokenTransferFeeConfig.s.sol \
--rpc-url $ETHEREUM_SEPOLIA_RPC_URL \
--account $KEYSTORE_NAME \
--broadcast
Your output should look something like this:
========================================
๐ฐ Update Token Transfer Fee Config
========================================
Chain: Ethereum Sepolia
Remote Chain: Arbitrum Sepolia
Token Pool: 0x147D4625b71f58D7CFA54BB705DC7741B94e0CE9
Action: Disable fee config
========================================
Dest Chain Selector: 3478487238524512106
[Step 1] Disabling fee config for lane to Arbitrum Sepolia
โ
Fee config disabled for this lane.
The OnRamp will now use FeeQuoter defaults for this destination.
========================================
โ
Operation Complete!
========================================
Token Pool: 0x147D4625b71f58D7CFA54BB705DC7741B94e0CE9
Token Pool: https://sepolia.etherscan.io/address/0x147D4625b71f58D7CFA54BB705DC7741B94e0CE9
========================================
- Verify the Ethereum Sepolia โ Arbitrum Sepolia fee config is disabled:
DEST_CHAIN=ETHEREUM_TESTNET_SEPOLIA_ARBITRUM_1 \
forge script \
script/configure/fee-config/GetTokenTransferFeeConfig.s.sol \
--rpc-url $ETHEREUM_SEPOLIA_RPC_URL
Your output should look something like this:
========================================
๐ฐ Get Token Transfer Fee Config
========================================
Chain: Ethereum Sepolia
Remote Chain: Arbitrum Sepolia
Token Pool: 0x147D4625b71f58D7CFA54BB705DC7741B94e0CE9
Action: View fee config
========================================
Dest Chain Selector: 3478487238524512106
Fee Configuration:
isEnabled: false
destGasOverhead: 0
destBytesOverhead: 0
finalityFeeUSDCents: 0
fastFinalityFeeUSDCents: 0
finalityTransferFeeBps: 0
fastFinalityTransferFeeBps: 0
โ ๏ธ Fee config is disabled for this lane.
The OnRamp will fall back to FeeQuoter defaults for this destination.
========================================
Token Pool: https://sepolia.etherscan.io/address/0x147D4625b71f58D7CFA54BB705DC7741B94e0CE9
========================================
- Disable the Arbitrum Sepolia โ Ethereum Sepolia fee config:
DEST_CHAIN=ETHEREUM_SEPOLIA \
DISABLE=true \
forge script \
script/configure/fee-config/UpdateTokenTransferFeeConfig.s.sol \
--rpc-url $ETHEREUM_TESTNET_SEPOLIA_ARBITRUM_1_RPC_URL \
--account $KEYSTORE_NAME \
--broadcast
Your output should look something like this:
========================================
๐ฐ Update Token Transfer Fee Config
========================================
Chain: Arbitrum Sepolia
Remote Chain: Ethereum Sepolia
Token Pool: 0x7D2f4A6c8E1b3D5a9F0c2E4b6A8d1C3e5F7a9B2d
Action: Disable fee config
========================================
Dest Chain Selector: 16015286601757825753
[Step 1] Disabling fee config for lane to Ethereum Sepolia
โ
Fee config disabled for this lane.
The OnRamp will now use FeeQuoter defaults for this destination.
========================================
โ
Operation Complete!
========================================
Token Pool: 0x7D2f4A6c8E1b3D5a9F0c2E4b6A8d1C3e5F7a9B2d
Token Pool: https://sepolia.arbiscan.io/address/0x7D2f4A6c8E1b3D5a9F0c2E4b6A8d1C3e5F7a9B2d
========================================
- Verify the Arbitrum Sepolia โ Ethereum Sepolia fee config is disabled:
DEST_CHAIN=ETHEREUM_SEPOLIA \
forge script \
script/configure/fee-config/GetTokenTransferFeeConfig.s.sol \
--rpc-url $ETHEREUM_TESTNET_SEPOLIA_ARBITRUM_1_RPC_URL
Your output should look something like this:
========================================
๐ฐ Get Token Transfer Fee Config
========================================
Chain: Arbitrum Sepolia
Remote Chain: Ethereum Sepolia
Token Pool: 0x7D2f4A6c8E1b3D5a9F0c2E4b6A8d1C3e5F7a9B2d
Action: View fee config
========================================
Dest Chain Selector: 16015286601757825753
Fee Configuration:
isEnabled: false
destGasOverhead: 0
destBytesOverhead: 0
finalityFeeUSDCents: 0
fastFinalityFeeUSDCents: 0
finalityTransferFeeBps: 0
fastFinalityTransferFeeBps: 0
โ ๏ธ Fee config is disabled for this lane.
The OnRamp will fall back to FeeQuoter defaults for this destination.
========================================
Token Pool: https://sepolia.arbiscan.io/address/0x7D2f4A6c8E1b3D5a9F0c2E4b6A8d1C3e5F7a9B2d
========================================