Hello, I need some help to transfer of a specific token “ULTBNB” (BSC) using “BEP2” to the receiver. The code I have used so far:
const options = {
type: “native”,
amount: Moralis.Units.Token(parseInt(ceilPrice), “0”),
receiver: user.get(“bscAddress”),
contractAddress: contract, // Contract of ULTBNB TOKEN I WANT TO SEND
awaitReceipt: true
}
let resultTransfer = await Moralis.transfer(options);
MetaMask shows a BNB Transfer only, I want it to send the token I have provided “ULTBNB” in my case.
In short: How can I send a specific TOKEN like “ULTBNB”, “FlashX Ultra” ON BEP2.