Skip to content

Commit

Permalink
chore: update dep versions to match other v-next packages
Browse files Browse the repository at this point in the history
  • Loading branch information
kanej committed Feb 6, 2025
1 parent d6150c4 commit 85c3b17
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 206 deletions.
209 changes: 15 additions & 194 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 7 additions & 8 deletions v-next/hardhat-ignition/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,10 @@
"@types/node": "^20.14.9",
"@types/prompts": "^2.4.2",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/experimental-utils": "^5.62.0",
"@typescript-eslint/parser": "^5.57.1",
"chai": "^4.3.4",
"chai-as-promised": "7.1.1",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"chai": "^5.1.2",
"chai-as-promised": "^8.0.0",
"cross-env": "7.0.3",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
Expand All @@ -75,10 +74,10 @@
"prettier": "3.2.5",
"rimraf": "^5.0.5",
"sinon": "^14.0.0",
"ts-node": "10.9.1",
"ts-node": "10.9.2",
"typescript": "~5.5.0",
"typescript-eslint": "7.7.1",
"viem": "^2.7.6"
"viem": "^2.21.42"
},
"peerDependencies": {
"@ignored/hardhat-vnext": "workspace:^3.0.0-next.16"
Expand All @@ -88,7 +87,7 @@
"@ignored/hardhat-vnext-ignition-core": "workspace:^",
"@ignored/hardhat-vnext-ignition-ui": "workspace:^",
"@ignored/hardhat-vnext-utils": "workspace:^3.0.0-next.15",
"chalk": "^4.0.0",
"chalk": "^5.3.0",
"debug": "^4.3.2",
"prompts": "^2.4.2",
"json5": "^2.2.3"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,6 @@ describe("execution - rerun with replaced confirmed user transaction", () => {

// the user deployed contract is working as well
const userDeployed = await deployPromise;
assert(userDeployed);
assert(userDeployed.startsWith("0x"));
});
});
4 changes: 2 additions & 2 deletions v-next/hardhat-ignition/test/module-api/calls.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ describe.skip("calls", () => {
const captureSuceeded =
await result.captureArraysContract.read.arraysCaptured();

assert(captureSuceeded);
assert(captureSuceeded === true);
});

it("should be able to call contracts with arrays nested in objects args", async function () {
Expand All @@ -79,7 +79,7 @@ describe.skip("calls", () => {
const captureSuceeded =
await result.captureComplexObjectContract.read.complexArgCaptured();

assert(captureSuceeded);
assert(captureSuceeded === true);
});

it("should be able to make calls in order", async function () {
Expand Down
Loading

0 comments on commit 85c3b17

Please sign in to comment.