Wait for transfer tx receipts when configuring Optimism (#323)

Former-commit-id: c99fc0941a
This commit is contained in:
prathamesh0 2023-04-13 12:43:41 +05:30 committed by GitHub
parent 13499c6e4b
commit 3e80f5f238

View File

@ -16,7 +16,11 @@ task('send-balance', 'Sends Ether to a specified Ethereum account')
to,
value: ethers.utils.parseEther(amount),
})
const txReceipt = await tx.wait()
console.log(`Balance sent to: ${to}, from: ${wallet.address}`)
console.log(
`Block: { number: ${txReceipt.blockNumber}, hash: ${txReceipt.blockHash} }`
)
console.log(`Transaction hash: ${tx.hash}`)
})