We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I create smart contract call as per following: import { useWriteContract } from "wagmi";
const { writeContractAsync } = useWriteContract();
const data = await writeContractAsync({ address: '0x55d398326f99059fF775485246999027B3197955', // USDT Contract Address functionName: 'transfer', abi: abis, args: [ toAddress, txAmount , ], })
Tested on trustwallet mobile
result photo
when clicked confirm, it send correct USDT amount. Please help figure out how to make the wallet show USDT instead of BNB
The text was updated successfully, but these errors were encountered:
CR-529 Smart Contract Call only show fees (BNB) Not actual transfer amount (USDT-BEP20)
Sorry, something went wrong.
No branches or pull requests
I create smart contract call as per following:
import { useWriteContract } from "wagmi";
const { writeContractAsync } = useWriteContract();
const data = await writeContractAsync({
address: '0x55d398326f99059fF775485246999027B3197955', // USDT Contract Address
functionName: 'transfer',
abi: abis,
args: [
toAddress,
txAmount ,
],
})
Tested on trustwallet mobile
result photo
when clicked confirm, it send correct USDT amount.
Please help figure out how to make the wallet show USDT instead of BNB
The text was updated successfully, but these errors were encountered: