-
Notifications
You must be signed in to change notification settings - Fork 58
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
DRAFT: Add websocket usage #582
base: add_sei
Are you sure you want to change the base?
Conversation
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.
just some minor things I noticed when looking through the code.
I did not really find what I was looking for unfortunately, which is the global flow that (a) spawns the event log, and (b) calls the optimizer and thereafter the execution
963934e
to
5014a31
Compare
return event["args"]["_token2"] | ||
return await contract.caller.reserveTokens()[1] | ||
return event.args["_token2"] | ||
return await contract.functions.reserveTokens()[1] |
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.
Should be caller
, not functions
.
return event["args"]["_token1"] | ||
return await contract.caller.reserveTokens()[0] | ||
return event.args["_token1"] | ||
return await contract.functions.reserveTokens()[0] |
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.
Should be caller
, not functions
.
dd930fa
to
3492aeb
Compare
0b34523
to
b65b9c2
Compare
b65b9c2
to
1423b02
Compare
34d7fa7
to
4a8b537
Compare
feat: disabled events from filters
4a8b537
to
377fecf
Compare
No description provided.