Block (Crypto)

AdvancedCrypto & Digital Assets2 min read

Quick Definition

A container of validated transactions that is permanently added to a blockchain, linked to the previous block through cryptographic hashing to form an immutable chain of records.

What Is Block (Crypto)?

A block is the fundamental data structure of a blockchain — a batch of validated transactions grouped together, timestamped, and cryptographically linked to the previous block. Each block contains: a block header (with metadata including the previous block's hash, timestamp, nonce, and Merkle root), a list of transactions, and a unique hash that identifies the block.

Block parameters vary significantly across blockchains. Bitcoin produces blocks approximately every 10 minutes, with a maximum size of 4MB (post-SegWit). Ethereum generates blocks every ~12 seconds. Solana targets 400-millisecond block times. These parameters directly affect network throughput, finality time, and decentralization — faster blocks generally require more powerful validators, potentially reducing who can participate.

The block creation process differs by consensus mechanism. In Proof of Work, miners compete to find a valid hash by adjusting the nonce — the first to succeed earns the block reward plus transaction fees. In Proof of Stake, validators are algorithmically selected to propose blocks based on their stake. The sequential linking of blocks through cryptographic hashes creates immutability: altering any historical block would change its hash, breaking the chain and requiring recalculation of every subsequent block — computationally infeasible for established blockchains.

Block (Crypto) Example

  • 1Bitcoin block #800,000 (mined in July 2023) contained approximately 3,700 transactions, had a size of 1.56MB, and generated a block reward of 6.25 BTC plus ~0.2 BTC in transaction fees. The miner who found the valid hash received approximately $200,000 at prevailing prices.
  • 2During a network congestion event on Ethereum, each block is filled to its 30 million gas limit. Users compete by offering higher gas prices (priority fees) to get their transactions included. A block might process 150 transactions, with some users paying $50+ in fees for time-sensitive DeFi operations.