How to sign an Algorand transaction without posting it #1462
-
To implement a zero-algo / zero-fee transaction as an authentication token, I would need to sign a transaction with a connected wallet without posting it to the blockchain. What is the recommended approach using Reach? I see that once a wallet is connected, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I would recommend creating an object that obeys the ARC-11 wallet interface but wraps another instance of it. Reach will ask your "wallet" to sign, you'll ask the real wallet to sign, then you get your signed txn, then you just don't return it to Reach. |
Beta Was this translation helpful? Give feedback.
I would recommend creating an object that obeys the ARC-11 wallet interface but wraps another instance of it. Reach will ask your "wallet" to sign, you'll ask the real wallet to sign, then you get your signed txn, then you just don't return it to Reach.