Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 857 Bytes

txn.md

File metadata and controls

20 lines (12 loc) · 857 Bytes

Transactions

Transactions are cryptographically signed instructions from accounts. An account will initiate a transaction to update the state of the Ethereum network. The simplest transaction is transferring ETH from one account to another. (source)

There are

  • Simple transactions (payment between External accounts)
  • Advance transactions (calling a contract)
  • Combining several transactions (contract calling other contracts)

Geth implementation:

Package in core/types.

References