Hey,
I’ve been struggling with the event syncing on Moralis.
I’m using Ganache and the frpc is showing that it’s connected in the dashboard on Moralis.
Below a picture of the settings and the abi. When saving I immediatly get a new browser class.
I’ve tried a new Moralis server, ganache migration reset and a combination of both.
My contract in ganache is showing that the event has taken place multiple times.
server URL: https://xo347oopk8ec.usemoralis.com:2053/server
topic: itemAdded(uint256,uint256,address,uint256)
abi:
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint256",
"name": "id",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"indexed": false,
"internalType": "address",
"name": "tokenAddress",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "askingPrice",
"type": "uint256"
}
],
"name": "itemAdded",
"type": "event"
}
Thanks!