From dc27ca489c7a6429affd05027931756d0567241d Mon Sep 17 00:00:00 2001 From: Craig Everett Date: Fri, 6 Feb 2026 20:24:01 +0900 Subject: [PATCH] Add Transaction --- Transaction.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 Transaction.md diff --git a/Transaction.md b/Transaction.md new file mode 100644 index 0000000..1899096 --- /dev/null +++ b/Transaction.md @@ -0,0 +1,3 @@ +# Transaction + +The ordered list of state transitions that occur within a block dictate the order in which events have occurred on the chain. The state transition events themselves are called "transactions" (often abbreviated to "TXs"). There are several types of transactions, each with different effects. For example, a "spend TX" is where one account sends some amount of coins to another account, and a "contract call TX" is where an account calls a smart contract for it to be executed on the chain. The resulting update to the ledger is recorded and then the next transaction is "included" on the chain. \ No newline at end of file