Sorry, we don't support your browser.  Install a modern browser
This post is closed.

Missing internal transactions on Zora#302

I picked an arbitrary wallet 0x7B0befc5B043148Cd7bD5cFeEEf7BC63D28edEC0 and compared the list of transactions.

I found that routescan is missing three transactions in txlistinternal:

  • 0x2541d8c158140bd908ea267e8675bf448f23004db38bec68521731093f5ebd6d
  • 0x4d7d275a6d0420dcdfa32790fa2d2e5a048b48c594a4d89c0d2d9cdd5e32b7c9
  • 0x88d762c921f71df7237b3eea5e9dad337d1be3c8e5aca86523ed07806620f025

I compared against explorer.zora.energy, and the transactions are present and accesible through API here https://explorer.zora.energy/address/0x7B0befc5B043148Cd7bD5cFeEEf7BC63D28edEC0?tab=internal_txns

22 days ago
1
R
Changed the status to
In Progress
21 days ago
R
Changed the status to
Completed
10 days ago
D

I don’t see anything changed?

curl -s 'https://api.routescan.io/v2/network/mainnet/evm/7777777/etherscan/api?module=account&action=txlistinternal&address=0x7b0befc5b043148cd7bd5cfeeef7bc63d28edec0&startblock=8606073&endblock=8606075&page=1&offset=10&sort=asc&apiKey=nokey' | jq
{
  "status": "0",
  "message": "No transactions found",
  "result": []
}

Same query against explorer.zora.energy

$ curl -s 'https://explorer.zora.energy/api?module=account&action=txlistinternal&address=0x7b0befc5b043148cd7bd5cfeeef7bc63d28edec0&startblock=8606073&endblock=8606075&page=1&offset=10&sort=asc&apiKey=nokey' | jq
{
  "message": "OK",
  "result": [
    {
      "blockNumber": "8606074",
      "callType": "call",
      "contractAddress": "",
      "errCode": "",
      "from": "0xf4c3691c96496d55112c4477ff16e1eddc8623cf",
      "gas": "14630",
      "gasUsed": "0",
      "index": "10",
      "input": "0x",
      "isError": "0",
      "timeStamp": "1703905987",
      "to": "0x7b0befc5b043148cd7bd5cfeeef7bc63d28edec0",
      "transactionHash": "0x4d7d275a6d0420dcdfa32790fa2d2e5a048b48c594a4d89c0d2d9cdd5e32b7c9",
      "type": "call",
      "value": "276000000000000"
    }
  ],
  "status": "1"
}
10 days ago
R

sorry, checking again

10 days ago