Some question about QuickAlert

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'))

Thanks for your help!

1 Like

same question!
what should I do ?
change the expression ?

1 Like

Hey Zeyu,

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'))

1 Like

I need to separate it into two alerts, right? Can it be realized in the same alert?

1 Like

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?

1 Like

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?

1 Like

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?

-Nick

1 Like