Skip to content

Commit

Permalink
Update version to resolve incorrect peer dependency (#209)
Browse files Browse the repository at this point in the history
* update version to resolve incorrect peer dependency

* update versions

* update typescript version and move hardhat-ignition-deploy task to hre-extender-v2

* switch @tenderly/harhdat-tenderly to relase hre-extender-v2
  • Loading branch information
dule-git authored Sep 23, 2024
1 parent c343c67 commit dddba13
Show file tree
Hide file tree
Showing 9 changed files with 183 additions and 84 deletions.
3 changes: 2 additions & 1 deletion examples/contract-verification/ethers-v6/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"eslint": "eslint 'scripts/**/*.ts'",
"prettier": "prettier \"**/*.{js,md,json}\"",
"build": "tsc -b",
"clean": "rm -rf node_modules && rm -rf dist",
"public:greeter:automatic": "TENDERLY_PRIVATE_VERIFICATION=false TENDERLY_AUTOMATIC_VERIFICATION=true npx hardhat run scripts/greeter/automatic.ts",
"public:greeter:manual-simple": "TENDERLY_PRIVATE_VERIFICATION=false TENDERLY_AUTOMATIC_VERIFICATION=false npx hardhat run scripts/greeter/manual-simple.ts",
"public:greeter:manual-advanced": "TENDERLY_PRIVATE_VERIFICATION=false TENDERLY_AUTOMATIC_VERIFICATION=false npx hardhat run scripts/greeter/manual-advanced.ts",
Expand Down Expand Up @@ -44,7 +45,7 @@
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
"typescript": "^5.6.2"
},
"dependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/hre-extender-v1/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@tenderly/hardhat-tenderly",
"name": "@tenderly/hre-extender-v1",
"author": "Tenderly",
"private": true,
"license": "MIT",
"homepage": "https://tenderly.co",
"description": "Package for overloading some of the HardhatRuntimeEnvironment components",
Expand Down Expand Up @@ -33,7 +34,6 @@
"prepublishOnly": "yarn run build"
},
"dependencies": {
"hardhat": "^2.22.10",
"@ethersproject/bignumber": "^5.7.0",
"ethers": "^5.7.2",
"@nomiclabs/hardhat-ethers": "^2.1.1",
Expand Down
9 changes: 5 additions & 4 deletions packages/hre-extender-v2/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@tenderly/hre-extender-v2",
"name": "@tenderly/hardhat-tenderly",
"author": "Tenderly",
"private": false,
"license": "MIT",
"homepage": "https://tenderly.co",
"description": "Package for overloading some of the HardhatRuntimeEnvironment components",
Expand Down Expand Up @@ -34,14 +35,14 @@
},
"devDependencies": {},
"dependencies": {
"hardhat": "^2.22.10",
"@ethersproject/bignumber": "^5.7.0",
"@nomicfoundation/hardhat-ignition": "^0.15.5",
"@nomicfoundation/hardhat-verify": "^2.0.8",
"@openzeppelin/hardhat-upgrades": "^3.0.1",
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@openzeppelin/hardhat-upgrades": "^3.3.0",
"@openzeppelin/upgrades-core": "^1.32.2",
"ethers": "^6.8.1",
"dotenv": "^16.4.5",
"@nomicfoundation/hardhat-ignition": "^0.15.5",
"@tenderly/hardhat-integration": "^1.0.0"
}
}
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import {scope} from "hardhat/config";
import {logger} from "../utils/logger";
import {logger} from "../logger";
import path from "path";
import {HardhatPluginError} from "hardhat/plugins";
import {PLUGIN_NAME} from "../constants";
import {PLUGIN_NAME} from "@tenderly/hardhat-integration/dist/constants";
import {getVerificationInformation, IgnitionError} from "@nomicfoundation/ignition-core";
import {ChainConfig} from "@nomicfoundation/hardhat-verify/types";

Expand Down
6 changes: 3 additions & 3 deletions packages/tenderly-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"license": "MIT",
"homepage": "https://tenderly.co",
"description": "",
"version": "0.9.1",
"version": "1.0.0",
"main": "internal/lib/tenderly-lib.js",
"types": "internal/lib/tenderly-lib.d.ts",
"repository": {
Expand Down Expand Up @@ -44,8 +44,8 @@
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.2",
"hardhat": "^2.19.0",
"typescript": "^5.6.2",
"hardhat": "^2.22.11",
"@nomicfoundation/hardhat-ethers": "^3.0.4"
},
"dependencies": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// autogenerated by version-generator.js
export const HARDHAT_TENDERLY_VERSION = "0.0.0";
export const HARDHAT_TENDERLY_VERSION = "1.0.0";
3 changes: 1 addition & 2 deletions packages/tenderly-hardhat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"license": "MIT",
"homepage": "https://tenderly.co",
"description": "Hardhat plugin for integration with Tenderly",
"version": "0.0.0",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
Expand Down Expand Up @@ -42,7 +42,6 @@
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"hardhat": "^2.22.6",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^5.5.4"
Expand Down
1 change: 0 additions & 1 deletion packages/tenderly-hardhat/src/tasks/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
export * from "./push";
export * from "./verify";
export * from "./ignition-deploy-task";
Loading

0 comments on commit dddba13

Please sign in to comment.