v0.2.6-beta
Pre-release
Pre-release
·
24 commits
to develop
since this release
v0.2.6-beta Release - 11 June 2025
This release refactors CCIPLocalSimulatorFork.sol so it can route all CCIP messages sent from a loop and not just the first one.
Changelog
Dependencies
| Package | Version |
|---|---|
| @chainlink/contracts-ccip | 1.6.0 |
| @chainlink/contracts | 1.4.0 |
Services
- Chainlink CCIP v1.6
Changed
- Refactored
CCIPLocalSimulatorFork.solso it can route all CCIP messages sent
from a loop and not just the first one
Testing the release
To test this release install @chainlink-local using the following commands:
Foundry (git)
forge install smartcontractkit/chainlink-local@v0.2.6-beta
and then set remappings to: @chainlink/local/=lib/chainlink-local/ in either remappings.txt or foundry.toml file
Hardhat (npm)
npm install @chainlink/local@v0.2.6-beta
and then create the following contract and compile it:
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;
import {CCIPLocalSimulator} from "@chainlink/local/src/ccip/CCIPLocalSimulator.sol";Remix IDE
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;
import {CCIPLocalSimulator} from "https://github.com/smartcontractkit/chainlink-local/blob/v0.2.6-beta/src/ccip/CCIPLocalSimulator.sol";PRs included
- V0.2.6-beta release by @andrejrakic in #41
Full Changelog: v0.2.5...v0.2.6-beta
