Accounts
Accounts
Externally-Owned
Nonce – A counter that indicates the number of transactions sent from the
account. This ensures transactions are only processed once. In a contract
account, this number represents the number of contracts created by the
account.
balance – The number of wei owned by this address. Wei is a denomination
of ETH and there are 1e+18 wei per ETH.
CodeHash– This hash refers to the code of an account on the Ethereum
virtual machine (EVM). Contract accounts have code fragments
programmed in that can perform different operations. This EVM code gets
executed if the account gets a message call. It cannot be changed, unlike the
other account fields. All such code fragments are contained in the state
database under their corresponding hashes for later retrieval. This hash value
is known as a codeHash. For externally owned accounts, the codeHash field
is the hash of an empty string.
STORAGE ROOT