Blockchain

A blockchain is a shared ledger that groups records into cryptographically linked blocks and applies consensus rules to determine valid updates.

A blockchain is a shared digital ledger that groups records into ordered blocks, cryptographically links each block to earlier history, and applies agreed validation and consensus rules to determine which updates are accepted. A blockchain can make alteration evident and difficult under specified assumptions, but it does not guarantee that recorded data is true, private, legally controlling, or impossible to change.

Key Takeaways

  • A blockchain combines a data structure, a network of nodes, transaction rules, cryptography, and a consensus process.
  • Cryptographic links make historical tampering detectable; economic incentives, access controls, and consensus make it more or less difficult.
  • Public blockchains and permissioned enterprise ledgers use different participation, governance, privacy, and trust models.
  • A valid blockchain transaction can still record fraud, a stolen-key instruction, bad source data, or a legally disputed transfer.
  • Blockchain is useful when multiple parties need a shared record without giving one party unrestricted control. A conventional database is often better when one trusted administrator already exists.

The Main Components

ComponentFunctionWhat it does not establish
Transaction or state changeProposes an update to the ledgerReal-world truth or legal authorization by itself
Digital signatureShows that a required key authorized dataIdentity, capacity, or absence of key theft
BlockGroups transactions or state updatesFinality merely because it was proposed
Cryptographic hashCreates a fingerprint of dataConfidentiality of the underlying data
Previous-block referenceLinks current history to a prior blockImmunity from coordinated rule changes or chain reorganization
NodeStores, relays, or validates network dataEqual influence among all participants
Consensus mechanismDetermines which ledger history participants acceptCorrectness of off-chain facts or contract economics

Not every distributed ledger organizes data in identical blocks. Distributed ledger technology, or DLT, is the broader category; blockchain is one architecture within it.

How a Blockchain Update Works

    flowchart LR
	    A["Participant creates and signs transaction"] --> B["Network nodes receive and validate it"]
	    B --> C["Producer proposes a block"]
	    C --> D["Consensus rules select accepted history"]
	    D --> E["Nodes update their ledger state"]
	    E --> F["Applications interpret the result"]

The details vary. In Bitcoin, miners perform proof of work and nodes validate blocks against Bitcoin rules. In Ethereum, validators propose and attest to blocks under proof of stake while nodes execute transactions. In permissioned systems, approved organizations may take turns proposing blocks or vote under a consortium agreement.

The application layer remains separate. A bank, exchange, wallet, or transfer agent can apply additional rules before treating an on-chain event as a completed customer transaction.

Blocks, Hashes, and Tamper Evidence

A block commonly contains:

  • transactions or a summary of state changes;
  • a reference to the preceding block;
  • one or more cryptographic commitments to block contents;
  • protocol metadata; and
  • evidence required by the consensus mechanism.

Changing old data changes its hash, which breaks the expected cryptographic links to later blocks. An attacker would then need to create an alternative history that the relevant network accepts. The cost and feasibility depend on consensus, validator or miner concentration, checkpointing, finality rules, governance, and how much later history has accumulated.

For this reason, tamper-evident and tamper-resistant are generally more accurate than immutable. Some networks can reorganize recent blocks, administrators can upgrade contracts, permissioned operators can correct records, and communities can adopt new software after severe incidents.

Public, Permissioned, and Consortium Networks

ModelWho can validate or produce blocks?Who can read or submit?Main trust issue
Public permissionlessOpen participation under protocol and resource requirementsUsually broad public accessEconomic concentration, software rules, governance, and network security
Public permissionedApproved validators; data may remain publicSubmission may be restrictedSelection and control of validators
Private permissionedOne organization or approved operatorsRestrictedAdministrator power and internal controls
ConsortiumSeveral named organizationsDefined by membership rulesCollusion, member failure, dispute resolution, and governance

A network can be distributed without being meaningfully decentralized. Count who controls block production, software changes, administrative keys, interfaces, data feeds, and legal entities rather than relying on a label.

Worked Example: Tokenized Bond Record

Assume a company issues a bond whose ownership register uses a permissioned blockchain shared by the issuer, transfer agent, custodian, and paying agent.

  1. An approved investor buys $100,000 face value under the offering documents.
  2. The transfer agent authorizes an ownership update.
  3. Network participants validate the transaction and append it to the shared ledger.
  4. The paying agent uses the recognized holder record to process a coupon.
  5. A later transfer requires compliance checks and another ledger update.

The blockchain can reduce reconciliation among participants because they reference the same ordered record. It does not determine whether:

  • the bond issuer can pay;
  • the offering complied with securities law;
  • the investor has good title if the signing key was stolen;
  • the coupon calculation is correct;
  • the external bank payment settled; or
  • the blockchain or transfer-agent record controls if they conflict.

Those questions require legal agreements, identity controls, financial analysis, payment records, and error-resolution procedures.

Blockchain Versus a Conventional Database

QuestionBlockchainConventional database
Primary controlShared consensus or multi-party governanceDatabase administrator
Update modelAppend and validate under protocol rulesCreate, update, and delete under access controls
Historical integrityCryptographic linkage and replicated validationLogs, permissions, backups, signatures, and audits
PerformanceReplication and consensus can limit throughputOften faster and easier to scale centrally
PrivacyPublic systems expose data broadly; permissioned designs varyGranular access controls are common
Error correctionNew reversing entry, governance action, or protocol-specific mechanismAuthorized correction or rollback
Best fitParties need a shared record and cannot give one unrestricted controlA trusted administrator can efficiently maintain the system

It is incorrect to say traditional databases are inherently insecure or blockchains inherently secure. Security depends on architecture, access control, software quality, cryptography, operations, incentives, and governance.

When Blockchain May Add Value

A blockchain may be useful when:

  • several independent parties must reconcile the same asset or transaction history;
  • no participant should have unilateral update authority;
  • programmable transfer restrictions or settlement conditions are useful;
  • participants need independently verifiable historical records; and
  • the costs of shared consensus are justified by reduced reconciliation or trust dependencies.

It may be a poor fit when:

  • one accountable administrator is already trusted;
  • records need frequent confidential editing or deletion;
  • high throughput and low latency dominate other requirements;
  • source data cannot be verified;
  • governance and error correction are undefined; or
  • a blockchain token is being added without changing the underlying process.

Finance Applications

Financial uses can include:

  • crypto-asset ownership and transfers;
  • tokenized securities and fund interests;
  • collateral and repo records;
  • trade finance and shared documentation;
  • payment and settlement instructions;
  • stablecoin issuance and redemption records; and
  • smart-contract applications for trading, lending, and derivatives.

The ledger is only one layer. Custody, identity, legal finality, cash settlement, asset servicing, sanctions screening, accounting, tax, and consumer protection can remain off-chain or depend on regulated intermediaries.

Risks and Limitations

  • Consensus risk: concentrated or faulty validators, miners, or operators can disrupt accepted history.
  • Software risk: protocol, client, wallet, or smart-contract defects can produce losses.
  • Key risk: signatures authorize actions even when a key was stolen or misused.
  • Oracle risk: a ledger can faithfully record false external data.
  • Governance risk: upgrade authority, emergency powers, and dispute resolution may be unclear or concentrated.
  • Privacy risk: public records can expose transaction relationships and enable address analysis.
  • Scalability risk: shared validation and data replication can increase cost and limit capacity.
  • Interoperability risk: bridges and cross-system integrations add contracts, custodians, signers, and message dependencies.
  • Finality risk: recent history may be reorganized, while permissioned records may be changed under governance procedures.
  • Legal risk: technical control and legally recognized ownership may diverge.
  • Data persistence risk: sensitive or unlawful data can be difficult to remove after broad replication.

How to Evaluate a Blockchain System

  1. Identify the asset or record and which document or registry is legally controlling.
  2. Determine who can submit, validate, view, correct, pause, or upgrade transactions.
  3. Examine the consensus failure threshold and participant concentration.
  4. Review key management, recovery, and segregation of duties.
  5. Trace every external data source, bridge, custodian, and administrator.
  6. Define finality and how applications respond to reorganizations or outages.
  7. Test error correction, incident response, and business continuity.
  8. Compare the full cost and risk with a conventional shared database.

Common Mistakes

  • Calling every blockchain decentralized: permissioning and control vary widely.
  • Equating hashes with truth: a hash proves data consistency, not factual accuracy.
  • Calling records immutable: tamper resistance depends on technical and governance assumptions.
  • Assuming transparency prevents fraud: public data can still be misleading, incomplete, or difficult to interpret.
  • Confusing tokens with legal rights: the governing agreement may matter more than the ledger entry.
  • Ignoring administrators and interfaces: front ends, upgrade keys, oracles, and custodians can reintroduce central control.
  • Using blockchain where a database is sufficient: added consensus can increase cost without solving a real trust problem.

Authoritative and Technical Sources

  • Distributed Ledger Technology (DLT): The broader family of replicated recordkeeping systems that includes blockchains.
  • Smart Contract: Code and state executed under a blockchain or distributed-ledger system.
  • Bitcoin: A proof-of-work monetary network and its native BTC asset.
  • Ethereum: A programmable proof-of-stake blockchain network.
  • Cryptocurrency Transfer: Movement of a crypto asset through on-chain or custodial records.
  • 51% Attack: Majority influence over relevant consensus resources that can undermine some ledger assurances.

FAQs

Is blockchain the same as Bitcoin?

No. Blockchain is a ledger architecture. Bitcoin is a particular network and asset that uses a blockchain with proof-of-work consensus.

Is blockchain data immutable?

Tamper-evident and tamper-resistant are more precise. Changing accepted history can be difficult, but reorganizations, governance actions, software changes, and permissioned corrections can alter how records are treated.

Does blockchain make data true?

No. It can show that submitted data was accepted and has not changed under the ledger rules. It cannot independently prove that an external fact, identity, valuation, or legal claim was accurate.

Is blockchain more secure than a database?

Not categorically. Blockchain and database systems have different control and failure models. Security depends on implementation, access controls, consensus, governance, key management, operations, and the intended use.

This page provides general financial and technical education, not a recommendation to use a blockchain or purchase a blockchain-related investment. Evaluate legal rights, governance, security, costs, and alternatives for the specific system.

Browse Investing