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
eth_newFilter
There are two ways to subscribe to listening logs on EVM. The first one is eth_subscribe which is focused on catching events and is already supported by the Oasis Web3 gateway. The second one is eth_newFilter which are triggered when the contract state changes in the logs: https://docs.metamask.io/services/reference/ethereum/json-rpc-methods/filter-methods/eth_newfilter/
eth_subscribe
Oasis Web3 gateway
Calling eth_newFilter is the preferred way for listening events in Web3Py 6.2.x, and onwards.
The text was updated successfully, but these errors were encountered:
ptrus
No branches or pull requests
SUMMARY
There are two ways to subscribe to listening logs on EVM. The first one is
eth_subscribe
which is focused on catching events and is already supported by the Oasis Web3 gateway. The second one iseth_newFilter
which are triggered when the contract state changes in the logs:https://docs.metamask.io/services/reference/ethereum/json-rpc-methods/filter-methods/eth_newfilter/
COMPONENT NAME
Oasis Web3 gateway
ADDITIONAL INFORMATION
Calling
eth_newFilter
is the preferred way for listening events in Web3Py 6.2.x, and onwards.The text was updated successfully, but these errors were encountered: