No, this is not like regular EVM event subscriptions
What eth_subscribe should have been
Chain Comparison
Code Comparison
web3.eth.subscribe('logs', { address: '0x...' }, (err, log) => {
// Now pull state manually
contract.methods.balanceOf(...).call();
});sdk.subscribe({ ethCalls: ['balanceOf'], onData: (data) => {
// Event + state delivered with `data`
});Last updated