ZUG WEB3
The Vanderbilt Terminal for Zug Web3 Intelligence
INDEPENDENT INTELLIGENCE FOR CRYPTO VALLEY'S DECENTRALISED ECOSYSTEM
ETH Price $3,420| Total DeFi TVL $105B+| Web3 Protocol Foundations 60+| Polkadot Parachains 47| Swiss Crypto Licences 1,200+| Active DAOs (global) 5,000+| ETH Price $3,420| Total DeFi TVL $105B+| Web3 Protocol Foundations 60+| Polkadot Parachains 47| Swiss Crypto Licences 1,200+| Active DAOs (global) 5,000+|

Solana Foundation in Zug: High-Performance Blockchain and Switzerland's Role in the Solana Ecosystem

The Solana Foundation chose Zug for the same reasons the Ethereum Foundation did a decade earlier: Switzerland's Stiftung law, FINMA's principles-based oversight, and Crypto Valley's legal infrastructure. What Solana brought to that foundation is a radically different performance architecture — one that continues to divide protocol engineers and attract institutional capital in equal measure.

Solana Foundation in Zug: High-Performance Blockchain and Switzerland’s Role in the Solana Ecosystem

When the Solana Foundation established its Swiss legal domicile in Zug, it was following a by-then well-worn path. The Ethereum Foundation had chosen Zug in 2014. The Web3 Foundation followed in 2017. The Cardano Foundation, the Tezos Foundation, and dozens of smaller protocol foundations had done the same. By the time Solana formalised its Zug presence, the legal infrastructure — the specialist lawyers, the experienced commercial registrars, the FINMA engagement protocols, the digital asset banking relationships — was already built.

What Solana brought to that established environment was something genuinely different: a blockchain architecture that prioritised raw performance above almost everything else, and an ecosystem trajectory that would make it the most significant challenger to Ethereum’s DeFi and NFT dominance that the market had seen.

Proof of History: Solana’s Core Technical Innovation

Every blockchain faces a coordination problem: before nodes can agree on the ordering of transactions, they need to agree on time. In networks like Bitcoin and early Ethereum, this coordination happens through the consensus mechanism itself — nodes compete to produce blocks, and the longest chain defines transaction ordering and implicitly defines a shared timeline. This approach works but introduces latency: consensus takes time, and that time is determined partly by the need to propagate blocks across a global network before the next round begins.

Solana’s response to this problem is Proof of History (PoH), introduced by founder Anatoly Yakovenko in a 2017 whitepaper. PoH is not a consensus mechanism — it is a cryptographic clock. It works by computing a continuous, verifiable sequence of SHA-256 hash function outputs: each output becomes the input for the next computation, producing a hash chain where every link can be verified to have required real elapsed time to compute. This chain of hashes creates a cryptographically verifiable timeline independent of consensus.

Because validators have access to this shared timeline, they do not need to communicate timestamps with every message. Transactions can be ordered and processed relative to the PoH sequence without waiting for round-trip communication to establish ordering. This eliminates a fundamental bottleneck in distributed system performance.

PoH is implemented within Solana’s broader consensus mechanism: Tower BFT, a variant of Practical Byzantine Fault Tolerance (PBFT) adapted for the PoH timing layer. Tower BFT uses the PoH clock as a global source of time, allowing validators to make and confirm votes more efficiently than in systems where time must be negotiated through consensus.

65,000 TPS and the Performance Architecture

The combined effect of PoH, Tower BFT, and several additional architectural choices is Solana’s headline performance claim: theoretical throughput of 65,000 transactions per second (TPS). In practice, mainnet peak throughput has reached approximately 65,000 TPS during burst periods, with sustained throughput in the 2,000-5,000 TPS range during normal operations as of early 2026.

Additional architectural components contributing to this performance:

Gulf Stream: Solana’s mempool-less transaction forwarding protocol. Rather than maintaining a pool of unconfirmed transactions, Gulf Stream forwards transactions directly to the validator expected to be the next block leader (based on the known, deterministic validator schedule). This reduces confirmation latency and eliminates the memory pressure that large mempools create on other networks.

Turbine: A block propagation protocol that breaks blocks into smaller packets and propagates them through a tree structure of validators, rather than having each validator send the full block to all others. Inspired by BitTorrent’s approach to large file distribution, Turbine reduces the network bandwidth requirements for block propagation significantly.

Sealevel: Solana’s parallel smart contract execution engine. Ethereum’s EVM executes transactions sequentially — one after another. Sealevel identifies transactions that access different state accounts and executes them in parallel on multi-core hardware. This is possible because Solana requires transactions to declare upfront which accounts they will read and write, enabling the runtime to detect non-conflicting transactions and process them simultaneously.

Cloudbreak: Solana’s horizontally scalable accounts database, designed to support the random read/write patterns that smart contract execution requires at high throughput, using memory-mapped files and SSDs.

The net result is a blockchain that runs on hardware with demanding specifications: Solana validators typically operate on machines with 128GB+ RAM, high-core-count CPUs, and NVMe storage. This is a deliberate trade-off — Solana accepts higher hardware requirements for validators in exchange for performance, at the cost of potentially limiting the validator set to operators who can afford the hardware. As of early 2026, Solana has approximately 1,500-2,000 active validators, a smaller set than Ethereum’s validator count but one that has proven sufficiently decentralised for meaningful censorship resistance.

Network Outages: History and Recovery

Solana’s performance architecture has come with reliability costs. The network experienced numerous significant outages between 2021 and 2022, including:

  • September 2021: A 17-hour outage caused by excessive transaction load from IDO (Initial DEX Offering) bots overwhelming the network’s transaction processing queue, causing validators to fall out of consensus. The network required a coordinated restart — a manual intervention that drew criticism from decentralisation advocates.
  • January 2022: A four-hour degraded performance period caused by high transaction load from bots.
  • May 2022: Multiple outage events, including a significant incident caused by a misconfiguration in the Candy Machine NFT minting program that generated computational load crashes.
  • October 2022: A brief outage caused by a consensus bug.

These outages were significant credibility events. Critics argued that Solana’s performance architecture required centralised coordination to recover from failures — that the network could not self-heal the way Ethereum’s more conservative design could. Proponents argued that all early blockchain networks experience reliability events during scaling, and that Solana’s team responded with systematic improvements to both the protocol and the validator coordination tools.

From 2023 onward, Solana’s reliability improved substantially. The network went extended periods without outages, and several protocol improvements — including better resource handling for spam transactions and the QUIC networking protocol replacing UDP for transaction submission — addressed the root causes of earlier incidents. By 2025, extended outages had become rare, and the network’s reputation for reliability had largely recovered with institutional partners.

Firedancer: Jump Crypto’s Validator Client

The most significant infrastructure development for Solana’s long-term reliability and performance is Firedancer — an independent validator client implementation developed by Jump Crypto (the blockchain research division of trading firm Jump Trading).

Most mature blockchain networks have multiple independent client implementations: Ethereum has Geth, Besu, Erigon, Nethermind, and others. Client diversity is a network health property — if a bug exists in one client, nodes running other clients remain functional, preventing a single bug from taking down the entire network. Solana, since its launch, has operated with a single dominant client: the Solana Labs client (written in Rust). All of Solana’s outages have been single-client failures — events that would not have caused a network halt if alternative implementations existed.

Firedancer, written in C/C++ from scratch by Jump Crypto’s engineering team (which includes engineers from high-frequency trading backgrounds accustomed to extreme performance requirements), is designed to be both a performance upgrade and a client diversity solution. Jump’s engineering benchmarks claimed Firedancer capable of processing over 1 million TPS in controlled testing environments — a figure that, if achieved on mainnet, would represent a qualitative change in what Solana can support.

Firedancer began limited mainnet deployment in 2024, with full deployment progressing through 2025. Its presence on the validator network is gradually increasing client diversity, addressing one of the most fundamental criticisms of Solana’s architecture.

DeFi Ecosystem: From Serum to Jupiter

Solana’s DeFi ecosystem has undergone substantial transformation since its launch. The original flagship DeFi protocol was Serum DEX — a central limit order book (CLOB) decentralised exchange developed with involvement from Sam Bankman-Fried’s Alameda Research. Serum was architecturally distinctive: unlike Uniswap’s automated market maker (AMM) model, Serum operated an on-chain order book — a DEX design that Ethereum’s gas costs had made impractical but that Solana’s throughput could support.

When FTX (Bankman-Fried’s exchange) collapsed in November 2022 and Alameda Research was revealed to have misappropriated client funds, Serum’s upgrade keys — held by FTX-affiliated entities — became untrusted. The Solana community forked Serum’s codebase into OpenBook, an independent version of the order book exchange without FTX-affiliated control. OpenBook continues to operate and underpins much of Solana’s DeFi liquidity infrastructure.

The current DeFi landscape on Solana is built around several key protocols:

Raydium: An AMM and liquidity provider that integrates with OpenBook’s central limit order book. Raydium pools provide liquidity to Serum/OpenBook order books as well as operating standalone AMM pools, creating a hybrid liquidity model distinctive to Solana.

Jupiter: The dominant DEX aggregator on Solana, routing trades across all available liquidity sources to find best execution. Jupiter has grown into a multi-product platform encompassing perpetuals trading, a launchpad (Jupiter LFG), and dollar-cost averaging features. By 2025, Jupiter’s swap aggregator processes the majority of Solana DeFi volume by transaction count.

Marinade Finance and Jito: The leading liquid staking protocols on Solana. Marinade issues mSOL (liquid staked SOL), while Jito’s JitoSOL adds MEV-sharing rewards to standard staking yields. The competition between liquid staking providers has driven innovation in both yield optimization and validator selection.

Drift Protocol: A decentralised perpetuals exchange on Solana, leveraging the high throughput and low latency to provide a trading experience competitive with centralised perpetuals platforms.

Solana’s DeFi TVL, which collapsed from approximately $10 billion in November 2021 to under $200 million after the FTX collapse in late 2022, recovered to multi-billion dollar levels by 2025 — a trajectory that most observers considered unlikely at the nadir. For DeFi TVL data across all chains, DeFiLlama is the authoritative source.

NFT Ecosystem: Magic Eden and the Generative Art Wave

Solana became a significant NFT platform during the 2021-2022 bull market, driven primarily by lower minting and transaction costs than Ethereum. Magic Eden — launched in September 2021 — became the dominant Solana NFT marketplace and one of the highest-volume NFT platforms globally at its peak, processing billions of dollars in NFT trading volume.

Magic Eden’s success on Solana demonstrated that the NFT market was not exclusively an Ethereum phenomenon. Key collections including DeGods, y00ts, and Okay Bears established Solana-native PFP communities with market capitalizations reaching hundreds of millions of dollars during the peak period.

The subsequent market evolution was complex. Magic Eden expanded to become a multi-chain marketplace, adding Ethereum and Bitcoin NFT support. DeGods and y00ts migrated to Ethereum and Polygon respectively in early 2023 — moves interpreted as signals about where institutional NFT collectors resided. Solana’s NFT ecosystem retained a distinctive character: lower-cost experimental collections, generative art projects, and gaming NFTs occupy a larger share of Solana NFT activity relative to high-value PFP collections, which skew toward Ethereum.

USDC on Solana and the Visa Settlement Case

Circle’s USDC stablecoin has been natively issued on Solana since 2021, making Solana one of the primary USDC settlement chains alongside Ethereum. The significance of native USDC issuance (as opposed to bridge-minted USDC) is that it eliminates cross-chain bridge risk: USDC on Solana is redeemable directly with Circle rather than representing a wrapped asset backed by a bridge contract.

In September 2023, Visa announced that it had expanded its stablecoin settlement capabilities to include Solana, in addition to Ethereum. Visa’s settlement process uses USDC on Solana to settle transactions between Crypto.com (one of Visa’s acquiring bank partners for crypto card programs) and Visa’s treasury. The process involves converting fiat transaction values into USDC on Solana and transmitting that USDC directly between settlement parties.

Visa’s selection of Solana for settlement was publicly attributed to Solana’s throughput and low transaction costs — properties relevant to the high-volume, low-margin settlement requirements of payment processing. For Solana’s institutional positioning, the Visa partnership was significant: a major traditional payments infrastructure provider selecting Solana alongside Ethereum for settlement was a categorical validation of the network’s enterprise-grade reliability claims.

Why Solana Foundation Chose Zug

The Solana Foundation’s decision to establish its Swiss Stiftung in Zug reflects the same logic that has driven dozens of other major protocol foundations to the same canton:

The Swiss Stiftung Structure: A Stiftung (foundation) is a non-profit legal entity with no shareholders or members, governed by a foundation council, and locked to a mission defined in its statutes. For a protocol foundation holding substantial treasury assets and managing ecosystem grants, the Stiftung’s mission-locked structure prevents any investor, whale, or future acquirer from redirecting foundation assets away from the protocol mission. The Solana Foundation’s statutes direct it to support and develop the Solana blockchain ecosystem — a mandate that survives personnel changes, market cycles, and external pressure.

FINMA’s Principles-Based Approach: The Swiss Financial Market Supervisory Authority’s approach to token classification — applying economic substance analysis rather than prescriptive categorization — has historically produced more workable outcomes for protocol foundations than the US SEC’s enforcement-led approach or the EU’s MiCA framework’s rule-based categorization. Foundations that engage with FINMA proactively can obtain reasonable clarity on how their activities and tokens are classified, without the uncertainty of US no-action letters or the rigidity of EU licensing regimes.

Crypto Valley Infrastructure: Zug’s ecosystem of specialist Web3 lawyers (MME Legal, Lenz & Staehelin, Walder Wyss), digital asset banks (AMINA Bank, Sygnum), and experienced service providers for foundation management and governance creates practical advantages that no other jurisdiction currently matches. The Solana Foundation’s compliance, legal, and governance activities benefit from infrastructure built up over a decade of Ethereum Foundation presence in the same canton.

Tax Efficiency: Swiss foundation law provides favorable tax treatment for non-profit foundations that do not distribute profits to beneficiaries. A protocol foundation operating grant programs and ecosystem development activities from a Zug domicile faces significantly lower tax burdens than an equivalent entity in most major alternative jurisdictions.

The Solana ecosystem’s relationship with Switzerland is not merely administrative. The Solana Foundation’s Swiss domicile enables the ecosystem to engage with FINMA, SIX Digital Exchange, Swiss institutional investors, and the broader European regulatory conversation from a position of legal standing and regulatory legitimacy — advantages that matter increasingly as institutional capital flows into the Solana ecosystem deepen. For Swiss company formation and holding structures relevant to Solana-ecosystem projects, see zugbusiness.com.



Author: Donovan Vanderbilt | The Vanderbilt Portfolio AG, Zurich Published: 25 February 2026

About the Author
Donovan Vanderbilt
Founder of The Vanderbilt Portfolio AG, Zurich. Institutional analyst covering decentralised protocols, Web3 infrastructure, DAOs, NFT ecosystems, and the technology layer underpinning Crypto Valley's innovation pipeline.