Skip to content

v0.2.4-beta.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@andrejrakic andrejrakic released this 23 Feb 22:58
· 2 commits to develop since this release
649b3b9

chainlink local logo

v0.2.4-beta.0 Release - 23 February 2025

This release includes couple of minor fixes found during the testing of Data Streams integration.

Changelog

Dependencies

Package Version
@chainlink/contracts-ccip 1.5.1-beta.0
@chainlink/contracts 1.3.0

Services

  • Chainlink CCIP
  • Chainlink CCIP v1.5
  • Chainlink Data Feeds
  • Chainlink Data Streams
  • Chainlink Automation
  • Chainlink VRF 2
  • Chainlink VRF 2.5

Added

  • Instructions to install Chainlink Local using Soldeer

Changed

  • Bumped @chainlink/contracts to 1.3.0 version
  • Started returning raw Report structs from generateReportV2,
    generateReportV3 andgenerateReportV4 functions alongside the
    signedReport bytes blob which is already returned

Testing the release

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

Foundry (git)

forge install smartcontractkit/[email protected]

and then set remappings to: @chainlink/local/=lib/chainlink-local/ in either remappings.txt or foundry.toml file

Hardhat (npm)

npm install @chainlink/[email protected]

and then create the following contract and compile it:

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;

import {DataStreamsLocalSimulator} from "@chainlink/local/src/data-streams/DataStreamsLocalSimulator.sol";

Remix IDE

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;

import {DataStreamsLocalSimulator} from "https://github.com/smartcontractkit/chainlink-local/blob/v0.2.4-beta.0/src/data-streams/DataStreamsLocalSimulator.sol";

PRs included

New Contributors

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