Blockchain, at its core, is a decentralized distributed database or ledger. So, how does the "blockchain ledger" keep records? In current blockchain projects, there are two mainstream accountingBlockchain, at its core, is a decentralized distributed database or ledger. So, how does the "blockchain ledger" keep records? In current blockchain projects, there are two mainstream accounting
新手学院/Cryptocurrency Knowledge/Basic Concepts/What Is Uns...put (UTXO)?

What Is Unspent Transaction Output (UTXO)?

Feb 9, 2026MEXC
0m
Hyperliquid
HYPE$72.98+1.23%
狗狗币
DOGE$0.08327+11.04%
比特币
BTC$75,560.01+8.35%


Blockchain, at its core, is a decentralized distributed database or ledger. So, how does the "blockchain ledger" keep records? In current blockchain projects, there are two mainstream accounting methods: The Account Balance Model (represented by Ethereum), and the Unspent Transaction Output (UTXO) Model (represented by Bitcoin). Understanding UTXO helps in comprehending the accounting logic behind Bitcoin's blockchain.

UTXO, which stands for Unspent Transaction Output, can be understood as the fundamental unit in Bitcoin transactions. For example, if Bob receives a Bitcoin payment and doesn't spend it, that Bitcoin becomes a UTXO. The UTXO model is similar to having a wallet where each UTXO is like a one-time-use paper bill. Each UTXO (paper bill) represents a specific amount of money, and by adding up all the UTXOs (paper bills), you can determine a user's balance.

In each transaction, whole integer multiples of UTXOs are used. For example, you can use 1 UTXO, 2 UTXOs, but you can't use fractions like 0.5 UTXO (similar to not being able to use half a paper bill). When a transaction occurs, the existing UTXOs (old paper bills) are consumed, and new UTXOs (new paper bills) are created. For example:In the morning, you go to buy coffee and a pastry, which costs $5. You hand the cashier a $10 bill. This $10 bill, represented as one UTXO, is given to the merchant. The merchant then gives you $5 in change, and at this point, you receive a new UTXO (a new $5 bill).

If this transaction occurs on a blockchain using the UTXO model, how would it operate? To understand this, we can abstract three transfer scenarios with examples, omitting miner fees for simplicity:

1.Two-Person Transactions


Let's assume Bob receives 10 BTC, so he has a UTXO of 10 BTC associated with his Bitcoin address. Now, Bob needs to transfer 2 BTC to Alice. In this case, the 10 BTC UTXO will be spent as a whole (the old paper bill is used up). 2 BTC (new paper bill) will be sent to Alice, and the remaining 8 BTC (new paper bill) will be returned to Bob as change. In other words, the original 10 BTC existed as a single UTXO, but during the transaction, this UTXO (the old paper bill) was destroyed and no longer exists. Instead, it was replaced by two new UTXOs (new paper bills): one belonging to Bob with a value of 8 BTC (which is the change returned to Bob), and the other belonging to Alice with a value of 2 BTC. In the future, Alice can use this UTXO as a balance to transfer to others.


If Alice wants to transfer those 2 BTC to Frank and to prevent Alice from double-spending those 2 BTC (which is akin to the well-known double-spending attack), miners need to verify that the UTXO has not been used in other transactions. If this UTXO has already been spent in a prior transaction, miners will reject the execution of this new transaction.

2. Multi-Party Transactions


Let's go through two examples to deepen our understanding. (1) One Address Transfers to Three Addresses (2) Three Addresses Transfer to One Address. Let's refer to these four addresses as A, B, C, and D. Scenario ① A transfers to B, C, and D. Scenario ② A, B, and C transfer to D. Initially, Address A has 10 BTC while B, C, and D have 0 BTC.

In scenario (1), Address A initially has one 10 BTC UTXO and wants to transfer 2 BTC to each of the addresses B, C, and D.


First, the original 10 BTC UTXO from A is entirely spent, and 2 BTC is sent to each of the addresses B, C, and D. The remaining 4 BTC is returned to A as change. At this point, the previous 10 BTC UTXO no longer exists and becomes four new UTXOs, one belonging to A valued at 4 BTC, and the other three belonging to B, C, and D, all valued at 2 BTC. After the transfer occurs, there is 1 UTXO of 4 BTC in Address A, 1 UTXO of 2 BTC in Address B, 1 UTXO of 2 BTC in Address C, and 1 UTXO of 2 BTC in Address D.

Now, let's simulate scenario (2), where A, B, and C each transfer 2 BTC to D.


The UTXO of 4 BTC at Address A will be spent as a whole, of which 2 BTC is transferred to D and 2 BTC is given as change to itself. The UTXO of 2 BTC in Address B is transferred to D, and the UTXO of 2 BTC in Address C is transferred to D. After the transfers have occurred, there will be 1 UTXO of 2 BTC in Address A, none at Address B, none at Address C, and 4 UTXOs of 2 BTC at Address D (1 of which is left over from the transfer happening in scenario ① and the rest are from scenario ②).

3. Two-Person Transaction, One Person has Multiple UTXOs


Suppose A has multiple UTXOs, which are 1 BTC UTXO, 2 BTC UTXO, 3 BTC UTXO, and 4 BTC UTXO, and B has no BTC. At this point, A needs to transfer 2.5 BTC to B. How does the UTXO model work?


At this point, the UTXO of 2 BTC in Address A will be transferred directly to B. The UTXO of 1 BTC will be spent as a whole, of which 0.5 BTC will be transferred to B, and 0.5 BTC will be given back as change. After the transfer, there are still 0.5 BTC UTXO, 3 BTC UTXO and 4 BTC UTXO in Address A. B has 2 BTC UTXO and 0.5 BTC UTXO.

In cryptocurrencies that utilize the UTXO model, if a user mistakenly enters an incorrect contract address, it is highly likely that the funds will be irrecoverable. This is because UTXOs do not store additional information about the transaction's outgoing state, and once a cryptocurrency transaction is completed, the corresponding UTXO no longer exists in the database. In essence, the system assumes that you have already spent the funds, and this action cannot be undone. Furthermore, if the contract address is incompatible or incorrect, it can lead to erroneous inputs, meaning the recipient cannot properly receive the cryptocurrency. As a result, it is very probable that the cryptocurrency will be unrecoverable.

We can see that: ① UTXOs record events rather than final states. ② Each UTXO represents a specific quantity of Bitcoin, and the sum of all UTXOs determines the account balance. ③ A UTXO is a Bitcoin transaction output. ④ A complete transaction consists of transaction outputs (senders) and transaction inputs (recipients). Transaction outputs can be referred to as Outputs, and transaction inputs can be referred to as Inputs. After a transaction is completed, any newly generated UTXOs are recorded in the Bitcoin ledger and can be used for further transactions. UTXOs, as the cornerstone of Bitcoin transactions, offer advantages such as security, privacy, and scalability. They serve as the foundational transaction framework for numerous blockchain projects.

The following tokens listed on MEXC use the UTXO model:


ADA, AE, AVAX, BCH, BCHA, BEAM, BHD, BSV, BTC, BTCV, BTM, BTM2, CHIA, CKB, DASH, DOGE, FIRO, HC, HNS, HYDRA, IOEX, KAS(KASPA), LBC, LBTC, LTC, MASS, PAC, PLCU, PSL, QTUM, RVN, SC, SYS, UT, WIT, XRD, XVG, ZEL, ZEN


If there is an error in transferring the cryptocurrency mentioned above, we will be unable to assist in recovering it. Please make sure to enter the correct deposit address before initiating any deposits!


市场机遇
Hyperliquid 图标
Hyperliquid实时价格 (HYPE)
$72.96
$72.96$72.96
-0.28%
USD
Hyperliquid (HYPE) 实时价格图表

热门加密动态

查看更多
山寨币季节是否已经回归?ETH、SOL、XRP与HYPE跟随比特币走强全面暴涨

山寨币季节是否已经回归?ETH、SOL、XRP与HYPE跟随比特币走强全面暴涨

概述 随着比特币(BTC)强势逼近 70,000 美元整数大关,全球加密资产市场的定价格局正在发生显著质变。本轮上涨不再是由比特币独领风骚的单边行情,市场广度呈现出爆发式扩张。以太坊(ETH)单日暴涨近 18% 并站上 2,200 美元,索拉纳(SOL)与瑞波币(XRP)联袂走强,去中心化衍生品原生代币 Hyperliquid(HYPE)单日录得大幅拉升。资金由底层储备资产向高贝塔值应用层代币加速

地缘危机惊魂24小时:比特币震荡企稳,链上巨头Hyperliquid正悄悄瓜分CEX流量

地缘危机惊魂24小时:比特币震荡企稳,链上巨头Hyperliquid正悄悄瓜分CEX流量

概述 本周末,美伊谈判再度陷入僵局,地缘政治风险骤然升温,比特币(BTC)与以太坊(ETH)随之走低,加密市场上演了一场"黑天鹅惊魂"。然而在市场随宏观情绪逐步企稳的同时,一个更值得关注的结构性趋势正在成形:以 Hyperliquid 为代表的链上衍生品生态,凭借真实可验证的链上收益和持续攀升的交易量,正在悄然分流传统中心化交易所(CEX)的用户与资金。本文将从宏观压力触发的市场反应切入,深度解析

ZEC黑天鹅只是幌子?NEAR 与 HYPE 暴跌背后的巨鲸爆仓真相

ZEC黑天鹅只是幌子?NEAR 与 HYPE 暴跌背后的巨鲸爆仓真相

Zcash Orchard 池曝出可无限伪造 ZEC 的严重漏洞,ZEC 单日暴跌近 30%,并拖累 HYPE、NEAR 等强势山寨币同步回调。本文深度拆解事件全貌、市场影响及后续展望。 概述 2026 年 6 月初,一个存在长达四年的零知识证明漏洞在 Zcash Orchard 屏蔽池中被曝光。这一漏洞理论上允许攻击者无限量伪造 ZEC 且完全不被链上检测到,消息公开后 ZEC 价格单日最大跌幅

HYPE 创历史新高,机构 ETF 资金涌入超 1 亿美元

HYPE 创历史新高,机构 ETF 资金涌入超 1 亿美元

Hyperliquid(HYPE)代币突破历史高点,Bitwise BHYP ETF 规模超 1 亿美元,机构资金正以前所未有的速度涌入这一去中心化衍生品协议。本文深度解析背后的驱动逻辑与投资风险。 概述 2026 年 5 月,Hyperliquid 的原生代币 HYPE 连续刷新历史高点,最高触及 73.48 美元,将市值推升至 150 亿美元以上,一度超越 Dogecoin 成为全球第九大加密

热门新闻

查看更多
114514币价还能继续上涨吗?市场热度与理性分析的博弈

114514币价还能继续上涨吗?市场热度与理性分析的博弈

2026年初,加密货币市场再次迎来memecoin的狂热浪潮。114514币作为深植于亚洲网络文化的代表性项目,在过去几周经历了令人瞩目的价格波动。从1月初的低点至今,该代币价格已经上涨超过300%,交易量激增,社交媒体讨论度持续攀升。这让许多投资者不禁发问:114514币的上涨势头还能持续多久?现在入场是否为时已晚?

Hyperliquid 销毁 HYPE:回购足以支撑下一轮交易吗?

Hyperliquid 销毁 HYPE:回购足以支撑下一轮交易吗?

Hyperliquid的HYPE销毁将协议费用与代币供应量减少挂钩,但投资者需要判断相对于估值、交易量和未来流通量而言,回购力度是否足够强劲。

Hyperliquid 回应 Trade.xyz SK 海力士定价错误:HIP-3 交易者应吸取的教训

Hyperliquid 回应 Trade.xyz SK 海力士定价错误:HIP-3 交易者应吸取的教训

Hyperliquid 联合创始人 iliensinc 表示,Trade.xyz 的 SK Hynix 永续合约由 XYZ 团队部署和运营。以下是该事件为何对 HIP-3 市场、预言机风险以及 HYPE 投资者至关重要的原因。

日本eole完成首次HYPE购买,计划投资1亿日元

日本eole完成首次HYPE购买,计划投资1亿日元

日本上市的eole首次购入HYPE,并计划于8月前将总投资额提高至1亿日元,将Hyperliquid与其Neo Crypto Bank战略相挂钩。

相关文章

查看更多
加密货币恐惧与贪婪指数跌入极度恐惧,代表什么意义及投资者应如何应对

加密货币恐惧与贪婪指数跌入极度恐惧,代表什么意义及投资者应如何应对

截至2026年5月28日,加密货币恐惧与贪婪指数已急跌至22,再次将市场推入极度恐惧区域。 社交媒体充斥着恐慌警报,交易者纷纷质疑这究竟是市场底部,还是更深跌势的开端。 本指南说明恐惧与贪婪指数的实际衡量内容、今日驱动指数跌至22的原因,以及不同处境的投资者当下应切实考虑采取哪些行动。 核心要点 加密货币恐惧与贪婪指数在0至100的范围内衡量市场情绪,将六项数据信号——包括波动率、交易量及社交媒体

什么是比特币减半?加密货币关键事件倒计时完整指南

什么是比特币减半?加密货币关键事件倒计时完整指南

比特币减半比特币减半是加密货币世界中最重要和最受期待的事件之一。对于加密货币领域的新手来说,了解减半是什么以及为何重要是掌握比特币经济学和潜在价值的关键。比特币减半是指通过将挖矿新块的奖励减少一半来降低比特币流通速度的事件。这个机制内嵌于比特币的代码中,大约每四年发生一次,创造了一个可预测的时间表,影响比特币的稀缺性以及可能的价格。最近一次比特币减半发生在2024年4月20日,当时区块奖励从6.2

什么是智能合约?区块链自动化终极初学者指南

什么是智能合约?区块链自动化终极初学者指南

智能合约是一个计算机程序或交易协议,根据预定义的条款和条件自动执行、控制或记录事件和动作。智能合约由Nick Szabo在1994年首次提出概念,已经演变为区块链技术、加密货币、去中心化金融(DeFi)和非同质化代币(NFT)的基本构建块。与需要律师或公证人等中介的传统合同不同,智能合约在区块链网络上运行,当特定条件满足时自动执行。它们提供降低成本、增强安全性和提高透明度等好处,同时消除对可信第三

什么是加密货币?加密货币是如何运作的?数字资产初学者的完整指南

什么是加密货币?加密货币是如何运作的?数字资产初学者的完整指南

Cryptocurrency欢迎来到进入令人兴奋的加密货币世界的门户!无论您是听说过比特币价格的暴涨,还是对数字货币改变金融格局感到好奇,这本指南将为您提供有关加密货币的基本知识。阅读完本文后,您将了解什么是加密货币,它是如何运作的,市面上有哪些不同类型,以及如何在像 MEXC 这样的平台上开始交易。这本为初学者准备的指南打破了技术术语,为任何希望探索这一数字金融革命的人提供清晰、实用的信息。关键

注册MEXC账号
注册 & 获得高达10,000 USDT奖金
您的稳定币真的安全吗?
您的稳定币真的安全吗?您的稳定币真的安全吗?
了解 USDT、USDC、OpenUSD 及 USD1 的风险