I am trying to send transaction (send Ether using trustwallet after connection) Not working #2745
cryptonexum
started this conversation in
General
Replies: 1 comment
-
@cryptonexum add |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
wallet is connected but No popup for transaction is coming on trustwallet. however its working fine with metamask perfectly.
here is my code
import {sendTransaction} from "@wagmi/core"; let tx = { to: '0x0000000000000000000000000000000000000000', gasLimit: '300000', nonce: 1, chainId: 1, value: "1" }; const result = await sendTransaction(tx); console.log(result);
On debug I got this
Please help
Beta Was this translation helpful? Give feedback.
All reactions