script to Wait till got the transaction result
// https://medium.com/metamask/calling-a-smart-contract-with-a-button-d278b1e76705 | |
async function waitForTxToBeMined (txHash) { | |
let txReceipt | |
while (!txReceipt) { | |
try { | |
txReceipt = await eth.getTransactionReceipt(txHash) | |
} catch (err) { | |
return indicateFailure(err) | |
} | |
} | |
indicateSuccess() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment