Skip to main content

All Questions

Tagged with
Filter by
Sorted by
Tagged with
1 vote
1 answer
445 views

How to know token transfered in pending status from memepool

i'm getting list of data from web3.eth.filter('pending'), here i'm listening uniswap ETH router. If i print one result of the list : AttributeDict({'blockHash': None, 'blockNumber': None, 'from': '...
Valentin Garreau's user avatar
1 vote
0 answers
216 views

Errors when querying ethereum mempool with python

Im using this script to query the etehreum mempool, but I really dont know exactly what is going on here. from web3.auto import Web3 import asyncio import json wss = 'websocket node' web3 = Web3(Web3....
An droid's user avatar
0 votes
1 answer
307 views

web3.py geth txpool help

I need to help accessing the geth.txpool API namespace in web3.py. Heres what I do (for example): from web3 import Web3 web3 = Web3(Web3.HTTPProvider('https://mainnet.infura.io/v3/MY_KEY')) txPool = ...
Nolan Jannotta's user avatar
1 vote
0 answers
643 views

Streaming txpool data instead of pulling whole dictionary on every iteration

I've worked on a script that tracks if x token has received a liquidity transaction. The way this works is by calling on my Geth node txpool API. My issue is, my current implementation, which works on ...
Jorge's user avatar
  • 31
2 votes
2 answers
4k views

Monitoring of pending transactions

I'm using Web3.py with Infura Is it possible to see in real time the last pending transactions ? And have all the informations about it like who send it, who received it and more. The idea is to do a ...
Kioup's user avatar
  • 125
1 vote
1 answer
2k views

Getting txpool with python web3 and infura

I am trying to monitor pending transactions with python web3 and an infura node. I am currently using web3.eth.getBlock(block_identifier='pending', full_transactions=True) on a loop to fetch pending ...
Lol Lol's user avatar
  • 11
4 votes
3 answers
3k views

Is there any way to see the txpool with infura and web3?

I'd like to get pending transactions information without running my own node. Is there any way to do that? Something like this would work too, but they only seem to provide a fraction of the pending ...
Mike Nelson's user avatar