Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

140
Views
How to subscribe to Multiple Eth addresses on USDT token transfer events

I have a list of Eth user deposit addresses. They can make External USDT transfers to these addresses. How do I subscribe to the USDT contract and filter for all the User Addresses I have for deposits. My user numbers would keep growing.

I understand I can filter Transfer events on 1 to address. But how do I filter on a addresses in the order of thousands?

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

You can use the web3 event handler options object (docs) to subscribe to transfers to only specified recipients.

Example:

usdtContract.events.Transfer({
    filter: {
        // `to` is the name of the indexed Solidity event topic, as in
        // `event Transfer(address indexed from, address indexed to, uint value)`
        to: ["0x123", "0x456", "0x789"]
    }
}, (err, data) => {
    // ...
});
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!