I am using the goerli testnet for testing and I encountered a problem, I can receive the webhook when I transfer token, but I cannot receive the webhook when I send goerli ETH, why is this?
The purpose of my notification is to listen to all transactions of these two wallet addresses and send a webhook.
This is my Expression:
(tx_from in ('0x3f53893bdd70220f167f920a519de830bf2a3a84', '0xd894f801ca31ce5d4180c9263b9c4a7d5ee7c12e'))
|| (tx_to in ('0x3f53893bdd70220f167f920a519de830bf2a3a84', '0xd894f801ca31ce5d4180c9263b9c4a7d5ee7c12e'))
|| (tx_logs_topic1 in ('0x0000000000000000000000003f53893bdd70220f167f920a519de830bf2a3a84', '0x000000000000000000000000d894f801ca31ce5d4180c9263b9c4a7d5ee7c12e'))
|| (tx_logs_topic2 in ('0x0000000000000000000000003f53893bdd70220f167f920a519de830bf2a3a84', '0x000000000000000000000000d894f801ca31ce5d4180c9263b9c4a7d5ee7c12e'))
For the time being we recommend breaking up the 2 expressions like
(tx_from in ('0x3f53893bdd70220f167f920a519de830bf2a3a84', '0xd894f801ca31ce5d4180c9263b9c4a7d5ee7c12e')) || (tx_to in ('0x3f53893bdd70220f167f920a519de830bf2a3a84', '0xd894f801ca31ce5d4180c9263b9c4a7d5ee7c12e'))
and (tx_logs_topic1 in ('0x0000000000000000000000003f53893bdd70220f167f920a519de830bf2a3a84', '0x000000000000000000000000d894f801ca31ce5d4180c9263b9c4a7d5ee7c12e')) || (tx_logs_topic2 in ('0x0000000000000000000000003f53893bdd70220f167f920a519de830bf2a3a84', '0x000000000000000000000000d894f801ca31ce5d4180c9263b9c4a7d5ee7c12e'))
The test Expression in the picture shows that the transaction can be matched, but I have tested it several times and it has not been pushed. I can confirm that there is no problem with my webhook url. What is going on?
The test Expression in the picture shows that the transaction can be matched, but I have tested it several times and it has not been pushed. I can confirm that there is no problem with my webhook url. What is going on?
Could you please confirm which network you are expecting to be alerted for and, if possible the block explorer link to a transaction that should have triggered their notification?