From ee3b2309ad3eb21b23398451883d03f6b2b89a8f Mon Sep 17 00:00:00 2001 From: "fuder.eth" <139509124+vtjl10@users.noreply.github.com> Date: Sun, 5 Jan 2025 21:20:34 +0100 Subject: [PATCH 1/2] Update README.md --- packages/hardhat/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/hardhat/README.md b/packages/hardhat/README.md index 8ef5234ac..3766e9906 100644 --- a/packages/hardhat/README.md +++ b/packages/hardhat/README.md @@ -175,6 +175,6 @@ Original work done by [@RHLSTHRM](https://twitter.com/RHLSTHRM). ## Troubleshooting Using the types generated by this plugin can lead to Hardhat failing to run. The reason is that the types are not -avialable for loading the config, and that's required to generate the types. +available for loading the config, and that's required to generate the types. To workaround this issue, you can run `TS_NODE_TRANSPILE_ONLY=1 npx hardhat compile`. From 598e1436557b38035b1097473551be75d95ff322 Mon Sep 17 00:00:00 2001 From: "fuder.eth" <139509124+vtjl10@users.noreply.github.com> Date: Sun, 5 Jan 2025 21:21:45 +0100 Subject: [PATCH 2/2] Update DataTypesView.test.ts --- packages/target-truffle-v5-test/test/DataTypesView.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/target-truffle-v5-test/test/DataTypesView.test.ts b/packages/target-truffle-v5-test/test/DataTypesView.test.ts index 883fbc736..db0ceaf4c 100644 --- a/packages/target-truffle-v5-test/test/DataTypesView.test.ts +++ b/packages/target-truffle-v5-test/test/DataTypesView.test.ts @@ -34,7 +34,7 @@ contract('DataTypesView', ([deployer]) => { typedAssert(await c.view_tuple(), { 0: new BigNumber('1'), 1: new BigNumber('2') }) - // structs doesnt work: could be because of solidty 0.4.x but we are stuck at it + // structs doesn't work: could be because of solidity 0.4.x but we are stuck at it // typedAssert(await c.view_struct(), { // uint256_0: new BigNumber('1'), // uint256_1: new BigNumber('2'),