所以我想检查在执行完成后运行在hardhat localnet上的本地事务。比如使用事务散列并稍后检查事务细节。有什么好办法吗?或者这是可能的吗?
我需要用巧克力酱吗?或者hardhat node
的硬帽本地节点足够了吗?
您可以通过检查收据进行任何分析:
const tx = await ....;
const txRexiept = await tx.wait(1);
console.log("the transaction details are");
console.log(txReciept);