Digital Asset Database Digital asset research & education
BTC$77,689+1.58% ETH$2,396+1.22% USDT$0.9996-0.01% BNB$701.09+2.87% XRP$1.36+3.15% USDC$0.9998+0.00% SOL$100.30+2.08% TRX$0.3269+1.40% FIGR_HELOC$1.01-2.00% HYPE$81.96+0.93% ZEC$829.99+2.95% DOGE$0.0829+2.84% RAIN$0.0166-0.37% USDS$0.9997+0.01% XMR$513.25-0.82% LEO$9.31+0.50% WBT$71.11+1.29% LINK$11.18+1.51% ADA$0.2071+7.07% XLM$0.1765+2.15% BCH$249.93+2.72% DAI$0.9998+0.00% CC$0.1094-3.08% USDE$0.9994-0.01% USD1$0.9994+0.00% LTC$50.51+3.91% UNI$6.01-1.69% GRAM$1.34+1.41% HBAR$0.0768+4.82% USDG$1.00+0.03% AVAX$7.26+2.49% SUI$0.7633+6.97%
メニュー
ホーム
資産 全資産セクターランキングHeat mapスクリーナー資産を比較★ Saved
ファンダメンタルズ Fees & revenueロック済み価値Exchange volumeネットワーク活動StablecoinsStaking & yield
バリュエーション バリュエーション指標Supply & issuance指標の定義
機関投資家 上場取引型プロダクト企業の保有資産
リサーチ リサーチノートイベントカレンダーリスクフレームワークセキュリティインシデント
学ぶ Learn library用語集計算ツール方法論データソースデータの鮮度AI agentsパブリックAPI
ニュース データに問い合わせる グローバル市場 当サイトについて
表示オプション
Photography CryptoStudio
ガイド表示

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

専門家の見解

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

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

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

API ドキュメントを読む
Start here Foundation 6 min

What happens between pressing send and a confirmation

A transaction is signed locally, gossiped to strangers, selected into a block by someone competing to build it, and only then becomes hard to undo.

Pressing send does not move anything. It creates a message, signs it with a key held on the sending device, and broadcasts that message to whichever machines will listen. Everything after that is other people's software deciding whether to relay it, include it and build on top of it, and the sender's only remaining influence is the fee attached.

Signing, which happens entirely on the sender's device

A transaction is a small structured statement: sender, recipient, amount, fee terms, and on account-based chains a nonce that fixes its position in the sender's own sequence and prevents it being replayed. The wallet hashes that statement and produces a digital signature with the private key. Anyone can then verify, using the corresponding public key, that the holder of the key authorized exactly those contents and not some altered version.

Two things follow. The key never leaves the device, which is why a separate hardware signer is useful: malware can propose a payment but cannot sign one. And the signature covers the entire message, so amount and recipient cannot be edited in transit. An address altered by malicious software is altered before signing, not after, which is why address-poisoning attacks work by planting a lookalike address in a clipboard or in a list of recent recipients, where a person copying quickly will not notice the middle characters differ.

Broadcast, and the waiting room

The signed message goes to one or more nodes, which validate it at low cost against basic rules, then gossip it onward to their peers. It now sits in each node's mempool. There is no global queue and no guaranteed order of arrival; different nodes keep slightly different sets, and a transaction paying too little may be evicted from some mempools entirely while surviving in others.

At this point the transaction is public but not executed, and that gap is exploitable. Anyone watching can see the intent, which is the raw material for maximal extractable value. A large swap sitting visibly in the mempool can be surrounded by trades placed immediately before and after it, so the original sender receives a worse price than the quote implied. Private submission channels exist precisely to avoid this exposure, at the cost of relying on a specific relay.

Inclusion

Whoever produces the next block selects transactions from what they can see. On several large chains that role has been split: specialized builders assemble candidate blocks and bid for the right to have them proposed by a validator or a miner. Selection is mostly by fee density, with the builder's own ordering profits added on top, which is why raising the fee is the only reliable way to move up the queue and why no amount of waiting guarantees inclusion at a fee the market has left behind.

Inclusion is not the same as success. A transaction can be included and still fail: a contract call may revert because a required condition was not met, because a price moved beyond a specified tolerance, or because the gas limit was too low for the work involved. The fee for the computation performed is still consumed, because the network did the work. A failed transaction on-chain is a real event with a real cost, not a non-event, and it appears in transaction counts like any other.

Confirmation and finality are different claims

Once included, the transaction has one confirmation. Each subsequent block built on top makes reversal more expensive, since reversing means producing a competing chain branching from before that point and extending it further than the current one. Under proof of work this is probabilistic: no depth is mathematically final, the chance of a reorganization simply falls as depth grows. That is why custodians and exchanges each choose their own confirmation threshold, why those thresholds differ between assets, and why a service crediting funds quickly is accepting a quantified risk rather than following a rule.

Under Ethereum's proof of stake the guarantee is shaped differently. Blocks are proposed in fixed slots, and after roughly two epochs a checkpoint is justified and then finalized, meaning reverting it would require destroying a very large amount of bonded stake. That is a stronger and more explicit form of finality, though it takes minutes rather than seconds. Chains advertising sub-second confirmation are usually describing the moment a block is first seen, not the moment reversal becomes prohibitive, and the difference matters for anything that releases goods on receipt.

Settlement in the financial sense is a further step again. An exchange crediting a balance, or a merchant releasing an order, applies its own policy on top of whatever the chain guarantees, and that policy is where most of the waiting a person experiences actually comes from.

The common ways it goes wrong

A fee set too low leaves the transaction pending. On account-based chains it also blocks every later transaction from the same address, because nonces must be consumed in order, and the standard remedy is to resend with the same nonce and a higher fee rather than to send a second transaction.

Sending an asset over the wrong network, or to an exchange deposit address that does not support that network, is among the more common permanent losses, since the recipient may have no key for the destination even though the address looks valid. Sending a token to a contract that has no logic for handling it has the same effect. Both are consequences of a design in which addresses are just numbers and nothing checks intent.

None of this can be reversed by anyone. There is no support desk with an override, because the absence of one is exactly the property that makes the ledger credible. The only recourse is asking the recipient to send it back, where there is an identifiable recipient who can.

The network activity pages show pending transactions and block time, which together explain most of what someone waiting on a confirmation is experiencing, and the glossary defines each stage named above. The next lesson turns from mechanics to the claim itself, and asks what a holder actually owns.

01

要点

Signing happens locally and covers the entire message, so a transaction's contents cannot be altered after the key has signed them.
A broadcast transaction sits publicly in mempools where its intent can be observed and traded around before it is included.
Inclusion is not success: a reverted contract call still consumes the fee for work the network performed.
Proof-of-work confirmation is probabilistic depth, while Ethereum's proof of stake finalizes checkpoints explicitly after roughly two epochs.
There is no administrative reversal, so a wrong address or a wrong network is normally a permanent loss.

資産

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

ファンダメンタルズ

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

Valuation & risk

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

機関投資家

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

学ぶ

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

概要

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

法律

免責事項利用規約Privacy policy