We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
For now, try to index on eventType == Transfer and see what comes back
eventType == Transfer
For later
https://docs.tendermint.com/master/rpc/#/Websocket/subscribe
we want to make something like
event :: DecodeEvent i ni e => Filter e -> (e -> ReaderT Change Web3 EventAction) -> Web3 (Async ()) event fltr = forkWeb3 . event' fltr
so what is the Filter type that allows us to post the data to subscribe to.
Filter
The e parameter ^ is only to help with the parsing.
e
ToEvent / FromEvent class that has some of this data (like eventType)
ToEvent / FromEvent
eventType
The text was updated successfully, but these errors were encountered:
@blinky3713 I think this can be closed, holding off until you greenlight
Sorry, something went wrong.
charlescrain
No branches or pull requests
For now, try to index on
eventType == Transfer
and see what comes backFor later
https://docs.tendermint.com/master/rpc/#/Websocket/subscribe
we want to make something like
so what is the
Filter
type that allows us to post the data to subscribe to.The
e
parameter ^ is only to help with the parsing.ToEvent / FromEvent
class that has some of this data (likeeventType
)The text was updated successfully, but these errors were encountered: