[SOLVED] Monitoring of a project (contract)

Exactly. I am not sure if this hash is from the topic event or if it is about the transfer event that every ERC721 has.

payable(msg.sender).transfer(userFunds[msg.sender]);
If you look at the function make a transfer to the marketplace contract,
And every transfer has its event, right?
Then comes the call to the ClaimFunds event. In short, there should be 2 Logs in the transaction log and there is only one. Am I scattering with this?

  function claimFunds() public {
    require(userFunds[msg.sender] > 0, 'This user has no funds to be claimed');
    payable(msg.sender).transfer(userFunds[msg.sender]);
    emit ClaimFunds(msg.sender, userFunds[msg.sender]);
    userFunds[msg.sender] = 0;    
  }

How to know what event it is?

there is only one event there, it seems that in your event sync on that server there is a different topic and not the one that is expected

Iโ€™m going to use this hash to check if thatโ€™s the topic.
0x4f0554190111f93f8c2ccef2cc41473f187d7f29ff5a5c308ca41f9dfe4e989a

Great!!

All the transactions that have triggered that event is show it!!

Thanksโ€ฆ

Now the next challenge is how to know how to work on these tables to get information. For example, knowing which transaction has been the highest sale.

But this is something else. Thanks a lot for your help @cryptokid .