Fiber Network:基于 CKB 的公共闪电网络

币界网2024-08-23 tarihinde yayınlandı2024-08-23 tarihinde güncellendi

币界网报道:

概述

Fiber Network 是一个基于 Nervos CKB 和链外通道构建的下一代公共闪电网络,可以为 RGB++ 资产提供快速、低成本和去中⼼化的多币种⽀付和点对点交易。

背景

区块链技术的发展与挑战

区块链技术自比特币问世以来,经历了迅猛的发展.从最初的简单支付功能,逐步扩展到智能合约、去中心化金融(DeFi)、非同质化代币(NFT)等广泛的应用领域。尽管区块链技术在安全性、透明度和去中心化方面具备显著优势,但其在扩展性和交易速度方面面临诸多挑战。

  1. 扩展性问题:传统区块链如比特币和以太坊在交易吞吐量上存在显著瓶颈。由于比特币的区块大小限制和 10 分钟的区块生成时间,其网络每秒只能处理约7笔交易;以太坊尽管有所改进,但每秒处理交易的能力也远低于传统支付网络。

  2. 高昂的交易费用:随着网络拥堵的加剧,交易费用显著上升。例如,以太坊网络上高峰期的 Gas 费用可能高于交易金额本身,这严重影响了用户体验并降低了小额支付的可行性。

  3. 交易确认时间长:在传统区块链网络中,交易需要等待多个区块确认才能被视为最终确认。这一过程可能耗时数分钟到数小时,不适用于即时支付的应用场景。

Nervos CKB 虽然在性能以及确认时间上有所改进,但仍然需要进一步提高交易速度和降低交易成本,以满足小额支付和即时支付的需求。

闪电网络的启示

闪电网络(Lightning Network)作为比特币网络的二层扩展解决方案,通过链下交易和支付通道技术,成功实现了快速、低成本的微支付。其核心理念包括:

  1. 支付通道:用户在链上创建支付通道,通道开启后,双方可以无限次地进行链下交易,只有在通道关闭时才进行链上结算。这显著减少了链上交易数量,提升了交易速度,降低了交易费用。

  2. 哈希时间锁合约(HTLC):通过 HTLC 技术闪电网络可以确保资金的安全转移,避免交易对手风险。即使在链下交易失败的情况下,用户也能通过链上合约获得资金保障。

  3. 路由机制:闪电网络使用多跳路由,使得用户不需要与收款方开设直接通道即可完成支付,因此提高了网络的灵活性和可用性。

Nervos CKB 的优势

Nervos CKB 是一个专注于通用性和安全性的区块链平台。其独特的设计使其在解决区块链扩展性和互操作性问题上具备独特优势:

  1. 共识机制:基于 NC-Max[1]共识协议,同时在结合了工作量证明(PoW)和状态租赁机制,确保网络安全性和资源利用的有效性。

  2. 强大的智能合约模型:CKB 独有的 Cell 模型和 RISC-V 指令集虚拟机大大增强了 UTXO 模型的能力,不仅支持图灵完备的智能合约,还能轻松实现抽象账户以及 covenant 等特性,为去中心化应用提供了更灵活的可编程性,以及更好的互操作性和扩展性。

  3. 经济模型:CKB 的经济模型鼓励长期持有和合理使用网络资源,为去中心化应用,开发者和用户提供了安全可持续的去中心化生态环境。

Fiber Network 项目的意义

通过在 Nervos CKB 上构建链外通道,我们希望结合闪电网络的成功经验和 CKB 的技术优势,构建一个快速、低成本和去中心化的多资产实时支付交换网络。具体而言:

  1. 解决扩展性问题:通过链下支付通道和多跳路由技术,Fiber network 可以实现高吞吐量的交易处理,从而满足大规模用户的需求。

  2. 降低交易成本:减少链上交易频次,降低用户的交易费用,使得小额支付变得可行和高效。

  3. 提高交易速度:通过即时确认的链下交易,实现秒级支付确认体验,适用于各种即时支付场景。

  4. 多资产支持:支持多种数字资产的支付,为用户提供更广泛的支付选择。

  5. 支持网络互操作: 支持与比特币闪电网络的互操作,为跨链支付和资产转移提供支持。

架构设计

总体架构

Fiber Network 总体架构包括以下核心模块:

  • 链下支付通道(Fiber Channels)

  • 链上合约(HTLC)

  • 多跳路由(Multi-Hop Routing)

  • 监控服务(Watchtower Service)

链下支付通道

链下支付通道是 Fiber Network 的核心,通过它可以实现多次链下交易,仅在通道关闭时进行链上结算。这种机制显著减少了链上交易的数量,提高了交易速度和降低了交易费用。

大致的工作流程如下:

  1. 通道创建:双方用户在链上创建支付通道,锁定一定数量的 CKB 或者 RGB++ 资产。

  2. 链下交易:在通道开启期间,双方可以任意次进行链下交易,每次交易都更新通道状态,但不需要立即广播到链上。

  3. 通道关闭:当任一方决定关闭通道时,将最后的通道状态广播到链上进行结算,确保双方的最终余额得到确认。

具体的消息交互格式可以参考Fiber Network P2P Message Protocol[2]

链上合约

目前我们采用哈希时间锁合约(HTLC) 来确保链下交易的安全性并兼容闪电网络。通过它可以避免交易对手风险,确保即使在链下交易失败的情况下,用户也能通过链上合约获得资金保障。

大致的工作流程如下:

  1. 交易发起:支付发起方创建一个带有哈希锁定和时间锁定条件的交易,锁定一定数量的 CKB。

  2. 哈希验证:支付接收方必须在规定时间内提供正确的哈希原象,才能解锁交易,完成资金转移。

  3. 超时退款:如果接收方在规定时间内未能提供正确的哈希原象,交易将自动解锁并退款给支付发起方。

得益于 CKB 的图灵完备性,我们可以实现更灵活以及更安全的链上合约。之后会进一步扩展合约的功能,比如引入基于版本号的撤销机制和更安全的 Point Time-Locked Contracts。

多跳路由

多跳路由技术允许用户在没有和对方直接建立支付通道的情况下,通过多个中间节点完成支付。这种机制增强了网络的灵活性和覆盖范围。

工作流程:

  1. 路径发现:支付发起方通过路由模块发现从自身到支付接收方的最优路径。

  2. 路径锁定:在路径上的每个节点都创建相应的 HTLC 合约,确保资金安全转移。

  3. 支付完成:支付接收方解锁 HTLC,资金依次转移到路径上的各个节点。

同时我们也会在这里用HTLC合约实现跨链的支付,通过 cross-chain hub service 的方式来支持与闪电网络的互操作,具体可以参考Payment Channel Cross-Chain Protocol with HTLC[3]

监控服务

监控服务是 Fiber Network 的重要组成部分,它负责监控链下支付通道的状态,确保通道的安全性和资金的安全。功能和作用如下:

  1. 通道监控:实时监控所有参与用户的支付通道状态,包括通道创建、更新和关闭的过程。

  2. 异常检测:检测通道中的异常活动,如恶意用户试图以旧状态关闭通道或企图双花攻击。

  3. 主动响应:在检测到异常时,及时向区块链网络广播最新的通道状态,防止恶意行为导致的资金损失。

当前进展和计划

目前我们已经完成一个 Fiber Network 的原型,实现了两个节点之间的通道的创建、更新和关闭的基本功能,同时也验证了和比特币闪电网络做跨链的功能。项目代码可在这 2 个 GitHub 仓库中找到:

  • https://github.com/nervosnetwork/fiber

  • https://github.com/nervosnetwork/fiber-scripts

接下来的工作计划准备完成多跳路由和监控服务,以及完善 RPC 接口和 SDK,使得更多的开发者可以方便的接入 Fiber Network。

多跳路由协议基于 Dijkstra 算法来搜索支付路径,以此降低路由费用,并提高多跳路径支付成功率。在 Fiber Network 上线运行之后, 我们会根据网络流量和运行情况优化路由算法, 预计将会提供 2~3 种路径搜索策略,以适应用户不同的路由偏好和需求。Fiber Network 还将引入多路径支付策略,将较大的支付额分成多份,每一份由不同的路径传送,进一步增加支付成功概率。

监控服务将由 Fiber Network 中的一些节点提供, 他们保持在线,关注网络中的异常情况,帮助保护通道中的资产。监控服务还将追踪 cross-chain hub service。即使用户在一段时间内离线, 监控服务也能确保与闪电网络的交换能成功进行。

此外,我们还将考虑在 Fiber Network 中加入更多功能,比如,利用 CKB 的可编程性实现隐私保护算法, 并基于此优化路由算法和监控服务,保护用户支付信息的安全和隐私。

Trend Kriptolar

İlgili Okumalar

Web3 Bear Market Survival Guide: Ten Great Books to Help You Navigate the Cycles

"Web3 Bear Market Survival Guide: Ten Books to Help You Navigate the Cycle" This article presents a curated book list aimed at helping Web3 enthusiasts and professionals endure and grow during crypto market downturns. It argues that bear markets are not just periods of waiting but crucial times for deepening one's foundational understanding beyond technical whitepapers and price charts. The ten recommended books offer perspectives on technology, economics, philosophy, and strategy to build resilience and long-term vision. The list includes: 1. **"The Inevitable" by Kevin Kelly:** For using a long-term technological lens to combat uncertainty about the future, including the role of crypto and AI. 2. **"Human Action" by Ludwig von Mises:** To upgrade one's economic and philosophical framework, understanding action, speculation, and calculation in a bear market context. 3. **"The Nature of Technology" by W. Brian Arthur:** For viewing blockchain and crypto as combinatorial evolutions of existing technologies, understanding their modular and economic development. 4. **"The Distant Savior" (Chinese novel):** Explores the cultural attributes of self-reliance ("strong culture") versus dependency ("weak culture"), crucial for surviving industry cycles. 5. **"The Sovereign Individual" by James Dale Davidson & Lord William Rees-Mogg:** A prophetic 1997 work on how technology empowers individuals and challenges nation-states, foreshadowing Bitcoin's emergence. 6. **"Japanization: What the World Can Learn from Japan's Lost Decades" (Adapted title):** Uses Japan's economic history as a case study to identify structural opportunities that persist even during broader recessions. 7. **"Denationalisation of Money" by F.A. Hayek:** The ideological blueprint for Bitcoin, arguing for competitive currency issuance beyond state monopoly. 8. **"Duan Yongping Investment Q&A" (Chinese compilation):** Emphasizes the simple discipline of "doing the right things and doing things right," focusing on fundamentals and maintaining a "stop doing list." 9. **"The Network State: How To Start a New Country" by Balaji Srinivasan:** A visionary text from a crypto insider outlining bold predictions and concrete ideas for a blockchain-based future across media, governance, and identity. 10. **"Selected Works of Mao Zedong" (Vol. 1):** Analyzed as a strategic playbook for a weak force challenging a powerful establishment, offering lessons on strategy, alliance-building, and perseverance for the crypto movement. The conclusion states that bear markets filter out those with weak conviction, not weak skills. Survival depends on cognitive depth and mental fortitude, which these books aim to provide.

Foresight News23 dk önce

Web3 Bear Market Survival Guide: Ten Great Books to Help You Navigate the Cycles

Foresight News23 dk önce

Who is the Most Profitable Man in the Crypto World? Trump Rakes in Over $1.427 Billion in 2025

Who is the most profitable man in crypto? President Trump's 2025 financial disclosure, filed with the Office of Government Ethics, reveals crypto-related earnings exceeding $1.427 billion, starkly contrasting the broader market downturn. The bulk of this wealth stems not from passive investment but from his entities' roles as issuers and licensors. CIC Digital LLC, his memecoin operation, generated approximately $636 million in 2025, primarily from "Celebration Coins" royalty fees. DT Marks Defi LLC, a stakeholder in World Liberty Financial, earned about $594 million from asset sales and token distribution proceeds. Other entities held significant Bitcoin, Ethereum, and various altcoin wallets, along with substantial income from stablecoin ventures and his wife's NFT sales. This "issuer model" shields him from market downturns. While his namesake memecoin plummeted from ~$74 to ~$1.68, leaving many retail investors at a loss, his royalty income remained unaffected. The disclosure emerges as the U.S. Senate debates the CLARITY Act, which includes contentious ethics provisions aimed at preventing officials from profiting from the crypto sector they regulate. Critics argue Trump's earnings exemplify a critical conflict of interest, fueling demands for stricter rules to separate regulatory power from personal financial gain in the industry.

Foresight News42 dk önce

Who is the Most Profitable Man in the Crypto World? Trump Rakes in Over $1.427 Billion in 2025

Foresight News42 dk önce

Trump's 25-Year Financial Report: Family Earns Over $1 Billion Annually from Crypto, While Retail Investors Lose Money on $TRUMP

Former President Donald Trump's family earned approximately $1.2 billion from cryptocurrency ventures in 2025, according to a financial disclosure report. This revenue stream, outlined in a 927-page filing, now surpasses income from most of his long-established real estate holdings. The crypto earnings originated from two main sources: over $500 million from the sale of products like "governance tokens" by World Liberty Financial, a DeFi project co-owned by the Trump family, and roughly $635 million in royalties from the Trump-themed meme coin $TRUMP, issued by CIC Digital LLC. While Trump's entities profited, retail investors faced significant losses. The $TRUMP token, which peaked above $74 shortly after its January 2025 launch, has plummeted to around $1.68. World Liberty Financial's token has also fallen roughly 80% since its debut. Reports indicate that the majority of meme coin buyers have lost money, with Trump-linked entities still holding about 80% of $TRUMP's supply under vesting plans. The disclosure highlights a stark contrast: Trump's crypto and real estate businesses flourished—with new international property deals bringing in tens of millions—even as his administration shifted to crypto-friendly policies, relaxing the stringent regulatory stance of the previous Biden administration. The White House maintains that Trump acts only in the public interest, with his businesses placed in a trust managed by his sons, denying any conflict of interest. However, the report notes the difficulty of assessing such conflicts, particularly regarding foreign business dealings with countries that later received favorable U.S. policy decisions.

marsbit43 dk önce

Trump's 25-Year Financial Report: Family Earns Over $1 Billion Annually from Crypto, While Retail Investors Lose Money on $TRUMP

marsbit43 dk önce

From 'Address Clustering' to 'Evidence Standards': Why is Chainalysis Redefining Blockchain Tracing?

**Summary:** In June 2026, Chainalysis introduced the **Blockchain Tracing Ontology (BTO)**, a proposed data framework aiming to establish standardized, transparent, and verifiable models for blockchain analysis. This initiative addresses a core industry issue: despite public blockchain data, different firms often produce inconsistent results (e.g., differing entity labels for the same address) due to non-uniform methodologies, particularly in **address clustering**. This lack of standardization poses challenges for judicial investigations, AML, and enforcement. The BTO is not a new clustering algorithm but a **common "language" or conceptual framework**. It moves beyond the simplistic "cluster" model by introducing a hierarchical structure: **Entity → Wallet → Wallet Segment → Address**, which better reflects complex organizational wallet management. A key shift is from presenting mere results to ensuring **process trust and explainability**. The framework emphasizes documenting the **Evidence** and **Confidence** behind each analytical claim—specifying the on-chain/off-chain data, rules applied, and certainty levels—enabling third-party verification. This focus is partly informed by legal precedents like the **Bitcoin Fog** case, where Chainalysis's methods underwent rigorous judicial scrutiny (Daubert hearing), highlighting the need for reproducible, scientifically sound analysis. The proposal clarifies that on-chain analysis identifies address relationships and flow patterns, not real-world identities, which still require off-chain evidence (e.g., KYC data). Ultimately, Chainalysis envisions steering the industry from an "experience-driven" to a **"standards-driven"** future, where competition centers on **data quality, analytical transparency, and judicial admissibility** rather than just label coverage. Widespread adoption could facilitate cross-agency collaboration, reduce disputes, and provide a more reliable foundation for global compliance and enforcement.

marsbit1 saat önce

From 'Address Clustering' to 'Evidence Standards': Why is Chainalysis Redefining Blockchain Tracing?

marsbit1 saat önce

The 'Conference Circuit' for the Second Half of the Year Begins! A Complete Overview of the 2026 Web3 Global Summit Schedule

"Web3 Global Summit Calendar for the Second Half of 2026" provides a comprehensive list of major Web3 and blockchain conferences worldwide, focusing on events from July to December 2026. The schedule starts in July with IVS in Kyoto, WebX in Tokyo, Canada Crypto Week in Toronto, and Malaysia Blockchain Week in Kuala Lumpur. August features Conviction in Ho Chi Minh City, Coinfest Asia in Bali, and Bitcoin Hong Kong. September is the most intense month, with notable events like NFT NYC in New York, ETHRome in Rome, Money20/20 in Saudi Arabia, European Blockchain Convention in Barcelona, and Korea Blockchain Week in Seoul. The fourth quarter begins with the significant TOKEN2049 Singapore in October, which will be the sole TOKEN2049 event of the year following the cancellation of the Dubai edition. November includes Devcon 8 and Bitcoin Amsterdam in Amsterdam, Digital Asset Summit and Solana Breakpoint in London. The year concludes in December with Blockchain Life in Dubai and Bitcoin MENA in Abu Dhabi. The article also lists key events from the first half of the year (January to June, marked as concluded) for reference, including Consensus Hong Kong, ETHDenver, and Paris Blockchain Week. The guide serves as a resource for planning attendance at these industry gatherings across Asia, Europe, North America, and the Middle East.

Foresight News1 saat önce

The 'Conference Circuit' for the Second Half of the Year Begins! A Complete Overview of the 2026 Web3 Global Summit Schedule

Foresight News1 saat önce

İşlemler

Spot

Popüler Makaleler

CKB Nasıl Satın Alınır

HTX.com’a hoş geldiniz! Nervos (CKB) satın alma işlemlerini basit ve kullanışlı bir hâle getirdik. Adım adım açıkladığımız rehberimizi takip ederek kripto yolculuğunuza başlayın. 1. Adım: HTX Hesabınızı OluşturunHTX'te ücretsiz bir hesap açmak için e-posta adresinizi veya telefon numaranızı kullanın. Sorunsuzca kaydolun ve tüm özelliklerin kilidini açın. Hesabımı Aç2. Adım: Kripto Satın Al Bölümüne Gidin ve Ödeme Yönteminizi SeçinKredi/Banka Kartı: Visa veya Mastercard'ınızı kullanarak anında Nervos (CKB) satın alın.Bakiye: Sorunsuz bir şekilde işlem yapmak için HTX hesap bakiyenizdeki fonları kullanın.Üçüncü Taraflar: Kullanımı kolaylaştırmak için Google Pay ve Apple Pay gibi popüler ödeme yöntemlerini ekledik.P2P: HTX'teki diğer kullanıcılarla doğrudan işlem yapın.Borsa Dışı (OTC): Yatırımcılar için kişiye özel hizmetler ve rekabetçi döviz kurları sunuyoruz.3. Adım: Nervos (CKB) Varlıklarınızı SaklayınNervos (CKB) satın aldıktan sonra HTX hesabınızda saklayın. Alternatif olarak, blok zinciri transferi yoluyla başka bir yere gönderebilir veya diğer kripto para birimlerini takas etmek için kullanabilirsiniz.4. Adım: Nervos (CKB) Varlıklarınızla İşlem YapınHTX'in spot piyasasında Nervos (CKB) ile kolayca işlemler yapın.Hesabınıza erişin, işlem çiftinizi seçin, işlemlerinizi gerçekleştirin ve gerçek zamanlı olarak izleyin. Hem yeni başlayanlar hem de deneyimli yatırımcılar için kullanıcı dostu bir deneyim sunuyoruz.

133 Toplam GörüntülenmeYayınlanma 2024.12.10Güncellenme 2026.06.02

CKB Nasıl Satın Alınır

Tartışmalar

HTX Topluluğuna hoş geldiniz. Burada, en son platform gelişmeleri hakkında bilgi sahibi olabilir ve profesyonel piyasa görüşlerine erişebilirsiniz. Kullanıcıların CKB (CKB) fiyatı hakkındaki görüşleri aşağıda sunulmaktadır.

活动图片