Event Synced not showing in database

I created a sync event for a web3 react app. After syncing , the database not showing up.

Browsers replies , ‘Please login from your server’.

But when i use my phone, it database shows up

You can try Firefox or safari from desktop.

We also need the server url. And more info about what doesn’t work for that event sync, like table name, abi, network, topic.

1 Like

Yes thank u, it worked thanks.

I also i created 2 sync but just one is showing …

Server url : https://uulboedymij6.usemoralis.com:2053/server

created a sync named new payment
abi {
“anonymous”: false,
“inputs”: [
{
“indexed”: false,
“internalType”: “uint256”,
“name”: “id”,
“type”: “uint256”
},
{
“indexed”: false,
“internalType”: “address”,
“name”: “customer”,
“type”: “address”
},
{
“indexed”: false,
“internalType”: “uint256”,
“name”: “amount”,
“type”: “uint256”
}
],
“name”: “newTransactCreated”,
“type”: “event”
}

network bsc

You need to recreate that sync with a different table name (which doesn’t have a space).

It won’t get any data though because there’s no events for it - the contract you’re using only has two events for transactCreated(uint256,uint256,address).

1 Like