I would like to transfer my token using Moralis.
However, on the confirmation screen, it says āProcessing time is unknownā, indicating that my gas fee is low.
If I manually set my gas fee higher, I can transfer the money. However, it is not user friendly.
I want to set the default value of the gas price to standard because my site keeps confirming it.
By the way, this was not the case a few weeks ago.
Iāll write the source Iām using for your reference.
ā
const options = {
type: ānativeā,
amount: Moralis.Units.ETH(this.sendFee),
receiver: 0xhoge,
};
await Moralis.transfer(options);
ā”
let txOptions = {
type: āerc1155ā,
receiver: address,
contractAddress: this.contractAddress,
tokenId: this.tokenId,
amount: 1,
};
await Moralis.transfer(txOptions);