Digital Asset Database Digital asset research & education
BTC$77,103-0.11% ETH$2,383-1.11% USDT$0.9997+0.01% BNB$686.39+0.97% XRP$1.35+0.16% USDC$0.9998+0.01% SOL$99.68+0.05% TRX$0.3245+0.62% FIGR_HELOC$1.01+0.03% HYPE$81.59-0.85% ZEC$810.98-2.09% DOGE$0.0812-0.35% RAIN$0.0167+0.80% USDS$0.9999+0.01% XMR$504.59+2.10% LEO$9.24-1.37% WBT$70.62-0.56% LINK$11.07-0.95% ADA$0.1986+1.86% XLM$0.1744-0.29% BCH$242.83-0.73% DAI$0.9998+0.01% CC$0.1091-3.88% USDE$0.9995+0.01% USD1$0.9993+0.00% LTC$49.61+0.04% GRAM$1.33+1.17% UNI$5.85+1.01% HBAR$0.0741+0.34% USDG$1.00+0.04% AVAX$7.16-0.34% SHIB$0.00000515+0.44%
メニュー
ホーム
資産 全資産セクターランキングHeat mapスクリーナー資産を比較★ Saved
ファンダメンタルズ Fees & revenueロック済み価値Exchange volumeネットワーク活動StablecoinsStaking & yield
バリュエーション バリュエーション指標Supply & issuance指標の定義
機関投資家 上場取引型プロダクト企業の保有資産
リサーチ リサーチノートイベントカレンダーリスクフレームワークセキュリティインシデント
学ぶ Learn library用語集計算ツール方法論データソースデータの鮮度AI agentsパブリックAPI
ニュース データに問い合わせる グローバル市場 当サイトについて
表示オプション
Photography CryptoStudio
ガイド表示

価格、利回り、market capとは何か — マーケット初心者の方向けです。閲覧しながらすべての用語を平易な言葉で説明します。同じデータに、解説が組み込まれています。

専門家の見解

マーケットはすでにご存知の方向けです。データだけを — クリーンに、速く、コンパクトに、余分な説明なしで提供します。これがデフォルトの表示です。

ライトまたはダーク
言語
パブリックAPI

本サイトのすべての数値は、対象期間とソースを付記したJSON形式で取得できる。

API ドキュメントを読む
How networks work Foundation 7 min

What a node does, and why running one matters

A full node checks every rule itself; light clients, archive nodes and hosted endpoints each trade part of that checking for convenience.

A node is a program that holds a copy of the rules and applies them to everything it is told. That is the entire definition, and it is the reason a network of strangers can operate without an authority: a node that checks for itself cannot be lied to about the ledger, only ignored. The different node types on offer trade away portions of that checking in exchange for lower cost, and knowing which portion is being traded is the practical skill.

What verification means in practice

When a node receives a block, it re-executes the work rather than accepting a summary. It confirms that the block references the previous one correctly, that every included transaction carries a valid digital signature, that no coin is spent twice against its own copy of the state, that resource limits are respected, and that the block satisfies the consensus rule — sufficient work, or attestations from the right validators. Only then does it extend its chain and relay the block onward.

The commitments that make this efficient come from a Merkle tree, which compresses a set of transactions into a single root fingerprint such that any individual member can be proven present with a short path rather than the whole set. This is what allows a lightweight client to verify membership without holding everything, and it is the structure underneath most proofs exchanged between chains and layers.

The practical value of doing this personally is narrower and more concrete than the slogans suggest. A full node cannot be told that units exist which the rules never created, cannot be shown a payment that was not actually included, and does not have to ask anyone whether a transaction confirmed. It also improves privacy, because a node that holds the whole chain never has to reveal which addresses it cares about. What it does not do is protect against losing a key, against a badly written contract, or against a counterparty failing, which are different categories of risk handled elsewhere.

The node menu

TypeWhat it storesWhat it verifiesWhat it trusts
Full node, prunedCurrent state and recent blocksEvery rule, for every block it processesNothing beyond its own software
Archive nodeEvery historical state, at every heightEvery rule, and can reconstruct any past balanceNothing beyond its own software
Light clientBlock headers and requested proofsMembership and header validityThat honest peers exist to supply data
Wallet on a hosted endpointKeys onlyNothing about the chainThe provider's answers entirely

A pruned full node is the standard configuration and is far less demanding than most people assume, because keeping every historical state is what makes archive nodes large. Archive nodes exist mainly for analytics, block explorers and indexers, which need to answer questions about the past rather than about now. A light client downloads headers and asks peers for proofs of the specific facts it needs, which is a genuine security model rather than a trust-me arrangement, though a weaker one than full validation.

The layer where trust quietly returns

Most wallets and most applications do not run any of this. They send queries to a remote endpoint operated by a service company, which runs the node on their behalf. The convenience is real and so is the re-imported trust: such a provider can report a balance that does not exist, omit transactions, go offline at the worst moment, decline to relay a particular transaction, and record which addresses are queried together from which network address, which is a meaningful privacy leak even for a chain whose data is public.

None of this lets a provider spend anyone's coins, because spending needs the private key and self-custody means holding it. The exposure is to being misinformed and to being excluded, not to theft. It is also a concentration story: a handful of endpoint providers serve a large share of application traffic on major networks, which is a form of centralization risk that does not appear in any consensus-layer statistic.

Client diversity, which is a different problem

Independent teams write independent implementations of the same protocol. That redundancy is protective — a bug in one implementation is usually caught by the others rejecting its blocks — but only when no single implementation dominates. If a supermajority of the network runs one client and that client accepts an invalid block, the invalid chain can gain a majority and the minority correct nodes are the ones that appear to be forked off. Under proof of stake there is a sharper version: a client bug causing mass equivocation can lead to correlated slashing across every validator running it.

This is why node client diversity is tracked separately from node count, and why client concentration appears in serious risk assessments. A network with many nodes all running the same code has one point of failure wearing a large number of hats.

What it costs and why the number matters

Chain size is the headline cost and it grows monotonically with usage; bandwidth for relaying blocks and transactions is the recurring one; initial sync time is the friction that discourages people most. These costs are also a design constraint with a political edge: raising throughput generally raises the resources required to validate, which reduces the population able to run a node independently, which shifts the network toward the hosted-endpoint model described above. That trade-off sits underneath most long-running debates about block size and throughput on any chain.

Node count is the corresponding measurement, and it should be read as an estimate. Reachable nodes can be counted by crawling; nodes behind firewalls cannot, so published figures are lower bounds with methodology attached. A rising count indicates broader independent verification, not necessarily broader use.

The next lesson covers who decides what those nodes are running. Compare node counts and chain sizes across networks on the comparison tool, and read data sources for how these counts are collected.

01

要点

A full node re-executes and re-checks every rule, which is why it cannot be misinformed about the ledger, only ignored.
Archive nodes are large because they retain every historical state; ordinary pruned full nodes are far less demanding.
Wallets that query hosted endpoints re-import trust in the form of possible misinformation, exclusion and query-level privacy leakage, though not theft.
Client diversity guards against implementation bugs, and under proof of stake a dominant buggy client can cause correlated slashing.
Higher throughput generally raises validation costs, which reduces the number of parties able to verify independently.

資産

全資産セクターランキングHeat mapスクリーナー比較保存済み

ファンダメンタルズ

Fees & revenueロック済み価値Exchange volumeネットワーク活動StablecoinsStaking & yield

Valuation & risk

バリュエーション指標Supply & issuance指標の定義リスクフレームワークセキュリティインシデント

機関投資家

上場取引型プロダクト企業の保有資産Eventsリサーチノートニュース

学ぶ

Learn library用語集計算ツールデータに問い合わせるAI agentsパブリックAPI

概要

当サイトについてお問い合わせ方法論データソース編集方針データの鮮度

法律

免責事項利用規約Privacy policy