I'm having trouble sending tokens to many addresses simultaneously. So I have to make one tx for each recipient, it take a lot of time and i have to wait for next transaction.
Can someone help me how to do this?
web3.eth.requestAccounts().then(function(accounts){
var acc = accounts[0];
Contract.methods.transfer(recipient, amt).send(
{from: acc, gas: 54151 }
).then(function(tx){
if(tx){ console.log(tx);
}
});
});