Deep Dive

Kaspa - Deep Dive

The full picture on Kaspa - GHOSTDAG blockDAG protocol, kHeavyHash, mining economics, ASIC development, and the path toward smart contracts.

Kaspa

Kaspa is a proof-of-work cryptocurrency built around a single research insight: Bitcoin's 10-minute block time is not a fundamental requirement of PoW security - it is a workaround for a problem that can be solved more elegantly. That problem is block conflicts, and Kaspa's GHOSTDAG protocol handles them in a way that allows block rates orders of magnitude faster than Bitcoin without sacrificing the security properties that make PoW valuable in the first place.

The result is a network that produces one block per second, is pursuing 10 and eventually 100 blocks per second, and does so with no premine, no founder allocation, no ICO, and no VC money. It is about as close to a Bitcoin-style fair launch as any project has achieved in the post-2013 era.


What Kaspa Actually Is

Bitcoin's core design tradeoff is this: to maintain a consistent, globally agreed chain, you need block times long enough that nearly all miners have received the previous block before finding the next one. If two miners find blocks simultaneously, you get a conflict (a fork), and the network must discard one of them. The discarded block - the orphan - represents real computational work that produced no reward and contributed nothing to chain security.

At Bitcoin's 10-minute block time, orphan rates are low enough to be manageable. But that low block rate creates real limitations: slow confirmation times, low throughput, and a system that cannot meaningfully scale without layering on top of itself (Lightning Network, sidechains, etc.).

Every attempt to simply lower the block time runs into the same wall: faster blocks mean more orphans, more orphans mean less miner revenue, less miner revenue means weaker security incentives, and the whole system degrades.

Kaspa's insight, developed through academic research by Yonatan Sompolinsky (whose GHOST and GHOSTDAG papers Kaspa is built on), is that orphan blocks do not need to be discarded at all. If you build the right data structure, you can include them.


GHOSTDAG - The Core Innovation

Traditional blockchains are linear: each block points to exactly one parent, and any block that does not make it into the canonical chain is wasted. GHOSTDAG replaces this linear chain with a Directed Acyclic Graph (blockDAG), where each block can reference multiple parents simultaneously.

Here is the intuition. In Bitcoin, when two miners find a block at roughly the same time, both blocks are valid from a PoW perspective - they both did real work. Bitcoin forces you to pick one and throw the other away. GHOSTDAG says: keep both, include both in the DAG, and use the structure of the graph to determine a consistent ordering of all transactions.

Technically, GHOSTDAG works by selecting a k-cluster - the largest subset of blocks in the DAG such that each block has at most k blocks in its "anticone" (blocks it does not reference and that do not reference it). This k-cluster defines the "blue" set of blocks, which receive full mining rewards and whose transactions are treated as confirmed. Blocks outside this set (the "red" set) may still have their transactions included but receive reduced rewards.

The k-parameter is the key configuration variable. It represents the maximum number of simultaneously mined blocks the network is designed to tolerate before blocks start being marked red. Higher k means the network can handle higher block rates with lower orphan penalties. Kaspa's current k=18 is chosen to match the network's 1 block per second rate with typical global network propagation times.

The practical consequence: Kaspa can produce one block per second right now, and the roadmap to 10 BPS and 100 BPS (the Crescendo upgrade) involves tuning this parameter alongside protocol optimizations to handle the increased propagation demands of higher block rates. Each block at 1 BPS takes about 250 milliseconds to propagate globally; maintaining low orphan rates at 10 BPS requires either faster propagation or smarter block structure - Kaspa is working on both.

What GHOSTDAG does NOT do is remove the fundamental security assumptions of PoW. The protocol is still secured by the cost of reorgs - attacking Kaspa still requires controlling a majority of hashrate for long enough to rewrite the DAG. The security model is equivalent to Bitcoin's at the same total hashrate; the innovation is purely in throughput, not security tradeoffs.


kHeavyHash

Kaspa's mining algorithm is kHeavyHash, a variant of the HeavyHash algorithm designed with specific properties in mind.

The design goal was a memory-hard, GPU-friendly algorithm that would enable a broad mining base during the bootstrapping phase, while remaining ASIC-developable for long-term security. This is a deliberate middle path - pure ASIC-resistance (like Monero's RandomX) maximizes initial decentralization but means mining hardware never becomes specialized enough to make attacking the network prohibitively expensive. Pure ASIC optimization (like Bitcoin's SHA-256) maximizes long-term security but concentrates mining power in whoever wins the ASIC arms race earliest.

kHeavyHash operates by multiplying a pseudorandom matrix by a hash value using floating-point matrix multiplication - computationally intensive in a way that GPU cores handle efficiently, but which can also be implemented highly efficiently in custom silicon. The result was that GPU mining dominated during Kaspa's first two years, followed by ASIC development beginning in earnest around 2023-2024.

ASIC development timeline: IceRiver and Bitmain both shipped Kaspa ASICs, with multiple generations of hardware appearing through 2024. By mid-2025, ASIC miners dominated the network's hashrate. This transition has real implications for decentralization - covered in the mining economics section.


Block Rate and Throughput

At 1 block per second, Kaspa's raw throughput is currently around 100 transactions per second under practical network conditions - meaningfully higher than Bitcoin's ~7 TPS, though not in the same tier as high-throughput L1s like Solana.

The Crescendo upgrade is Kaspa's roadmap toward 10 BPS and eventually 100 BPS. At 10 BPS, theoretical throughput scales to approximately 1,000 TPS. At 100 BPS, the upper bound approaches 10,000 TPS. Whether practical throughput reaches these levels depends on transaction sizes, block capacity parameters, and the efficiency of the DAG ordering algorithm at scale.

One important nuance: raw TPS numbers are somewhat misleading for a DAG-based system. Because GHOSTDAG processes a DAG rather than a linear chain, some transactions in "red" blocks may need to be reordered or handled differently. The actual usable throughput for time-sensitive transactions is closer to what the blue set can confirm per second, which is lower than the maximum theoretical number.

Confirmation times improve significantly with higher block rates: at 1 BPS, probabilistic finality arrives within seconds rather than Bitcoin's 60+ minute wait for high-value transactions. This alone is a meaningful user experience improvement for payments and transfers.


Monetary Policy

Kaspa's emission schedule is one of the more interesting designs in crypto. Rather than Bitcoin's quadrennial halvings, Kaspa uses monthly halvings - or more precisely, a smooth exponential decay that approximates halving each month, implemented as a continuously decreasing block reward.

The practical effect: emission drops much faster than Bitcoin in the early years, which means the supply curve steepens quickly. By 2025, block rewards had declined substantially from launch levels, and by the late 2020s, newly minted KAS per day will be very small relative to total supply.

Total supply is capped at approximately 28.7 billion KAS. Most of this was issued in the first two to three years of the network's operation due to the aggressive emission decay. This front-loaded emission model means that by the time Kaspa has meaningful adoption, the vast majority of ever-existing supply will already be in circulation - reducing inflation pressure on price but also meaning early miners captured a disproportionate share of total supply.

The fair launch is genuine: no tokens were pre-allocated to founders, no ICO, no VC rounds. The founding team (Yonatan Sompolinsky and the DAGlabs team) mined KAS on the same terms as everyone else during the GPU era.


The Smart Contracts Roadmap

Kaspa's current state is a payment network - fast, cheap, PoW-secured transfers of KAS. Smart contracts are not live as of mid-2025.

KIP-2 (Kaspa Improvement Proposal 2) outlines a Rust-based scripting layer that would enable programmable logic on Kaspa. The design philosophy follows Bitcoin's UTXO model more than Ethereum's account model - scripts on UTXOs rather than stateful programs. This limits the complexity of what can be expressed but also limits the attack surface and state bloat that has plagued Ethereum-style VMs.

The honest assessment of the smart contracts roadmap: it is real research with real developers working on it, and it is not imminent. Building a smart contract system on a DAG-based chain is genuinely harder than building on a linear chain, because transaction ordering in a DAG has subtleties that affect how stateful programs can execute. The team is aware of these challenges. Timeline estimates for a production smart contracts layer range from 2026 to later depending on technical progress.

What smart contracts would mean for Kaspa's utility is significant: DeFi, NFTs, and programmable assets on a fast, PoW-secured base layer would differentiate Kaspa clearly from Bitcoin while preserving the security properties that PoS chains sacrifice. If it ships, it changes the investment thesis materially. If it takes longer than expected, Kaspa remains valuable primarily as a payment network - a smaller addressable market.


Mining Economics

Kaspa's mining economics have gone through two distinct phases: the GPU era (2022-2023) and the ASIC era (2024-present).

GPU era characteristics: Lower barriers to entry, geographically distributed mining, modest capital requirements. Mining Kaspa was accessible to anyone with a mid-range GPU. Profitability was high during price appreciation periods, creating a virtuous cycle of hashrate growth.

ASIC era characteristics: Higher capital requirements, faster hardware obsolescence, tendency toward geographic concentration near cheap power. IceRiver's KS-series and Bitmain's Antminer KA3 units delivered dramatically higher hashrate-per-watt ratios than any GPU, making GPU mining effectively uneconomical within months of ASIC availability.

The centralization risk is real. Bitcoin experienced the same transition, and the result was mining concentration in regions with subsidized electricity - China (before the 2021 ban), Kazakhstan, parts of the US. Kaspa is following a similar trajectory. The counterargument - that ASIC mining increases total network security by requiring specialized, non-repurposable hardware investment - is also true and follows the Bitcoin analogy. The question is whether the decentralization tradeoff is acceptable.

For investors, ASIC mining economics affect the selling pressure on KAS: professional miners operate on thin margins and tend to sell most of what they mine to cover electricity costs. High hashrate from efficient ASICs means more KAS sold on the market per day than the GPU era. This is natural and expected in mature PoW systems - Bitcoin miners do the same thing - but worth understanding.


Kaspa vs Bitcoin

The comparison that matters most for understanding Kaspa's position.

What Kaspa offers that Bitcoin does not:

  • Block rate and confirmation speed: 1-second blocks vs 10-minute blocks is a genuine usability improvement for payments
  • Throughput: 100+ TPS vs 7 TPS at the base layer, with a credible roadmap to much higher throughput
  • GHOSTDAG novelty: a more efficient use of total PoW work - less computational effort is "wasted" on orphan blocks
  • Smart contracts optionality: if KIP-2 ships, Kaspa becomes a programmable PoW chain - something Bitcoin has explicitly chosen not to be

What Bitcoin has that Kaspa cannot replicate:

  • Network effects accumulated over 15+ years
  • Regulatory clarity and ETF-level institutional adoption
  • ~$1 trillion+ market cap providing the deepest liquidity moat in crypto
  • The "digital gold" narrative baked into global financial consciousness
  • Mining infrastructure measured in exahashes with massive sunk cost security
  • Settlement finality that no court in the world would challenge

The network effects gap is not a minor detail to be overcome by better technology. Bitcoin's value proposition to large institutions is not primarily its technical specifications - it is the credibility, liquidity, and legal clarity built over time. Kaspa has better specs in several dimensions and cannot compete on the dimensions that matter most to Bitcoin's core use case.

This does not mean Kaspa is without value. It means Kaspa's realistic market is not "better Bitcoin" - it is something closer to "fast, fair-launch, PoW-secured digital cash with eventual programmability." That is a real and interesting product. It is a different one.


Investment Considerations

Kaspa's investment thesis rests on a few pillars, each with a specific risk attached.

The store-of-value pillar: Fair launch, capped supply, PoW security, no founders' allocation. These are genuine quality signals. The risk is that store-of-value status is a winner-take-most market and Bitcoin has an enormous lead.

The payments pillar: Fast confirmations and low fees make Kaspa genuinely usable for everyday transactions at the base layer. The risk is that crypto payments broadly have not achieved mainstream adoption, and payment utility does not guarantee price appreciation.

The smart contracts optionality: If KIP-2 delivers a working, programmable layer on a fast PoW chain, Kaspa becomes much more interesting to DeFi developers who want PoW security without Bitcoin's limitations. This is real optionality. The risk is execution timeline and technical uncertainty.

The ASIC centralization risk: Worth weighting more heavily than most KAS discussions acknowledge. As with Bitcoin, mining concentration is a governance and censorship risk even if it is not an existential security risk. The precedent from Bitcoin suggests it is a manageable but permanent feature of mature ASIC ecosystems.

Sizing Kaspa: it belongs in the category of technically credible, medium-conviction bets rather than either a core portfolio holding or a high-risk speculative flyer. The technology is sound. The launch was fair. The competitive position relative to Bitcoin is genuinely disadvantaged on the dimensions that matter for store-of-value adoption. Smart contract delivery would change that picture meaningfully - making it worth sizing to benefit from that optionality if you have the patience for the timeline.


Learn More


Content current as of August 2025. Mining hardware and network hashrate change rapidly - verify current mining economics at kas.fyi before making hardware decisions.