0

I want to open a wallet venom modal window with the transfer of a certain amount to a specific wallet address.

const send = async (args: SendInternalParams) => {
    await venomProvider.ensureInitialized();
    const { transaction } = await venomProvider.sendMessage({
      sender: args.sender,
      recipient: args.recipient,
      amount: args.amount,
      bounce: args.bounce,
    });
    return transaction;
  };

venomProvider - ProviderRpcClient

In this case venoms are sent. How to send USDT tokens from my address?

enter image description here

I tried to call the SendMessage function.

Adele
  • 1

0 Answers0