我需要从命令行使用 hardhat 运行特定的 ts 脚本,但我需要指定参数...与此类似:
npx hardhat run --network rinkeby scripts/task-executor.ts param1 param2
其中--network rinkeby
是安全帽运行的参数 和
是task -executor.ts脚本的参数。
我找不到有关此问题的任何帖子,也无法使其正常工作。param1
param2
我还尝试定义一个安全帽任务并添加了这些参数,但如果我尝试执行它,我会得到:
Error HH9: Error while loading Hardhat's configuration.
You probably tried to import the "hardhat" module from your config or a file imported from it.
This is not possible, as Hardhat can't be initialized while its config is being defined.
因为我需要在该特定任务中导入hre
或ethers
从中导入。hardhat
有人知道如何完成我需要的吗?
非常感谢!!