Feedback
I use v6 for develop and practice a contract deployment
const client = await protocolKit.getSafeProvider().getExternalSigner()
const transactionHash = await client.sendTransaction({
to: deploymentTransaction.to,
value: BigInt(deploymentTransaction.value),
data: deploymentTransaction.data as `0x${string}`,
chain: sepolia
})
const transactionReceipt = await client.waitForTransactionReceipt({
hash: transactionHash
})
client do not have waitForTransactionReceipt method to call
How can this issue be resolved?
I have not idea about what i can do to get the receipt hash for ensuring contract deploying status
Are you interested in working on this?