Tech Talk: MagicBlock Labs
By breakpoint-25
Published on 2025-12-12
MagicBlock Labs announces four major protocol upgrades for their ephemeral rollup technology, pushing Solana toward enabling fully on-chain applications with 50,000 TPS and 200x storage cost reduction.
MagicBlock Labs just dropped a bombshell at Breakpoint 2025: four major protocol upgrades that could fundamentally change what's possible to build on Solana. With a new scheduler capable of 50,000 transactions per second, storage costs slashed by 200 times, and nodes deployed in military-grade data centers, the team is making a bold play to replace centralized servers entirely for blockchain applications.
Summary
MagicBlock Labs, a 16-person team with roots in AI research and low-level systems engineering, presented their vision for bringing real-time elastic compute to Solana. Their technology, called ephemeral rollups, has already processed over a billion transactions through their MagicNet canary network, with 250,000 ephemeral sessions across 11,000 unique active addresses.
The core innovation enables Solana developers to delegate arbitrary accounts into ultra-fast SVM (Solana Virtual Machine) instances on demand. Think of it as multi-threading for blockchain programs—developers can spin up parallel execution environments, process state transitions at lightning speed, and then commit the results back to Solana's main chain. This architecture maintains full composability with existing Solana programs while achieving latencies as low as 10 milliseconds.
CEO Andrea Fortugno emphasized that fully on-chain applications offer properties impossible with traditional servers: verifiability, DeFi composability, censorship resistance, and permissionless access. Perhaps most compelling for developers, this approach unlocks new revenue opportunities—taking fees on volume, earning yield on platform funds through DeFi integrations, and more.
The four new upgrades announced signal MagicBlock's push toward mainnet: a lightweight scheduler delivering 50,000 TPS on commodity hardware, native account compression reducing storage costs by up to 200x, improved cloning pipelines for better Solana synchronization, and deployment within military-grade data centers for an additional physical security layer.
Key Points
Ephemeral Rollups: Multi-Threading for Solana
MagicBlock's foundational technology allows developers to add a single instruction to their existing on-chain programs that delegates accounts to high-speed SVM instances. When triggered, a router pings available nodes globally, clones the relevant state on demand, and enables blazing-fast state transitions within these isolated environments.
The key differentiator is maintaining composability with Solana throughout the process. Developers can commit state diffs back to the main chain, execute cross-program invocations (CPI) with other programs, and bundle transactions that execute atomically or not at all. When the processing job completes, accounts simply undelegate and return their final state to Solana. This creates an architecture where Solana acts as the "main thread" while ephemeral rollups function as parallel worker threads handling compute-intensive tasks.
Customizable Runtimes and Privacy Features
Beyond raw performance, MagicBlock enables applications to choose their preferred runtime characteristics. Privacy stands out as a particularly powerful plugin—accounts delegated to SVM instances running inside Intel TDX trusted execution environments can achieve private state transitions, opening doors for applications requiring confidentiality.
The platform also supports real-time oracle price streams and verifiable random functions (VRF) without requiring separate on-chain transactions for each update. This is critical for high-throughput applications like trading platforms and games that need probably fair randomness without the overhead of constant blockchain writes. Fine-grained programmable access control allows developers to specify exactly who can read or write delegated state, with options like geofencing to prevent sanctioned countries from interacting with private applications.
Trading and Financial Applications
For trading platforms like Flash Trade, Archer, and Mac Speed, 10-millisecond latency isn't just a nice-to-have—it's transformational. Market makers operating on a first-come-first-serve basis can quote tighter spreads because they can adjust positions instantly when market volatility increases. Colocation ensures optimal latency for professional traders.
The trusted execution environment capabilities enable private auctions and concentrated liquidity bonding curves (CLBs) with interesting new dynamics. Since everything remains SVM-based, these private operations can still compose with the broader Solana ecosystem through atomic bundles that either execute completely or revert entirely.
Gaming and Consumer Applications
Fully on-chain games benefit enormously from feeless transactions during gameplay—the user experience feels like Web2 while maintaining access to native USDC and other tokens. New users can onboard without understanding gas fees, yet they're interacting with genuine blockchain-based assets.
VRF integration is particularly crucial for gaming, ensuring fairness in randomized outcomes. Players can trust that loot drops, card draws, or battle results are genuinely random and verifiable, not manipulated by game operators. This transparency, combined with smooth performance, creates gaming experiences that leverage blockchain's unique properties without sacrificing user experience.
The Four Major Protocol Upgrades
MagicBlock's new lightweight scheduler represents a significant engineering achievement—50,000 transactions per second on commodity hardware. Because node requirements are much lower than standard validators, this scheduler can run as a sidecar to existing Solana validators, dramatically expanding what's possible without requiring expensive infrastructure investments.
The partnership with Light Protocol brings native account compression directly into the ephemeral rollup architecture. This delivers up to 200x reduction in storage costs while allowing accounts to be decompressed within the rollup for normal interaction—combining cost efficiency with full functionality.
The improved cloning pipeline keeps ephemeral rollups synchronized with Solana more reliably and quickly. New streaming support adds redundancy, allowing users and validators to independently verify state transitions happening within specific ephemeral rollups. This additional validation layer strengthens the security model considerably.
Finally, deploying trusted execution environment nodes within military-grade data centers adds physical security on top of hardware enclave protections. This defense-in-depth approach addresses concerns about physical attacks on sensitive infrastructure.
Path to Decentralized Mainnet
MagicBlock's vision positions them as a decentralized co-processing layer for transactions that currently can't run on Solana and instead rely on centralized AWS servers. Applications can either host their own nodes or rely on existing node operators who stake capital and face slashing penalties for misbehavior.
This economic security model, combined with Solana-native development workflows and Web2-like storage and execution costs, creates a compelling alternative to traditional centralized backends. The entire codebase remains open source, with active development visible on GitHub and community engagement through Discord.
Facts + Figures
- MagicBlock Labs is a team of 16 people with backgrounds spanning AI research and low-level system engineering
- The MagicNet canary network has processed over 1 billion transactions since launch
- 250,000 ephemeral sessions have been created across the network
- 11,000 unique active addresses have interacted with the system
- The new scheduler can handle up to 50,000 transactions per second on commodity hardware
- Account compression partnership with Light Protocol enables up to 200x reduction in storage costs
- Ephemeral rollups achieve latencies as low as 10 milliseconds
- The technology supports Intel TDX trusted execution environments for private state transitions
- Military-grade data centers will host some TE nodes for additional physical security
- All MagicBlock development is open source and available on GitHub
Top Quotes
"We're on this mission to bring real-time elastic compute to Solana for what we think is going to be the next generation of fully on-chain applications."
"Developers are already building production-grade use cases that are producing real revenue on Solana today."
"It's like having multi-threading for your Solana programs. You can think of these as different threads... and when you're done, you just collapse everything back to the main thread, which is Solana itself."
"Market makers that operate on a first-come first-serve basis can much more comfortably quote tighter spread because they can adjust them whenever the market volatility increases."
"We can completely replace those servers. The applications can host a node themselves or they can rely on existing node operators that will have a stake and will get slashed if they misbehave."
"With Solana native deployment and development workflow, with real-time performance, with web2-like storage and execution costs, and with opt-in privacy, we think we are well on our way to enable every single application to be built entirely on Solana."
Questions Answered
What are ephemeral rollups and how do they work?
Ephemeral rollups are temporary, high-speed SVM instances that process blockchain transactions in parallel to Solana's main chain. When a developer triggers a delegation instruction, a global router identifies available nodes, clones the relevant account state, and allows rapid state transitions within the isolated environment. The results can be committed back to Solana through state diffs or cross-program invocations. Think of it as spinning up temporary compute workers that handle intensive processing, then merge their work back into the main blockchain when finished.
Why would developers want to build fully on-chain applications?
Building fully on-chain provides properties impossible with traditional servers: verifiability of all application logic, composability with DeFi protocols, censorship resistance, and permissionless access. Beyond philosophical benefits, there are concrete revenue opportunities—developers can take fees on transaction volume, earn yield by deploying platform funds through DeFi integrations like Kamino, and create new monetization models that don't exist in Web2. Applications become unstoppable since no single entity can shut them down.
How does MagicBlock achieve privacy for blockchain transactions?
Privacy is implemented through trusted execution environments, specifically Intel TDX enclaves. When accounts are delegated to SVM instances running inside these hardware-protected environments, state transitions become private—the computation happens in a secure enclave that even the node operator cannot inspect. Additionally, fine-grained programmable access control lets developers specify exactly who can read or write delegated state, with options for geofencing to comply with regulations.
What makes the new 50,000 TPS scheduler significant?
The new scheduler achieves this throughput on commodity hardware, not specialized expensive infrastructure. It can run as a sidecar to existing Solana validators, meaning node operators don't need entirely new setups. This dramatically lowers the barrier to providing high-performance compute for applications that need it, enabling use cases that were previously impractical due to performance limitations or infrastructure costs.
How does account compression reduce costs by 200x?
Through a partnership with Light Protocol, MagicBlock integrates native account compression into their ephemeral rollup architecture. Compressed accounts take up far less storage on-chain—up to 200 times less—while remaining fully functional within the rollup environment where they can be decompressed for normal interaction. This makes it economically viable to build applications with many accounts that would otherwise be prohibitively expensive to maintain on-chain.
What security measures protect the network?
MagicBlock employs multiple security layers: trusted execution environments provide hardware-level protection for sensitive operations, economic incentives through staking and slashing penalties ensure node operator honesty, streaming support allows independent validation of state transitions, and some nodes are deployed in military-grade data centers adding physical security. This defense-in-depth approach addresses attack vectors at multiple levels from software vulnerabilities to physical hardware access.
On this page
- Summary
- Key Points
- Facts + Figures
- Top Quotes
-
Questions Answered
- What are ephemeral rollups and how do they work?
- Why would developers want to build fully on-chain applications?
- How does MagicBlock achieve privacy for blockchain transactions?
- What makes the new 50,000 TPS scheduler significant?
- How does account compression reduce costs by 200x?
- What security measures protect the network?
Related Content
Breakpoint 2025: Security Block: Almanax (Francesco Piccoli)
AlmondX announces one year of free AI-powered security audits for Solana projects in collaboration with the Solana Foundation
Ship or Die at Accelerate 2025: Lightning Talk: Meteora
Meteora announces the launch of DMMV2 and Meteora V2, revolutionizing on-chain liquidity and token launches
Solana Changelog - April 9 - Flare and GetEpochStake
Discover the latest Solana upgrades including GetEpochStake, improved indexing, and the Flare CLI tool. Learn how these changes enhance performance and developer experience on Solana.
Breakpoint 2024: Keynote: ZK Compression (Swen Schaeferjohann, Nicolas Pennie)
Solana introduces ZK compression to scale the network, reduce costs, and enable new use cases
Product Keynote: RockawayX
RockawayX announces the launch of three new risk-curated vaults on Solana, targeting real-world assets and algorithmic investment strategies
Tech Talk: Light Protocol
Light Protocol announces the Light Token Program, a rent-free token standard that makes creating tokens on Solana 200 times cheaper than SPL Token.
What Is Alpenglow: Solana's Largest Protocol Upgrade Ever | Brennan Watt, Anza
Discover how Alpenglow, Solana's biggest protocol upgrade, aims to reduce transaction finality time by 100x and enhance network security.
The Aptos Roadmap w/ Avery Ching (Aptos Labs)
Explore Aptos' technological advancements, including dynamic parallelism, Shardines, and Move language evolution, as CEO Avery Ching discusses the future of blockchain scalability and performance.
Why Solana Should Change Its Inflation Rate | Weekly Roundup
Explore Solana's groundbreaking SIMD 228 proposal, its impact on inflation rates, and how it could reshape the blockchain landscape for enhanced security and efficiency.
Scale or Die at Accelerate 2025: Fireside: zkSVMs
Industry experts discuss the potential of zkSVMs and rollups for scaling Solana and improving DeFi applications
Scale or Die at Accelerate 2025: Proving Solana: ZK Integration at the eBPF Level
Nitro Labs unveils groundbreaking ZK-SVM technology for Solana, enabling secure off-chain computation and rapid scaling solutions.
Alpenglow: Solana's Largest Protocol Upgrade Ever | Brennan Watt, Anza
Explore how Alpenglow, Solana's largest protocol upgrade, aims to revolutionize transaction finality and network performance while maintaining decentralization and security.
Why Stripe Is Building On Solana | Weekly Roundup
Discover why Stripe is integrating Solana for crypto payments, how MEV capture on Solana is surpassing Ethereum, and the latest on Firedancer, airdrops, and the need for more real-world crypto applications.
Breakpoint 2023: Solana and AWS
AWS announces infrastructure for running Solana nodes and focuses on cost optimization for blockchain applications.
Product Keynote: Coinbase
Coinbase announces native Solana token trading directly within its retail app, bringing millions of on-chain assets to its massive user base
- Borrow / Lend
- Liquidity Pools
- Token Swaps & Trading
- Yield Farming
- Solana Explained
- Is Solana an Ethereum killer?
- Transaction Fees
- Why Is Solana Going Up?
- Solana's History
- What makes Solana Unique?
- What Is Solana?
- How To Buy Solana
- Solana's Best Projects: Dapps, Defi & NFTs
- Choosing The Best Solana Validator
- Staking Rewards Calculator
- Liquid Staking
- Can You Mine Solana?
- Solana Staking Pools
- Stake with us
- How To Unstake Solana
- How validators earn
- Best Wallets For Solana

