Skip to content

Commit

Permalink
Version Packages (#180)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] committed Feb 6, 2024
1 parent 676045c commit 103d8c7
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
5 changes: 0 additions & 5 deletions .changeset/silly-shirts-do.md

This file was deleted.

2 changes: 1 addition & 1 deletion examples/contract-verification/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"@openzeppelin/contracts-upgradeable": "^5.0.1",
"@openzeppelin/hardhat-upgrades": "^3.0.1",
"@openzeppelin/upgrades-core": "^1.32.2",
"@tenderly/hardhat-tenderly": "^2.2.0",
"@tenderly/hardhat-tenderly": "^2.2.1",
"@typechain/ethers-v6": "^0.5.0",
"@typechain/hardhat": "^9.0.0",
"@types/chai": "^4.2.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// autogenerated by prebuild.js
export const HARDHAT_TENDERLY_VERSION = "2.2.0";
// autogenerated by version-generator.js
export const HARDHAT_TENDERLY_VERSION = "2.2.1";
2 changes: 1 addition & 1 deletion packages/tenderly-core/version-generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ const { version } = require('./../tenderly-hardhat/package.json');

fs.writeFileSync(
path.resolve(__dirname, 'src/internal/core/services/hardhat-tenderly-version.ts'),
`// autogenerated by prebuild.js\nexport const HARDHAT_TENDERLY_VERSION = "${version}";`,
`// autogenerated by version-generator.js\nexport const HARDHAT_TENDERLY_VERSION = "${version}";`,
);
6 changes: 6 additions & 0 deletions packages/tenderly-hardhat/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @tenderly/hardhat-tenderly

## 2.2.1

### Patch Changes

- [#179](https://github.com/Tenderly/hardhat-tenderly/pull/179) [`676045c3adf883c046d79af0a5d8bf34f2d9f165`](https://github.com/Tenderly/hardhat-tenderly/commit/676045c3adf883c046d79af0a5d8bf34f2d9f165) Thanks [@dule-git](https://github.com/dule-git)! - Fix empty array to verify

## 2.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion 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": "2.2.0",
"version": "2.2.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
Expand Down
5 changes: 2 additions & 3 deletions packages/tenderly-hardhat/src/tenderly/extender.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,8 @@ const extendProvider = (hre: HardhatRuntimeEnvironment): void => {
.then(async (_) => {
hre.tenderly.setNetwork(tenderlyNetwork);
const forkID = await hre.tenderly.network().getForkID();
(
hre.network.config as HttpNetworkConfig
).url = `${TENDERLY_JSON_RPC_BASE_URL}/fork/${forkID ?? ""}`;
(hre.network.config as HttpNetworkConfig).url =
`${TENDERLY_JSON_RPC_BASE_URL}/fork/${forkID ?? ""}`;
// hre.ethers.provider = new hre.ethers.BrowserProvider(hre.tenderly.network());
})
.catch((_) => {
Expand Down

0 comments on commit 103d8c7

Please sign in to comment.