Protocol Notes - msatkinson/ethereum GitHub Wiki

##Accounts There a 2 types of accounts:

  1. User Accounts (controlled by private keys)
  2. 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.