Transactions

使用 web3,您如何獲得給定交易的 tx 成本和數據/有效負載?

  • August 16, 2016

使用 web3,您如何獲得給定交易的Tx costand ?data/payload

getTransaction(tx#)返回除這兩個值之外的所有內容。這些資訊似乎可以通過 etherchain.org 等區塊鏈瀏覽器獲得

web3.eth.getTransaction有一個input屬性,它是給定事務的 /payload。

交易成本gasUsed乘以gasPrice

web3.eth.getTransactionReceipt擁有gasUsed財產。 web3.eth.getTransactiongasPrice。由於單位gasPrice是 wei,除以 1e18 得到交易的乙太幣成本。

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