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 Working knowledge 7 min

What is a blockchain network actually agreeing on?

Consensus is not agreement about truth or value; it is agreement about the order of transactions and which valid history counts.

A network reaches consensus on one thing above all: the order of transactions, and therefore which of several possible histories counts as the real one. It does not agree on what anything is worth, on whether a transaction was sensible, or on any fact that lives outside the ledger. Everything else described as consensus is built on that narrow foundation.

The problem being solved, stated precisely

Digital records copy perfectly, which is exactly the property that makes a purely digital bearer instrument hard. If a balance is just a number in a file, the same balance can be spent twice by sending two conflicting messages to two different recipients. Conventional payment systems solve this by appointing one database as authoritative: the bank's ledger is correct because it is the bank's ledger, and any disagreement is resolved by looking at it.

A distributed ledger removes the appointed operator, so thousands of independent copies have to converge on the same history without any of them being in charge, while some unknown fraction of participants may be faulty, offline, or actively dishonest. That is the whole engineering problem. The academic name for it is Byzantine fault tolerance; the practical name is a consensus mechanism.

Two jobs that are often confused: validity and ordering

Validity is checked locally and needs no vote. Every node can independently confirm that a transaction carries a correct digital signature, that it spends coins that exist under the chain's accounting model — unspent outputs in a UTXO design, balances in an account model — and that it obeys the resource limits of the protocol. A block containing an invalid transaction is not a contested block; it is simply rejected by everyone who checks, no matter who produced it or how much work stands behind it.

Ordering is the part that genuinely requires agreement, because two transactions can each be individually valid and yet be mutually exclusive. Both spend the same coin; only the first in the accepted order takes effect. Pending transactions sit in each node's mempool in no canonical sequence at all, and the mempool is not a queue with a guaranteed order — it is a local, approximate, constantly changing set. Consensus is the procedure that turns that unordered set into one sequence, block by block.

Why the right to propose has to be costly

An open network cannot count votes by identity, because identities are free to create. A protocol that gave one vote per participant would be captured by whoever was willing to run ten thousand copies of the software, an attack named after the fictional patient with many personalities. The only durable answer is to attach the right to propose a block to something scarce and externally verifiable.

Proof of work attaches it to computation, which costs electricity and hardware time outside the system. Proof of stake attaches it to capital locked inside the system, which the protocol can destroy. The two designs are usually presented as rivals, and they do differ in important ways, but they are answers to one question: who gets to speak next, and what does lying cost them.

The chain, mechanically

Each block contains a compact fingerprint of the previous block, produced by a hash function. Because the fingerprint changes completely if any input byte changes, altering an old block invalidates every fingerprint after it. That is the sense in which history is immutable: not that it is impossible to change, but that changing it requires redoing everything built on top, in public, faster than everyone else is building forward. The chain of fingerprints runs back to a first block, the genesis block, which Bitcoin's network produced in January 2009. Position in the chain is measured as block height.

The decisive rule is the one nodes use to choose between competing chains. Under proof of work it selects the chain with the most cumulative work; proof-of-stake designs use variants weighted by attesting stake. This is why consensus is not a meeting or a poll at a moment in time. Each node applies the same deterministic rule to the same evidence and independently arrives at the same answer, which is what allows a node that was offline for a month to catch up without asking anyone's permission.

What consensus explicitly does not decide

It does not establish facts about the outside world. A contract that needs an exchange rate, a temperature, or a shipment confirmation gets it from an oracle, and the consensus rules will faithfully record whatever that off-chain data feed says, including nonsense. It does not make code correct: a smart contract that drains itself will be executed exactly as written, which is why smart contract risk is treated as a separate category of risk entirely.

It does not guarantee that a given transaction gets included, only that whatever is included is ordered consistently; refusal to include is censorship risk and lives at a different layer. And it does not decide the rules themselves. Changing what counts as valid is governance, not consensus, and it happens through software releases and coordinated activation rather than through the block-by-block process described here.

Reading it in data

Three published figures describe a consensus system's shape more usefully than any narrative about it. Block time sets the pace at which the order is extended and the granularity of every downstream measurement. Node count approximates how many parties are checking rules independently rather than trusting someone else's answer. The Nakamoto coefficient counts the smallest number of entities that would have to cooperate to control block production, which is a far sharper question than whether a network calls itself decentralized. None of the three is a quality score, and each is an estimate with a documented method.

The next lessons in this track take the two dominant answers apart in turn, starting with the cost proof of work imposes and the bond proof of stake requires. To see how these figures are compiled for individual networks, look at network activity and the metric catalog, and read methodology for how node counts and coefficients are estimated rather than observed.

01

핵심 요점

Consensus decides the order of transactions and which competing history is canonical, not what an asset is worth or whether a transaction was sensible.
Validity is checked independently by every node and needs no vote; only ordering genuinely requires a consensus mechanism.
Because identities are free to create, the right to propose blocks must be attached to a scarce resource such as computation or bonded capital.
Consensus does not verify off-chain facts, does not make contract code correct, and does not decide the protocol rules themselves.

자산

전체 자산섹터순위Heat map스크리너비교저장됨

기본 지표

Fees & revenue잠긴 가치Exchange volume네트워크 활동StablecoinsStaking & yield

Valuation & risk

밸류에이션 비율Supply & issuance지표 정의리스크 프레임워크보안 사고

기관

상장지수상품기업 재무 보유분Events리서치 노트뉴스

학습

Learn library용어집계산기데이터에 묻기AI agents공개 API

소개

소개문의방법론데이터 출처편집 정책데이터 최신성

법적 고지

면책 조항이용 약관Privacy policy