[SOLVED] Sync Events is not working on my testnet

Sync smart contracts event is not fetching for my Polygon testnet on Moralis server.

{
“anonymous”: false,
“inputs”: [
{
“indexed”: true,
“internalType”: “address”,
“name”: “from”,
“type”: “address”
},
{
“indexed”: true,
“internalType”: “address”,
“name”: “to”,
“type”: “address”
},
{
“indexed”: true,
“internalType”: “uint256”,
“name”: “tokenId”,
“type”: “uint256”
}
],
“name”: “Transfer”,
“type”: “event”
}

Transfer(address,address,uint256)

Smart contract address: 0xbcc2a68cca9ed266aa37829513543c75c1c039fd

I am thinking if i use “mintForAddress” function in the above contract. It should trigger this transfer event.

your abi is correct. I was able to sync from my end.

If you have enabled historic syncs it should sync at least the old events.
Maybe check if you have selected correct network while adding sync.

[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"}]

can you check now?

It seems to be syncing now

I donno what happened mate but it started syncing now mate. Thanks heaps.

Can I know what I did wrong? or is it something on the backend?

Your server has high memory and cpu usage, probably that must have stopped the sync. I only updated your server.

Ohh okay. Thank you very much mate. I really appreciate it!