{
"id": 0,
"jsonrpc": "2.0",
"method": "eth_getLogs",
"params": [{
"fromBlock": 4736803,
"toBlock": 4736805,
"topics": [
"0x7357bdf6439eb71d76705f65b579405009821f85cd9c27520fe6bca4d2707bae"
]
}]
}
=> can find logs
{
"id": 0,
"jsonrpc": "2.0",
"method": "eth_getLogs",
"params": [{
"fromBlock": 0,
"toBlock": "latest",
"topics": [
"0x7357bdf6439eb71d76705f65b579405009821f85cd9c27520fe6bca4d2707bae"
]
}]
}
=> []
I think this is due to subql truncating large result. Need to validation the cause, and figure out what's the most efficient way to handle this
I think this is due to subql truncating large result. Need to validation the cause, and figure out what's the most efficient way to handle this