Web3.py

如何配置塊中交易的索引位置?

  • April 15, 2022

如何配置塊中交易的索引位置?在此處輸入圖像描述 web3.py

您可以使用

print(w3.eth.get_transaction("tx-hash")["transactionIndex"])

例子:

w3.eth.get_transaction("0xb517b5e17550aa062870d6eb685e55b011173ede61970cab955ffc3fc211e656")["transactionIndex"] 

列印 75,與etherscan匹配。

你說的是隨機數還是交易指數?因為交易指數是由礦工根據你願意支付的 gas 費來完成的。

對於 nonce,它取決於進行交易的賬戶。

引用自:https://ethereum.stackexchange.com/questions/126140