-
Hey, I'm trying to stream all transactions by address, in the moment I use this provider.on('pending', (tx) => { some filter can do this Bonus Question =D is this possible or necessary use provider.getTransaction(tx) Thanks Cracks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
The standard API only gives you a list of pending transaction hashes. There are, however, some non-standard APIs available in some backends which provide you the entire transaction info as well as filter pending transaction from specific addresses and more filtering options. I'm not sure if Infura/Alchemy/QuickNode allow you to access those non-standard APIs though. |
Beta Was this translation helpful? Give feedback.
The standard API only gives you a list of pending transaction hashes.
There are, however, some non-standard APIs available in some backends which provide you the entire transaction info as well as filter pending transaction from specific addresses and more filtering options. I'm not sure if Infura/Alchemy/QuickNode allow you to access those non-standard APIs though.