How can I figure out what type of encoding scheme does Ethereum uses? For example, Bit coin uses Base 64 encoding scheme as can be seen here . Is there an example where I can see the encoding style commonly used with ethereum?
For example, the address new accounts is the rightmost 160 bits of the Keccak hash of RLP encoding of the structure containing only the sender and the nonce.
Comments
For example, the address new accounts is the rightmost 160 bits of the Keccak hash of RLP encoding
of the structure containing only the sender and the nonce.
For more information on RLP, please see https://github.com/ethereum/wiki/wiki/RLP