I am trying to setup a node to be able to query all BEP20 transactions in real time.
My eth.syncing stats are:
> eth.syncing
{
currentBlock: 9489998,
highestBlock: 9490087,
knownStates: 195328608,
pulledStates: 195258505,
startingBlock: 9487094
}
This is what I'm using
{"jsonrpc":"2.0", "id": 2, "method": "eth_subscribe", "params": ["logs", {"topics": ["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef"]}]}
But I only get the following answer, and nothing more:
{"jsonrpc":"2.0","id":2,"result":"0x6760537a1d6add4f87899036f1826770"}
Anything I could be missing out?