ok
thanks I have done.
I have called by useWeb3ExecuteFunction
.
But I have another issue.
tokenInst.transfer(receiver, amounti).send({ from: fromAddress }, async function (error, result) { //get callback from function which is your transaction key
if (!error) {
alert("success")
console.log("success")
} else {
alert(error)
console.log(error);
}
});
In here I have called transfer
function.
Then I need to call send function .
how can I call ?