- Ethereum
- Smart Contract
- dApp(Decentralized Application)
- Turing-Completeness
- the DAO
- Ether
- Gas
- State
- Transaction
- Message
- EOA
- CA
- ECDSA
- Address
- Geth
- Solidity
- EVM
- ABI
- Opcode
- DAG
- Ethash
- Web3
- Parity
- Bootstrap Node
- Mining
- Merkle Patricia Trie
- Bloom Filter
- GasLimit
- Uncle Block
- Receipt
- GHOST Protocol
- RLP
- Difficulty
- MixHash
- Nonce
- Finality
- Scalability
- Sharding
- Plasma
- Casper
- Zero Knoweldge Proof
- Raiden Network
- Whisper
- Swarm
- IPFS
- Metamask
- Etherscan
- EEA
- EIP
- ERC20
- ERC721
- Mnemonic code
- Mist
Receipt
This is the log of the execution result of the transaction, and the record in which the execution environment and information related to the transaction are stored. It is literally like a receipt for a transaction. The receipt of the transaction in each block is hashed and the root hash of the top is placed in the block header. This is called the Receipt Root.

(Image source : https://blockonomi.com/solidity-guide/)
The receipt structure contains the following items:
- PostState : status information after transaction processing
- Failed: Failed after transaction processing
- CumulativeFasUsed : Cumulative gas price used in the block containing the transaction and receipt
- Bloom : Bloom filter to search log information quickly
- Logs: records generated during transaction execution
- TxHash : Txid of the transaction
- contractAddress : If this is a transaction created in a contract, the address of the corresponding contract
- GasUsed: the gas price used to execute the transaction