Zcash's New Node Zakura Goes Live: Privacy Payments Can Reach 50,000 TPS, Aiming to Rival Visa and Mastercard

marsbit2026-07-21 tarihinde yayınlandı2026-07-21 tarihinde güncellendi

Özet

Zcash, a privacy-focused cryptocurrency, has launched a new full node software called Zakura version 1.0.0. Developed by Zcash co-founder Sean Bowe and Dev Ojha, with private ZEC donations, its goal is to enable Zcash to process over 50,000 transactions per second (TPS)—matching the scale of Visa and Mastercard—while maintaining full transaction privacy and verifiability. This addresses a key bottleneck, as Zcash currently handles only about 1 private transaction per second. Zakura is a fork of the Zcash Foundation's Zebra node. It features chain pruning and snapshots, reducing disk usage and allowing new nodes to sync in under two minutes. It also offers compatibility with the legacy `zcashd` client interface. The scalability challenge stems from the large data size of privacy proofs. Bowe's Tachyon project aims to use recursive proofs to reduce consensus-layer data needs from ~500 MB/s to ~100 MB/s. For wallet scalability, Valar Group is researching Private Information Retrieval (PIR) tech to allow wallets to fetch their data privately. Zakura supports fast block propagation and the upcoming "Ironwood" network upgrade (NU6.3), scheduled for activation around July 28th. Ironwood was created to contain a critical inflation bug discovered in the Orchard shielded pool in May 2024. The fix uses "turnstiles" to trap any counterfeit ZEC created during the vulnerability period within the shielded pool, preventing it from entering circulation and restoring supply integrity.

Author: Coindesk

Translated by: TechFlow DeepTide

DeepTide Guide: Zcash currently only processes about 1 privacy transaction per second. The goal of the new node Zakura is to achieve 50,000 TPS while maintaining full privacy—the processing scale of Visa and Mastercard. This is a significant signal for everyone focusing on payment privacy and blockchain scaling: privacy and performance are no longer a trade-off.

Those rebuilding Zcash have a dream: to reach the level of global payment giants Visa and Mastercard, processing tens of thousands of payments per second, while maintaining full verifiability and strong privacy guarantees.

The first piece of this plan is Zakura, a new full node software whose version 1.0.0 was released on Wednesday. It is maintained by Sean Bowe, a founding member of Zcash's zero-knowledge cryptography, and Dev Ojha, co-founder of Osmosis and currently in charge at Valar Group. Both teams are funded by private ZEC donations, not by a company or foundation.

"Our dream is to support global payments. Mastercard and Visa process over 50,000 transactions per second; this is our baseline. Under Zcash's current cryptographic scheme, that volume requires nodes to process over 500 MB per second of throughput," a blog post stated. "The existing tech stack doesn't meet this goal. The cryptographic technology our team is developing will close most of that gap."

A full node is a program that keeps a complete copy of the blockchain, here referring to the Zcash ledger, and independently checks whether every transaction complies with the network's rules. Zakura is a fork of the Zcash Foundation's node software, Zebra—meaning it started from the foundation's official code and was rebuilt.

Consensus rules are the shared rulebook executed by every node, determining which blocks and transactions the entire network accepts as valid. If a node applies different rules, it forks and stops following the same chain as the other nodes.

Pruning, Snapshots, and Compatibility

Zakura can also prune, meaning it deletes old blockchain data that the node no longer needs, significantly reducing disk usage. This compresses the chain small enough that the team released a ready-made copy of about 11 GB after stripping old data. New nodes can download this directly instead of pulling the entire history block by block from other nodes.

This allows a node to go from zero to running in under two minutes, which the team calls "680 times faster."

A compatibility mode further replicates the interface of the original client, zcashd, which is reaching its end-of-life on July 18. This means wallets and exchange integrations built for it can continue to work as usual.

Throughput Goals and Tachyon's Role

The reason for building all this is an arithmetic problem.

Mastercard and Visa process over 50,000 transactions per second, a number the team calls a "baseline, not a target." Zcash's current cryptographic scheme requires nodes to receive and verify over 500 MB of data per second to keep up because each privacy transaction carries a proof, and that proof is large.

This is roughly equivalent to receiving a full DVD's worth of data continuously every 10 seconds, a rate no current Zcash software can approach. But the key is understanding why each bottleneck exists.

Bowe's Tachyon project is addressing this problem with recursive proofs, where one proof can attest to the validity of thousands of other proofs, drastically reducing the amount of data that must be checked at the consensus layer.

Under the Tachyon scheme, nodes validate a single proof instead of thousands. The team claims this will reduce consensus data needs from 100 MB/sec to 500 MB/sec, which they believe is technically achievable with careful engineering.

Wallet Bottleneck and Valar's PIR Solution

Wallets face a different problem. Because Zcash hides the recipient of a transaction, a wallet cannot ask a server which transactions belong to it without revealing itself. It must pull everything and test each one, which is why wallet software tops out at about 1 transaction per second.

To eliminate this bottleneck, Valar Group is researching Private Information Retrieval (PIR) technology, which allows a wallet to fetch its own data from a server without the server knowing which entries were requested.

Fast Block Propagation

Fast block propagation means broadcasting newly mined blocks across the blockchain network as quickly as possible. Zakura is the software layer responsible for this task.

It must be fast enough to transmit new blocks between nodes to enable the heavy proof and wallet traffic. It comes with an experimental system, currently disabled by default, designed to deliver each block to every node within half a second.

Near-term testing of these ideas will arrive in late July. Ironwood, formally named NU6.3, will activate at mainnet block 3,428,143, approximately 8:00 AM ET on July 28. Zakura has supported it since its release.

Bowe stated on July 10 that all major organizations have committed to activating at this height, a week later than originally planned because exchanges and wallet providers requested preparation time.

The Origin of Ironwood

Ironwood exists because of a bug that nearly destroyed Zcash in June. The so-called shielded pool is the private side of the network, where amounts and participants are hidden, with zero-knowledge proofs serving as evidence of mathematical operations.

On May 29, Shielded Labs researcher Taylor Hornby discovered a soundness bug in the proof circuit of Orchard (the latest shielded pool) that allowed an attacker to mint fake ZEC on-chain without a trace. This bug had existed since Orchard's activation in May 2022.

Developers disabled Orchard through an emergency response completed on June 2, then restored it on June 3 with a corrected circuit via the NU6.2 hard fork at block 3,364,600.

The patch couldn't address the four years the bug was open. Zero-knowledge proofs reveal nothing beyond the fact that verification passed, so there is no on-chain record of what any Orchard transaction moved. No one can prove that fake ZEC was never created.

Ironwood was built to solve this problem. So-called "turnstiles" at the pool boundaries limit what can leave and enter, leveraging the fact that the amount of ZEC entering or exiting the shielded pool is public, even if transactions inside the pool are private. By enclosing Orchard to block new deposits, the turnstile becomes the only exit, trapping any fake coins inside.

In simple terms, honest balances can migrate out over time, while fake coins may be prevented from exiting entirely and entering the circulating supply. This setup traps any attempt at excess supply at the boundary, restoring confidence in the token supply.

İlgili Sorular

QWhat is Zakura and what is its main goal for Zcash?

AZakura is a new full node software for Zcash, version 1.0.0, forked from the Zcash Foundation's Zebra. Its main goal is to enable Zcash to process up to 50,000 privacy-preserving transactions per second (TPS), targeting the throughput level of global payment giants like Visa and Mastercard.

QWhat are the two main technological approaches being developed to help Zcash achieve high transaction throughput with privacy?

AThe two main approaches are: 1) Tachyon, which uses recursive proofs to drastically reduce the amount of consensus data nodes need to verify. 2) Private Information Retrieval (PIR) technology being researched by Valar Group, which allows wallets to fetch their own transaction data from a server without revealing which entries they are requesting.

QWhat practical improvements does Zakura offer for node operators in terms of setup and disk usage?

AZakura offers pruning, which deletes old, unnecessary blockchain data, significantly reducing disk usage. It also provides ready-to-use snapshots of the pruned chain (~11 GB), allowing new nodes to sync and start running in under two minutes instead of downloading the entire history block by block.

QWhat is the purpose of the upcoming Ironwood (NU6.3) network upgrade mentioned in the article?

AThe Ironwood (NU6.3) upgrade, scheduled for activation around July 28th, is designed to address a critical integrity vulnerability discovered in the Orchard shielded pool. It creates a 'turnstile' mechanism to contain any counterfeit ZEC that might have been minted during the vulnerability period, preventing it from entering the circulating supply and restoring trust in the token's reliability.

QWhat was the specific vulnerability discovered in Zcash's Orchard shielded pool, and how was it initially addressed?

AOn May 29th, a soundness vulnerability was discovered in Orchard's proof circuit that had existed since its activation in May 2022. This bug could allow an attacker to mint counterfeit ZEC without leaving a trace on-chain. Developers initially addressed it with an emergency response on June 2nd that disabled Orchard, followed by a hard fork (NU6.2) on June 3rd that restored it with a corrected circuit.

İlgili Okumalar

Vitalik Updates Ethereum Roadmap: From Merge to 'Lean Refactoring', with STARK, AI, and Privacy Reshaping the Technical Foundation

Vitalik Buterin has updated Ethereum's long-term roadmap, outlining a major shift from the post-Merge evolution toward a "Lean Ethereum" vision. The update builds on the 2023 framework but reorders priorities and introduces new concepts. Key continuations include improving consensus (single-slot finality), scaling data availability (larger blobs), simplifying light client verification with SNARKs/STARKs, and protocol simplification. Major adjustments involve significantly prioritizing quantum resistance due to heightened perceived threats, while deprioritizing items like VDFs and some EVM improvements. Technical replacements are planned, such as moving from Verkle trees to a unified Binary Tree and eventually PBTs, and rethinking state management with "New State Types." Notable new additions are: 1. Making **privacy a top-tier priority**, aiming to build it natively into the protocol. 2. **Radical scaling under post-quantum conditions**, using techniques like leanSPHINCS signatures and zkzk frames. 3. **Protocol "Lean-ification" and formal verification**, leveraging modern AI tools to make full formal verification feasible. 4. Exploring **Blob and Gas futures** for future capacity. 5. Developing **Native Rollups**, deeply integrating rollup capabilities into the protocol. 6. **Reimagining the EVM's future**, potentially exposing a simpler, modern instruction set (e.g., leanISA or RISC-V), with EVM becoming a compatibility layer. The core philosophy shifts toward specializing mechanisms for high-load activities (transfers, swaps, privacy) to gain scalability, rather than attempting to infinitely scale all activities. It also elevates **recursive STARKs and AI-assisted formal verification** as foundational infrastructure. In summary, Ethereum is embarking on a systemic "third-generation" redesign—Lean Ethereum—involving replacements or rewrites of major components. The goal is to achieve a quantum-safe, privacy-first, secure, decentralized, and highly scalable network while maintaining a lean and verifiable protocol.

marsbit7 dk önce

Vitalik Updates Ethereum Roadmap: From Merge to 'Lean Refactoring', with STARK, AI, and Privacy Reshaping the Technical Foundation

marsbit7 dk önce

China Monopolizes the Humanoid Market: The U.S. Is Forced to Defend Itself

China's Humanoid Robot Market Domination and US Response According to a report by Smart Analytics Global (SAG), Chinese manufacturers supplied over 97% of the global humanoid robot shipments (approximately 19,100 units) in the first half of 2026, a 272% year-on-year increase. Shanghai-based AGIBOT led with a 44% market share, followed by Unitree Robotics with 31%. Together, these two firms accounted for about 75% of global shipments. China itself represented over 85% of global demand for these devices, with industrial and commercial applications now comprising more than 70% of shipments. Key factors driving China's leadership include strong state support, abundant funding, expanding production capacity, IPO waves for developers, and a vast manufacturing ecosystem for rapid testing and deployment. Furthermore, over 90% of key components for humanoid robots are now sourced domestically. In response, the US Federal Communications Commission (FCC) banned federal agencies and subsidy recipients from purchasing or using foreign "advanced robotic devices," including humanoid and quadruped robots, citing national security concerns in July 2026. SAG forecasts global shipments to approach 60,000 units for full-year 2026, with industry revenue around $1.6 billion, projecting 500,000 units by 2030. The analysis notes potential challenges for Chinese expansion, such as reputational risks from alleged ties to China's defense sector and the precedent of trade disputes seen in solar panels and batteries, potentially triggered by the current low average robot price.

cryptonews.ru26 dk önce

China Monopolizes the Humanoid Market: The U.S. Is Forced to Defend Itself

cryptonews.ru26 dk önce

What's New in Ethereum's Roadmap: Privacy, Quantum Security, Native Rollup?

On August 10, 2024, Ethereum co-founder Vitalik Buterin revealed an updated technical roadmap, highlighting significant changes in priorities and new focus areas. Key new additions include: - **Strong Privacy Protection**: Elevated to a top-tier protocol concern. Proposals like EIP-8250 (keyed nonces for concurrency), EIP-8272 (recent roots for verification), and EIP-8182 (shared protocol-level privacy pools) aim to enable private transfers of ETH and ERC-20s, moving toward default private accounts. - **Quantum Resilience**: Priority increased. The plan addresses risks to ECDSA/BLS signatures, KZG commitments, and ZK systems, exploring solutions like leanSPHINCS signatures, STARK proofs (considered quantum-resistant), and streamlined verification processes. A full L1 upgrade is tentatively targeted for ~2029. - **Native Rollups**: A novel concept where rollups could reuse Ethereum's core validation infrastructure via a new EXECUTE precompile (EIP-8079 draft). This aims to reduce custom code and enhance security for certain L2s, while specialized chains will continue to exist. - **Protocol Simplification & Formal Verification**: Leveraging AI tools to make full-protocol formal verification feasible, aiming for more rigorous and machine-verifiable specifications. Other notable shifts: - State storage is evolving from Verkle trees to a Partitioned Binary Tree (PBT, EIP-8347 draft). - Some 2023 items like VDFs and certain EVM improvements were deprioritized. - Long-term discussions include blob/gas futures and non-EVM instruction sets (e.g., RISC-V). The "Strawmap" outlines potential upgrades through ~2029 but is a directional guide, not a firm timeline. Key milestones to watch include the Glamsterdam (Q4 2026) and Hegotá (2027) forks. Many proposals remain in draft or research phases.

marsbit47 dk önce

What's New in Ethereum's Roadmap: Privacy, Quantum Security, Native Rollup?

marsbit47 dk önce

Hyperliquid Trading Volume Soars, So Why Are Profits Falling?

Hyperliquid, a leading decentralized perpetuals trading platform, has seen its open interest surge to a record high above $11 billion, capturing roughly 9% of the global market share. Trading volume remains robust, nearing $178 billion over 30 days, driven largely by the explosive growth of third-party markets offering tokenized real-world assets (RWAs) like stocks and commodities. Despite this growth, the platform's protocol revenue has declined for four consecutive quarters, falling 43% from its Q3 2025 peak of $357 million to approximately $202 million in Q2 2026. This divergence is primarily attributed to the HIP-3 governance proposal, which allows external developers to launch their own markets and keep up to half of the generated fees. These third-party markets now account for nearly 50% of total volume. Consequently, the share of revenue redistributed to developers, market makers, and the treasury has tripled from 6% to 18% in a year. This directly reduces the funds allocated to the platform's buyback-and-burn mechanism for its native HYPE token, weakening a key price support. HYPE's price has fallen 28% from its all-time high. The platform's growth is also heavily concentrated, with a single entity, Trade.xyz, responsible for over 90% of HIP-3 open interest, introducing systemic risk. Additionally, the ecosystem lacks diversity beyond HYPE, faces ongoing token unlocks adding sell pressure, and is encountering increased regulatory scrutiny and new competition from platforms like Robinhood Chain. While still a major revenue generator in crypto, Hyperliquid's model of sharing fees to fuel expansion is currently compressing its own earnings and token economics.

marsbit47 dk önce

Hyperliquid Trading Volume Soars, So Why Are Profits Falling?

marsbit47 dk önce

İşlemler

Spot
活动图片