From 18c243c0ef5006c744df2c7a67131f47346604d4 Mon Sep 17 00:00:00 2001 From: chris-wozniak Date: Thu, 10 Sep 2026 21:17:44 -0400 Subject: [PATCH] fix CCT remote pool addresses --- .../ccip/foundry/cct-burn-and-mint-fork.mdx | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/content/chainlink-local/build/ccip/foundry/cct-burn-and-mint-fork.mdx b/src/content/chainlink-local/build/ccip/foundry/cct-burn-and-mint-fork.mdx index 1adf27d6485..5efeb153094 100644 --- a/src/content/chainlink-local/build/ccip/foundry/cct-burn-and-mint-fork.mdx +++ b/src/content/chainlink-local/build/ccip/foundry/cct-burn-and-mint-fork.mdx @@ -438,11 +438,11 @@ contract CCIPv1_5BurnMintPoolFork is Test { vm.startPrank(alice); TokenPool.ChainUpdate[] memory chains = new TokenPool.ChainUpdate[](1); - bytes[] memory remotePoolAddressesEthSepolia = new bytes[](1); - remotePoolAddressesEthSepolia[0] = abi.encode(address(burnMintTokenPoolEthSepolia)); + bytes[] memory remotePoolAddressesBaseSepolia = new bytes[](1); + remotePoolAddressesBaseSepolia[0] = abi.encode(address(burnMintTokenPoolBaseSepolia)); chains[0] = TokenPool.ChainUpdate({ remoteChainSelector: baseSepoliaNetworkDetails.chainSelector, - remotePoolAddresses: remotePoolAddressesEthSepolia, + remotePoolAddresses: remotePoolAddressesBaseSepolia, remoteTokenAddress: abi.encode(address(mockERC20TokenBaseSepolia)), outboundRateLimiterConfig: RateLimiter.Config({ isEnabled: true, capacity: 100_000, rate: 167 }), inboundRateLimiterConfig: RateLimiter.Config({ isEnabled: true, capacity: 100_000, rate: 167 }) @@ -466,11 +466,11 @@ contract CCIPv1_5BurnMintPoolFork is Test { vm.startPrank(alice); chains = new TokenPool.ChainUpdate[](1); - bytes[] memory remotePoolAddressesBaseSepolia = new bytes[](1); - remotePoolAddressesBaseSepolia[0] = abi.encode(address(burnMintTokenPoolEthSepolia)); + bytes[] memory remotePoolAddressesEthSepolia = new bytes[](1); + remotePoolAddressesEthSepolia[0] = abi.encode(address(burnMintTokenPoolEthSepolia)); chains[0] = TokenPool.ChainUpdate({ remoteChainSelector: ethSepoliaNetworkDetails.chainSelector, - remotePoolAddresses: remotePoolAddressesBaseSepolia, + remotePoolAddresses: remotePoolAddressesEthSepolia, remoteTokenAddress: abi.encode(address(mockERC20TokenEthSepolia)), outboundRateLimiterConfig: RateLimiter.Config({ isEnabled: true, capacity: 100_000, rate: 167 }), inboundRateLimiterConfig: RateLimiter.Config({ isEnabled: true, capacity: 100_000, rate: 167 }) @@ -742,11 +742,11 @@ contract CCIPv1_5BurnMintPoolFork is Test { vm.startPrank(alice); TokenPool.ChainUpdate[] memory chains = new TokenPool.ChainUpdate[](1); - bytes[] memory remotePoolAddressesEthSepolia = new bytes[](1); - remotePoolAddressesEthSepolia[0] = abi.encode(address(burnMintTokenPoolEthSepolia)); + bytes[] memory remotePoolAddressesBaseSepolia = new bytes[](1); + remotePoolAddressesBaseSepolia[0] = abi.encode(address(burnMintTokenPoolBaseSepolia)); chains[0] = TokenPool.ChainUpdate({ remoteChainSelector: baseSepoliaNetworkDetails.chainSelector, - remotePoolAddresses: remotePoolAddressesEthSepolia, + remotePoolAddresses: remotePoolAddressesBaseSepolia, remoteTokenAddress: abi.encode(address(mockERC20TokenBaseSepolia)), outboundRateLimiterConfig: RateLimiter.Config({ isEnabled: true, capacity: 100_000, rate: 167 }), inboundRateLimiterConfig: RateLimiter.Config({ isEnabled: true, capacity: 100_000, rate: 167 }) @@ -760,11 +760,11 @@ contract CCIPv1_5BurnMintPoolFork is Test { vm.startPrank(alice); chains = new TokenPool.ChainUpdate[](1); - bytes[] memory remotePoolAddressesBaseSepolia = new bytes[](1); - remotePoolAddressesBaseSepolia[0] = abi.encode(address(burnMintTokenPoolEthSepolia)); + bytes[] memory remotePoolAddressesEthSepolia = new bytes[](1); + remotePoolAddressesEthSepolia[0] = abi.encode(address(burnMintTokenPoolEthSepolia)); chains[0] = TokenPool.ChainUpdate({ remoteChainSelector: ethSepoliaNetworkDetails.chainSelector, - remotePoolAddresses: remotePoolAddressesBaseSepolia, + remotePoolAddresses: remotePoolAddressesEthSepolia, remoteTokenAddress: abi.encode(address(mockERC20TokenEthSepolia)), outboundRateLimiterConfig: RateLimiter.Config({ isEnabled: true, capacity: 100_000, rate: 167 }), inboundRateLimiterConfig: RateLimiter.Config({ isEnabled: true, capacity: 100_000, rate: 167 })