Blockchain
A blockchain is a distributed, cryptographically secured ledger in which records (blocks) are linked together in an append-only chain, maintained and validated by a decentralized network of nodes through a consensus mechanism, ensuring that no single party can alter historical data without controlling a majority of the network's computational power or stake.
Key takeaways
- Each block contains a cryptographic hash of the previous block, a timestamp, and a set of transactions — making the chain tamper-evident, as altering any historical block would invalidate all subsequent blocks.
- Consensus mechanisms — proof-of-work (PoW), proof-of-stake (PoS), or delegated proof-of-stake (DPoS) — determine how nodes agree on the valid chain state without requiring a trusted central authority.
- Public blockchains (Bitcoin, Ethereum) are permissionless and open to any participant; private or consortium blockchains (Hyperledger, R3 Corda) restrict participation to authorized entities and are used in institutional financial infrastructure.
- Smart contracts — self-executing code stored on the blockchain (most notably Ethereum) — enable programmable financial applications (DeFi) including automated market makers, lending protocols, and derivatives without intermediaries.
- Institutional applications include real-time gross settlement of securities (e.g., ASX's CHESS replacement, T+1/T+0 settlement experiments), tokenization of real-world assets, and digital securities issuance.
Explanation
The blockchain data structure predates Bitcoin — the linked hash chain concept was described by Stuart Haber and W. Scott Stornetta in 1991 as a method for timestamping digital documents. Nakamoto's innovation in 2008 was combining this data structure with an economic incentive mechanism (mining rewards) and a permissionless network of nodes to create the first decentralized, trustless payment system.
The block structure is the fundamental unit: each block contains a block header (including the hash of the prior block, a Merkle root of all transactions in the block, a timestamp, the difficulty target, and a nonce) and a transaction list. The hash of the prior block — a cryptographic fingerprint — creates the chain linkage. If an attacker wants to modify a transaction in block N, they must recompute block N's hash, then block N+1's (since it contains N's hash), then all subsequent blocks, faster than the honest network is adding new blocks — a computational feat that becomes exponentially harder as the chain grows, providing immutability without a central authority.
The consensus mechanism is what makes different blockchains suitable for different use cases. Proof-of-work (Bitcoin) requires nodes to expend computational energy to propose blocks, making 51% attacks extremely expensive for large, established chains. Proof-of-stake (Ethereum post-'Merge,' Solana, Cardano) requires validators to lock (stake) tokens as collateral, with validators selected to propose blocks proportional to their stake. PoS is dramatically more energy-efficient than PoW but introduces different security trade-offs — validators with large stake concentrations gain disproportionate influence.
For financial institutions, the most consequential blockchain application is the tokenization of real-world assets (RWAs). Tokenizing bonds, equities, real estate, or fund units on a blockchain enables: fractional ownership (reducing minimum investment sizes), automated corporate actions (coupon payments, dividends via smart contracts), real-time settlement, and 24/7 transferability. Institutions including BlackRock (BUIDL Fund on Ethereum), Franklin Templeton (OnChain U.S. Government Money Fund), and JPMorgan (Onyx/Kinexys) have already tokenized significant asset pools, signaling that institutional-grade blockchain infrastructure is moving from proof-of-concept to production at scale.
Example
Franklin Templeton's OnChain U.S. Government Money Fund (FOBXX) became the first U.S. registered mutual fund to use a public blockchain (Stellar, later Polygon) for transfer agent record-keeping and transaction settlement. The fund holds over $400 million in assets and processes subscriptions and redemptions with blockchain-recorded ownership, enabling near-instant secondary market transfers of fund shares between wallets — bypassing the traditional T+1/T+2 settlement cycle. Each fund share is represented as a blockchain token, with ownership provably verified on the public ledger. This structure enables BlackRock or other fund managers to offer the fund's shares as collateral in DeFi protocols — a convergence of traditional finance and decentralized infrastructure that would have been structurally impossible without blockchain-based settlement.
Related terms
Bitcoin Convergence Cryptocurrency Ethereum Funding Rate Liquidity Pool Mining Proof Of Stake Settlement Stablecoin T 2 Settlement Tokenization