-1

I am using web3.py.

  1. How can I get info about droped and replaced transaction?
  2. How can I get info about pending transaction?
TylerH
  • 20,799
  • 66
  • 75
  • 101
Mi Ka
  • 135
  • 1
  • 9

1 Answers1

0

You can find out more information of the transaction using getTransaction and getTransactionReceipt.

Pending transactions can only be found through getTransaction but not getTransactionReceipt.

https://web3py.readthedocs.io/en/stable/web3.eth.html?highlight=gettransaction#web3.eth.Eth.getTransaction

https://web3py.readthedocs.io/en/stable/web3.eth.html?highlight=gettransaction#web3.eth.Eth.getTransactionReceipt

Ming
  • 729
  • 3
  • 10