I'm getting errors while sending and signing transactions using a keyless wallet on Aptos. #669
-
I'm getting errors while sending and signing transactions using a Google keyless wallet on Aptos. How can I reliably send payments without UI wallets? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
It may be because of Incorrect Handling of Large Numbers, because Blockchain transactions often involve large integer values (BigInts) for amounts, gas limits, etc. |
Beta Was this translation helpful? Give feedback.
-
If you're running into errors while trying to send or sign transactions on the Aptos blockchain using a keyless account, it could be due to incorrectly building or submitting the transaction, especially when dealing with decimal conversions or missing signer logic
Use amount * 10 ** decimals instead of amount ** decimals |
Beta Was this translation helpful? Give feedback.
If you're running into errors while trying to send or sign transactions on the Aptos blockchain using a keyless account, it could be due to incorrectly building or submitting the transaction, especially when dealing with decimal conversions or missing signer logic
let me share a tnx function you can use