コモディティ、通貨、暗号資産、オルタナティブ市場のガイド
メニュー
商品 通貨 暗号資産 分析 ニュース カレンダー
マーケット 指数株式 債券 休場日 新興国市場 ↗
国・地域 United States United Kingdom Euro Area Australia Canada Japan China Brazil Russia India その他の国・地域
経済指標 政策金利 インフレ率 失業率 GDP成長率 一人当たりGDP 経常収支 政府債務 その他の経済指標
予測 国・地域経済指標
学ぶ・ツール 学ぶ データに質問する スクリーナー AIエージェント API
概要 サイトについて 免責事項
会員
データプラン

過去データのダウンロード — アカウント登録後にご利用いただけます。

APIゲートウェイ

サイトのキャッシュデータへの無料読み取り専用JSONアクセス。

ダークモード

🧭 ガイドビュー
市場・価格・利回り・YTD・時価総額が初めての方へ。閲覧しながらすべての用語をわかりやすく解説します。データは同じ、ヘルプ付きです。

⚡ エキスパートビュー
市場をよくご存じの方向け。余分な説明なし ― クリーンで速く、コンパクトなデータ表示。デフォルト表示です。

表示言語

学ぶ / 暗号資産 / Foundations

What Is a Blockchain?

6 分で読めます 更新日 Aug 10, 2026

A blockchain is a shared digital ledger that records transactions in batches called blocks, with each block cryptographically linked to the one before it, forming an unbreakable chain. Thousands of computers around the world hold identical copies of this ledger, so no single person or organization controls or can quietly alter the record. This structure makes blockchains useful for recording things that benefit from transparency and tamper-resistance, such as cryptocurrency transfers.

What Is a Blockchain?

A blockchain is a type of database — but one that works very differently from the spreadsheet a bank uses to track your balance. Instead of living on one company's server, copies of the same database are held simultaneously on thousands of computers scattered around the world. Every participant's copy must match every other participant's copy, or the network rejects the odd one out.

The word "blockchain" is literal. Transactions are bundled together into a block. Each block is then mathematically sealed and attached to the block that came before it, creating a chain. Altering any old block would break its seal and every seal after it — making silent tampering practically impossible.

This is the foundation beneath cryptocurrencies and many other applications. Understanding the ledger mechanics helps make sense of why these systems behave the way they do in markets.

Each block contains three main things: a batch of recent transactions, a timestamp, and a hash. A hash is a short string of characters produced by running a block's data through a mathematical formula — think of it as a fingerprint. Change even one character in the block's data and the fingerprint changes completely.

Crucially, each block also includes the hash of the block that came before it. That single detail is what creates the chain. If someone tried to rewrite an old block — say, to erase a transaction — its hash would change, which would invalidate the next block's stored hash, which would invalidate the one after that, all the way to the present. The network would instantly notice the mismatch and reject the altered version.

This interlocking structure means the further back in history a transaction sits, the more computationally expensive it becomes to tamper with it. Economists and computer scientists call this property immutability — once something is written, it effectively cannot be unwritten.

Decentralization: Why It Matters

A traditional ledger has an editor: a bank, a company, a government registry. That editor can correct mistakes, but they can also make unauthorized changes, get hacked, or simply go offline. A blockchain replaces that single editor with a network of independent participants called nodes — computers that each hold a full copy of the ledger and continuously check each other's work.

Because there is no central server to attack, disabling the ledger means disabling thousands of independent machines simultaneously — a far harder target. And because no single party controls the database, no single party can unilaterally change the rules or reverse a settled transaction. Participants must trust the math, not a middleman.

This is what "decentralized" actually means in practice: distributed control rather than distributed geography. A blockchain's computers can all sit in the same country and still be decentralized if no single operator controls the majority of them.

How Consensus Works

With no central editor, how do thousands of computers agree on which new block to add next? They use a consensus mechanism — a set of rules the whole network follows to reach agreement without having to trust each other personally. The two dominant mechanisms are proof-of-work and proof-of-stake.

Proof of Work

Proof of work is the mechanism that secures Bitcoin. To earn the right to add the next block, a computer — called a miner — must solve a computationally intensive puzzle: finding a number that, when combined with the block's data and hashed, produces an output below a certain threshold. There is no shortcut; the only method is guessing at enormous speed. The first miner to find a valid answer broadcasts the new block, other nodes verify it in milliseconds, and the winning miner receives newly created cryptocurrency as a reward. The difficulty of the puzzle adjusts automatically so that blocks arrive at a roughly steady pace regardless of how much computing power joins or leaves the network.

Proof of Stake

Proof of stake takes a different approach, used by Ethereum since its 2022 "Merge." Instead of burning electricity on puzzles, participants called validators lock up — or stake — a quantity of the network's own cryptocurrency as collateral. The protocol selects validators to propose and confirm new blocks, weighted by the size of their stake. If a validator tries to cheat, the protocol can destroy part of their staked funds — a penalty called slashing. Honest behavior is economically rewarded; dishonest behavior is economically punished. Proof of stake uses far less energy than proof of work, though the two mechanisms involve different security trade-offs that researchers continue to study.

What Blockchains Are Genuinely Good At

Blockchain architecture solves a specific problem: how to keep a shared record that multiple parties — who do not fully trust each other — can all rely on without appointing a trusted middleman. That problem is real in several contexts.

  • Censorship-resistant payments. A transaction confirmed on a public blockchain cannot be reversed by any single institution. Historically, this has mattered most where banking infrastructure is unreliable or where governments have frozen accounts.
  • Transparent supply chains. When every step of a product's journey is logged on a shared ledger, every participant can verify the record without relying on a single company's internal database.
  • Programmable agreements. Smart contracts — self-executing code stored on a blockchain — can release funds or transfer assets automatically when preset conditions are met, removing the need for an intermediary to enforce the terms.
  • Provable digital scarcity. Because the ledger is public and immutable, it is possible to prove that only a fixed number of units of a digital asset exist — something impossible to guarantee with a conventional database.

What Blockchains Are Not Well Suited For

Blockchain technology involves genuine trade-offs, and neutral observers note several limitations worth understanding.

Limitation Why It Exists
Speed and throughput Reaching consensus across thousands of nodes takes time. Public blockchains typically confirm far fewer transactions per second than centralized payment processors.
Cost Every computation on a blockchain must be verified by the whole network. On busy networks, gas fees — the charges users pay to have transactions processed — can rise sharply during periods of high demand.
Data storage Storing large files on-chain is expensive because every node must replicate the data. Blockchains are better suited to small records (hashes, ownership entries) than to large files (video, images).
Privacy Public blockchains are visible to anyone. While addresses are not automatically linked to real names, the full transaction history is permanently public.
Off-chain data A blockchain can only verify what is written on it. If someone logs false information — say, a fraudulent supply-chain entry — the blockchain records the lie faithfully. The technology ensures data integrity, not data truth.

These trade-offs explain much of the debate around DeFi and broader blockchain adoption. The technology is a genuine innovation for specific problems; it is not a universal upgrade to every kind of database.

Blockchains and Markets

For anyone watching crypto prices, understanding the underlying ledger helps interpret what drives volatility. Network upgrades, changes to consensus rules, and shifts in mining economics can all move prices because they affect the fundamental mechanics of a chain. Traders typically watch metrics like transaction fees, active addresses, and block times alongside price data as signals of network health.

Blockchains also underpin the stablecoins that circulate within crypto markets, the decentralized exchanges where tokens trade, and the custody arrangements that determine how assets are held — all topics with direct market consequences. The ledger, in other words, is not just a technical curiosity; it is the infrastructure the whole ecosystem runs on.

よくある質問

What is a blockchain in simple terms?
A blockchain is a shared digital ledger copied across thousands of computers, where transactions are grouped into blocks and each block is cryptographically sealed to the one before it. Because every participant holds an identical copy and checks each other's work, no single person or organization controls or can quietly alter the record.
What is the difference between proof of work and proof of stake?
Proof of work requires computers to solve energy-intensive mathematical puzzles to earn the right to add a new block — the method Bitcoin uses. Proof of stake instead requires participants to lock up cryptocurrency as collateral and selects them to confirm blocks based on that stake, using far less energy but with different security trade-offs.
Can blockchain data be changed or deleted?
Practically speaking, no — that is the point. Altering any historical block breaks its cryptographic fingerprint and every fingerprint that follows it, so the network immediately detects and rejects the change. Transactions that have been confirmed and buried under many subsequent blocks are considered effectively permanent.
Is every blockchain a cryptocurrency?
No. A blockchain is a type of database architecture; cryptocurrency is one application of it. Blockchains can record supply-chain entries, smart contract code, property records, or any other data — cryptocurrency tokens are simply the most widely traded use case and the one that most directly affects financial markets.
教育目的の情報のみ — 投資アドバイスまたは推奨ではありません。市場にはリスクが伴います。例示の数値はあくまで参考です。

続きを読む

企業

Corporate ProfitsIndustrial Production YoY

消費者

Consumer SentimentPersonal Savings RateRetail Sales MoM

GDP

GDPGDP Annual Growth RateGDP Growth Rate一人当たりGDP

財政

Government Debt to GDPGovernment Net Lending/Borrowing

住宅

Building PermitsHousing Starts

労働

Initial Jobless ClaimsNon Farm Payrolls人口失業率

金融

Foreign Exchange Reserves政策金利Lending Interest Rate

物価

Core Inflation RateCore PCE Inflationインフレ率Inflation Rate MoM

貿易

Current Account to GDPExportsExternal Balance (Goods & Services)Imports