Ethereum Tutorials - Herong's Tutorial Examples - v1.06, by Herong Yang
View Transaction Receipt
This section describes how to view transaction receipt.
After a transaction is processed into the blockchain, you get a transaction receipt with transaction ID (hash):
> txid =
"0x41b890871732ade78aab27d6cfd126ed7357c2282337a40cb3920c6b80ac0a13"
> eth.getTransactionReceipt(txid)
{
blockHash:
"0xe724fd3586cffb8ffe2037a75aff1fbaa7759628ecddf470957a6af6f153ced5",
blockNumber: 80,
contractAddress: null,
cumulativeGasUsed: 42000,
from: "0x05d4e1a499775ce9d681abd50bda655c7b5ccb90",
gasUsed: 21000,
logs: [],
logsBloom: "0x0000000000000000000000000000000000000000000000000000...",
root:
"0x6525be8a6410beca48e0462683467e6ab66b34f5ae2b27ae4d3faa521a05d10f",
to: "0x485410d2e7b8bfb6f78e5e5acf7d1057cb853fce",
transactionHash:
"0x41b890871732ade78aab27d6cfd126ed7357c2282337a40cb3920c6b80ac0a13",
transactionIndex: 1
}
The receipt tells us this transaction was sealed into block # 80.
Table of Contents
Deprecated: Testnet - Ropsten Network
64-Bit "geth" for Private Ethereum Network
Private Network with Custom Genesis Block
►Transferring Funds between Ether Accounts
Send Ether from One Account to Another
MetaMask - Browser Based Ethereum Wallet
Getting Free Ether on Test Networks