Protocol Notes - msatkinson/ethereum GitHub Wiki
##Accounts There a 2 types of accounts:
- User Accounts (controlled by private keys)
- Contracts (controlled by code)
####The ABI Every call to a contract function is compiled into transaction data. The compiled transaction data is known as the ABI.
####RLP
Recursive Length Prefix encoding. The serialization algorithm.