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?
I tried to call the SendMessage function.