You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(ws): use uint64 for params.Subscription in incoming notifications (#427)
Solana validators emit subscription IDs as JSON unsigned 64-bit
integers; typing the decode target as `int` made decodeResponseFromMessage
fail for IDs above MaxInt32 (on 32-bit) or MaxInt64 (on 64-bit).
Switch to uint64 to match the wire format.
Closes#286.
0 commit comments