如何订阅多个Eth地址的USDT代币转账事件
我有一份以太坊用户存款地址列表。他们可以将 USDT 外部转账到这些地址。我如何订阅 USDT 合约并过滤我拥有的所有存款用户地址。我的用户数量会不断增长。
我了解我可以过滤 1 上的传输事件来处理。但是如何过滤数千个地址呢?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 web3 事件处理程序
options
对象 (docs) 订阅仅发送给指定收件人的传输。例子:
You can use the web3 event handler
options
object (docs) to subscribe to transfers to only specified recipients.Example: