That topic hash should not be in our ABI:
[
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "artist",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "artistContract",
"type": "address"
}
],
"name": "DeleteArtistContract",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "artist",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "artistContract",
"type": "address"
}
],
"name": "NewArtistContract",
"type": "event"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "allArtists",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function",
"constant": true
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "artistContracts",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function",
"constant": true
},
{
"inputs": [
{
"internalType": "string",
"name": "name",
"type": "string"
},
{
"internalType": "string",
"name": "profilePicture",
"type": "string"
}
],
"name": "createArtistContract",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "deleteArtistContract",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "getAllArtists",
"outputs": [
{
"internalType": "address[]",
"name": "",
"type": "address[]"
}
],
"stateMutability": "view",
"type": "function",
"constant": true
},
{
"inputs": [
{
"internalType": "address",
"name": "artist",
"type": "address"
}
],
"name": "getArtistContract",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function",
"constant": true
}
]
If paste the ABI above on moralis it will change to only:
[
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "artist",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "artistContract",
"type": "address"
}
],
"name": "DeleteArtistContract",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "artist",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "artistContract",
"type": "address"
}
],
"name": "NewArtistContract",
"type": "event"
}
]
I think the only difference between our dev and production env is that we ticked on the checkbox: All Transaction Logs