Hi,
I’m trying to Sync and Watch Contract Events.
I’ve made a simple toy example, a ERC721 with a custom event when a new token is minted
_chainId: rinkeby
_topic: itemCreated(uint256,string)
_abi:
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint256",
"name": "id",
"type": "uint256"
},
{
"indexed": false,
"internalType": "string",
"name": "tokenURI",
"type": "string"
}
],
"name": "itemCreated",
"type": "event"
}
_address: 0xfF03E5E0ccb1792EF14F58511dD00183EB6fb257
If I activate the sync, the new events are fetched, but I don’t get the historical ones.
Regards