We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
According to https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_gettransactionreceipt, a TransactionReceipt should contain:
TransactionReceipt
transactionHash
transactionIndex
blockHash
blockNumber
from
to
cumulativeGasUsed
gasUsed
contractAddress
logs
logsBloom
However, the TransactionReceipt interface used in this project (https://github.com/Tenderly/tenderly-cli/blob/master/ethereum/types.go#L69) appears to be missing the fields in bold above.
The text was updated successfully, but these errors were encountered:
Great catch! It seems we somehow missed those fields. 😔 We’ll be pushing out an update ASAP and I’ll ping your here when it’s live!
Thanks for the heads up!
Sorry, something went wrong.
Just wanted to ping here that v0.2.10, that contains this fix has been released.
v0.2.10
nebojsa94
Successfully merging a pull request may close this issue.
According to https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_gettransactionreceipt, a
TransactionReceipt
should contain:transactionHash
transactionIndex
blockHash
blockNumber
from
to
cumulativeGasUsed
gasUsed
contractAddress
logs
logsBloom
However, the TransactionReceipt interface used in this project (https://github.com/Tenderly/tenderly-cli/blob/master/ethereum/types.go#L69) appears to be missing the fields in bold above.
The text was updated successfully, but these errors were encountered: