Failing to see my smart contracts events sync in the database

{
  "anonymous": false,
  "inputs": [
    {
      "indexed": true,
      "internalType": "address",
      "name": "tokenWithdrawn",
      "type": "address"
    },
    {
      "indexed": true,
      "internalType": "address",
      "name": "_withdrawAddress",
      "type": "address"
    },
    {
      "indexed": false,
      "internalType": "uint256",
      "name": "amountWithdrawn",
      "type": "uint256"
    }
  ],
  "name": "FundsWithdrawn",
  "type": "event"
}

here is my abi, the contract is an upgradable smart contract. the address is 0xa3b5a08575150c513bDe88A5BE459Ce8b94FB1Be. and the event I am looking for is funds withdrawn event. someone, please help me identify why this is not showing in the database

here you have to remove that _ from that name, only in the abi, not also in the contract

thank you so much @cryptokid. that was helpful

1 Like