Skip to content

v0.2.5-beta

Pre-release
Pre-release
Compare
Choose a tag to compare
@andrejrakic andrejrakic released this 14 May 18:43
· 3 commits to develop since this release
b429481

chainlink local logo

v0.2.5-beta Release - 14 May 2025

This release adds beta support for Chainlink CCIP v1.6 to Chainlink Local

Changelog

Dependencies

Package Version
@chainlink/contracts-ccip 1.6.0-beta.3
@chainlink/contracts 1.4.0-beta.0

Services

  • Chainlink CCIP v1.6

Added

  • Added support for Chainlink CCIP v1.6

Testing the release

To test this release install @chainlink-local using the following commands:

Foundry (git)

forge install smartcontractkit/chainlink-local@v0.2.5-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.5-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.5-beta/src/ccip/CCIPLocalSimulator.sol";

Full Changelog: v0.2.4...v0.2.5-beta