-
Notifications
You must be signed in to change notification settings - Fork 286
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add websockets support #144
Conversation
…into websockets
Codecov Report
@@ Coverage Diff @@
## master #144 +/- ##
==========================================
+ Coverage 89.43% 90.68% +1.24%
==========================================
Files 33 36 +3
Lines 2310 2652 +342
==========================================
+ Hits 2066 2405 +339
- Misses 244 247 +3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: Can we move all the WebSocket sttuf to src/solana/rpc/websocket
?
I’m planning on using request_builder.py and responses.py for the regular RPC API in a future PR, so I think it makes sense to leave them where they are |
Sounds good. |
Adds websockets support by wrapping the websockets library.
Closes #45