Sync and Watch Contract Events plugin : ABI invalid

Hi I’m having an issue,

I’m trying to use the Sync and Watch Contract Events plugin, but I can’t find detailed docs on it, especially on what sort of abi I’m supposed to pass in the examples (which is an image of the form) it seems I need to extract the inputs part, but when I submit, it’s displaying an error message “Invalid ABI, please verify”.
Do someone know what kind of json I’m supposed to pass ?

Current abi passed:

"inputs": [
  {
    "indexed": true,
    "internalType": "address",
    "name": "_auditor",
    "type": "address"
  },
]

Hey @SachaH

You should wrap your abi { }

{"inputs": [
  {
    "indexed": true,
    "internalType": "address",
    "name": "_auditor",
    "type": "address"
  },
 ]
}
1 Like

Hey I just tried it and I got the same result

Hey I just made it work by removing the extra comma from the line 7 on the above posted schema :wink:

Everything works fine now, love you guys Thanks !!!

1 Like

Last question is that normal that the generated row doesn’t save the inputs that are inside the event within the table ?

Can you elaborate more on this question. I don’t think we understand what you mean. :thinking:

Hey !

I’m gonna create a new topic as the initial question here has already been answered !