Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update version 2 #234

Merged
merged 2 commits into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/hre-extender-v1/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@tenderly/hardhat-tenderly",
"name": "@tenderly/hre-extender-v1",
"author": "Tenderly",
"private": false,
"private": true,
"license": "MIT",
"homepage": "https://tenderly.co",
"description": "Package for overloading some of the HardhatRuntimeEnvironment components",
Expand Down
13 changes: 12 additions & 1 deletion packages/hre-extender-v2/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,21 @@
# @tenderly/hardhat-tenderly

## 2.4.0

### Minor Changes

Removed the need to call `tdly.setup()` function in `hardhat.config.ts` file.
From now, it’s enough to call `import "@tenderly/hardhat-tenderly";` after importing `hardhat-ethers` and `hardhat-upgrades`.

Modified `examples/` to not use the `tdly.setup()` function.

Fixed the error that has been showing during populating the networks step.

## 2.3.2

### Patch Changes

[#225](https://github.com/Tenderly/hardhat-tenderly/pull/225) [`5cc3346825ad3f7d48eabe069a6c61835b26e3b7`](https://github.com/Tenderly/hardhat-tenderly/commit/5cc3346825ad3f7d48eabe069a6c61835b26e3b7) Thanks [@dule-git](https://github.com/dule-git)!
[#225](https://github.com/Tenderly/hardhat-tenderly/pull/225) [`5cc3346825ad3f7d48eabe069a6c61835b26e3b7`](https://github.com/Tenderly/hardhat-tenderly/commit/5cc3346825ad3f7d48eabe069a6c61835b26e3b7) Thanks [@dule-git](https://github.com/dule-git)!

Added error messages if `ethers` and `hardhat-tenderly` versions are not compatible for each other
(`ethersv5` and `@tenderly/hardhat-tenderly@^2.0.0`, or `ethersv6` and `@tenderly/hardhat-tenderly@^1.0.0`.
Expand Down
6 changes: 3 additions & 3 deletions packages/hre-extender-v2/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "@tenderly/hre-extender-v2",
"name": "@tenderly/hardhat-tenderly",
"author": "Tenderly",
"private": true,
"private": false,
"license": "MIT",
"homepage": "https://tenderly.co",
"description": "Package for overloading some of the HardhatRuntimeEnvironment components",
"version": "2.3.2",
"version": "2.4.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
Expand Down