Thuta Learning
ရှာဖွေရန်
BasicSecurityadvanced

Blocks, Chain & Ledger

စိတ်လျှော့ပါ။ ဒီခန်းကို စာအုပ်လိုမဟုတ်ဘဲ စကားပြောသလိုပဲ၊ နားလည်လွယ်အောင် ရှင်းပါမယ်။

Block တစ်ခုမှာ transaction list, timestamp, previous block hash, current block hash စတဲ့အချက်တွေပါဝင်တတ်ပါတယ်။ Previous hash ကြောင့် block များက chain အဖြစ်ချိတ်သွားပြီး အလယ်က block တစ်ခုကိုပြင်လိုက်ရင် နောက်က block များနဲ့ hash မကိုက်တော့ပါ။

Visual Flow

Block #1Hash ABlock #2 uses Hash AHash BBlock #3 uses Hash B

text
{
  "block_number": 1024,
  "timestamp": "2026-05-04T10:00:00Z",
  "transactions": [
    "Sai sends 0.01 coin to Thuta",
    "Studio contract records a certificate"
  ],
  "previous_hash": "0xabc123...",
  "hash": "0xdef456..."
}
You should see
Block တစ်ခုဟာ record package; chain ဆိုတာ package တွေကို cryptographic fingerprint နဲ့စနစ်တကျချိတ်ထားတာပါ။
Blocks, Chain & Ledger | Thuta Learning