Transactions
使用 web3,您如何獲得給定交易的 tx 成本和數據/有效負載?
使用 web3,您如何獲得給定交易的
Tx cost
and ?data/payload
getTransaction(tx#)
返回除這兩個值之外的所有內容。這些資訊似乎可以通過 etherchain.org 等區塊鏈瀏覽器獲得
web3.eth.getTransaction
有一個input
屬性,它是給定事務的 /payload。交易成本
gasUsed
乘以gasPrice
。
web3.eth.getTransactionReceipt
擁有gasUsed
財產。web3.eth.getTransaction
有gasPrice
。由於單位gasPrice
是 wei,除以 1e18 得到交易的乙太幣成本。