Skip to content

Phantom not opening any transaction window (no alert, no transaction opens), in Android (any device) but works on Windows/Firefox/Chrome #271

Discussion options

You must be logged in to vote

Damn, i finally found out why.
Using the web3.js adapter, i was calling :
const signature = await wallet.sendTransaction(tx, connection);
But since update of phantom of august 2024, it was failling and not showing anything, because i had to call :
var blockhashResponse = await connection.getLatestBlockhashAndContext();
const signature = await wallet.sendTransaction(tx, connection, { minContextSlot:blockhashResponse.context.slot });
The minContextSlot is now mandatory.
Thanks a lot for digging this problem, 7 days searching this as top priority, I was getting crazy.

Replies: 3 comments 1 reply

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@adamdelphantom
Comment options

Answer selected by paracetamol951
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants