[SOLVED] Not able to sync database with events

Hello, I created a smart contract which emits an event whenever a token is minted. I also added a database sync for that event. It works fine for other contracts but not this particular one. The link of the contract is -
https://rinkeby.etherscan.io/address/0x89bc01006c4071f7da3e01299787b9fb393e8749

The event name is “CreateEstate”. The function which emits the event is called by another smart contract.

can you paste the abi for that event?

Here’s the ABI -
{
“anonymous”: false,
“inputs”: [
{
“indexed”: true,
“name”: “_owner”,
“type”: “address”
},
{
“indexed”: true,
“name”: “_estateId”,
“type”: “uint256”
},
{
“indexed”: false,
“name”: “name”,
“type”: “string”
},
{
“indexed”: false,
“name”: “description”,
“type”: “string”
}
],
“name”: “CreateEstate”,
“type”: “event”
}

you have to remove that _ from the start of the name, for every name, you only have to modify that in the abi

That worked. Thanks!!

1 Like