Hey all. I am trying to sign a transaction without sending it. I am using the signWithoutSending: true property but the transaction is still sent.
The snippet:
const { sessionId, error } = await sendTransactions({
transactions: [
{
value: 1000000000000000000,
data: 'xxxxx',
receiver: receiver
},
],
signWithoutSending: true
});
The sign modal is open and after confirm the transaction toast is open and in a second I can observe the transfers in the receiver wallet. This is tested on devnet. Do I am missing something here?
It is working for me, it doesn't send the transaction.
Had the same problem recently
Upgrading to the latest version fixed the issue. Thanks for the replies