Hey, I was wondering if anyone knew how to get the callback receipt from MetaMask after a 1155 transfer to another account. I tried the Mint receipt that works for my minting function. However, it does not work for transfers. How should I call it back?
//Mint Receipt (WORKS)
.on("receipt", function(receipt){
alert(("Minting Done!"))
})
//Transfer Receipt ---> (DOESN'T WORK)
.on("receipt", function(receipt){
alert(("Transfer Done!"))
})