Franco Victorio

Results 565 comments of Franco Victorio

@lekevicius I know it's hard to see how this is a breaking change, but assume you are a plugin author that uses the `paths.sources` somehow. The type of this is...

Something like this should work: ```js const glob = require("glob"); const { TASK_COMPILE_SOLIDITY_GET_SOURCE_PATHS } = require("hardhat/builtin-tasks/task-names"); const path = require("path"); subtask(TASK_COMPILE_SOLIDITY_GET_SOURCE_PATHS).setAction(async (_, hre, runSuper) => { const paths = await...

Hi @islishude. This seems to be a bug in [ts-node](https://github.com/TypeStrong/ts-node), the tool we use to run typescript code without having to compile it. If you have this: ```js // index.ts...

Hey @Archethect, thanks for opening this. We are in the middle of a big refactor of the Hardhat network, but after that we want (at some point) to have some...

Can confirm. The problem is here: https://github.com/NomicFoundation/hardhat/blob/93bf28204dfabb197a5c76723450aebb73d8d401/packages/hardhat-viem/src/internal/contracts.ts#L217-L219 The code tries to obtain a default wallet client even if a public client is passed. This is fine; the problem is that...

I see. Yes, we should probably move all those fixtures to an `examples` directory outside the `test` directory, and include that in `files` instead of `test`. Low priority though.

@nebasuke agree, that's why I mentioned that we need to release new major versions of each toolbox. For Hardhat itself we can release just a minor because it only affects...

Closing this for now. Happy to re-open if we have reproduction steps.