v0.2.1-beta
Pre-release
Pre-release
v0.2.1-beta Release
This release fixes bugs from the v0.2.0-beta release that added support for Chainlink Data Feeds to Chainlink Local.
Documentation for this release is available at:
- https://cll-devrel.gitbook.io/chainlink-local-documentation/api-reference/mockv3aggregator.sol-api
- https://cll-devrel.gitbook.io/chainlink-local-documentation/api-reference/mockoffchainaggregator.sol-api
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:
pragma solidity ^0.8.0;
import {MockV3Aggregator} from "@chainlink/local/src/data-feeds/MockV3Aggregator.sol";
Remix IDE
pragma solidity ^0.8.0;
import {MockV3Aggregator} from "https://github.com/smartcontractkit/chainlink-local/blob/v0.2.1-beta/src/data-feeds/MockV3Aggregator.sol";
Full Changelog: v0.2.0-beta...v0.2.1-beta