Issue with explorer not picking up transactions / transfers #871
-
Team or ProjectNo response EnvironmentMainnet L2 block numberNo response Provide a brief description of the functionality you're trying to implement and the issue you are running into.Hey, I have been running into some issues with the zk block explorer either not picking up or correctly displaying transactions for certain erc-20 smart contracts. For example, take this address, the block explorer displays zero transactions / transfers related to that address. However, that address that been involved in multiple transactions Any help / insight here would be much appreciated. Thanks! Repo Link (Optional)No response Additional DetailsNo response |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hey @bigcitywilly 👋 , That’s actually how the explorer works:
{
"address": "0x000000000000000000000000000000000000800a",
"logIndex": "0x0",
"topics": [
"0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
"0x0000000000000000000000001b8926351fdca73649ba1cf4388aeeffb8cc95fe", // from
"0x0000000000000000000000000000000000000000000000000000000000008001" // to
],
// ...
},
{
"address": "0xac4de1e9a9e83524f24af77972dd39d588de8164",
"logIndex": "0x3",
"topics": [
"0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
"0x0000000000000000000000000000000000000000000000000000000000000000", // from
"0x0000000000000000000000000df208baefbeee252a3cbe4760afb8d1c07e4848" // to
],
// ...
},
{
"address": "0x000000000000000000000000000000000000800a",
"logIndex": "0x6",
"topics": [
"0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
"0x0000000000000000000000000000000000000000000000000000000000008001", // from
"0x0000000000000000000000001b8926351fdca73649ba1cf4388aeeffb8cc95fe" // to
],
// ...
} If you have any suggestions or feature requests, feel free to open an issue in the Block Explorer repo repo. |
Beta Was this translation helpful? Give feedback.
Hey @bigcitywilly 👋 ,
That’s actually how the explorer works:
tx.from
ortx.to
fields. That’s why this transaction is not shown as a transaction for the0xAc4DE1E9A9e83524F24af77972Dd39D588De8164
address.from
andto
addresses). So, for the given transaction, there are 3 transfer events, and for none of them0xAc4DE1E9A9e83524F24af77972Dd39D588De8164
is the sender or receiver: