A block is a fundamental unit of a blockchain — a data structure that contains a batch of validated transactions. Blocks are linked together chronologically using cryptographic hashes, forming the "chain" in blockchain.
What's Inside a Block
Block Header: Contains metadata including the previous block's hash, a timestamp, the Merkle root of all transactions, the nonce (for PoW chains), and the difficulty target.
Transaction Data: The list of validated transactions included in the block.
Block Hash: A unique cryptographic fingerprint of the block, derived from the header data.
Block Size
Different blockchains have different block size limits. Bitcoin's block size is limited to approximately 1-4 MB (with SegWit), while other chains allow larger blocks for higher throughput. Block size is a key factor in a network's scalability — the Bitcoin block size debate led to the Bitcoin Cash fork in 2017.
Block Time
Block time is the average interval between new blocks. Bitcoin targets 10 minutes, Ethereum approximately 12 seconds, and Solana about 400 milliseconds.