Futures
Access hundreds of perpetual contracts
CFD
Gold
One platform for global traditional assets
Options
Hot
Trade European-style vanilla options
Unified Account
Maximize your capital efficiency
Demo Trading
Introduction to Futures Trading
Learn the basics of futures trading
Futures Events
Join events to earn rewards
Demo Trading
Use virtual funds to practice risk-free trading
Launch
CandyDrop
Collect candies to earn airdrops
Launchpool
Quick staking, earn potential new tokens
HODLer Airdrop
Hold GT and get massive airdrops for free
Pre-IPOs
Unlock full access to global stock IPOs
Alpha Points
Trade on-chain assets and earn airdrops
Futures Points
Earn futures points and claim airdrop rewards
Promotions
AI
Gate AI
Your all-in-one conversational AI partner
Gate AI Bot
Use Gate AI directly in your social App
GateClaw
Gate Blue Lobster, ready to go
Gate for AI Agent
AI infrastructure, Gate MCP, Skills, and CLI
Gate Skills Hub
10K+ Skills
From office tasks to trading, the all-in-one skill hub makes AI even more useful.
GateRouter
Smartly choose from 40+ AI models, with 0% extra fees
Polkadot JAM Protocol In-Depth Analysis: How Gavin Wood Is Redefining the Underlying Computing Paradigm of Blockchain
In 2014, Gavin Wood defined the operating rules of the Ethereum Virtual Machine in a Yellow Paper; in 2016, he built a blueprint for cross-chain communication with the Polkadot White Paper; in April 2024, he once again threw a technical “deep-water bomb” into the industry with a Gray Paper. The protocol specification—called JAM (Join-Accumulate Machine)—is described by Gavin Wood himself as “a groundbreaking work from zero to one,” rather than an incremental optimization of existing systems.
Similar to the historic moment ten years ago when the Ethereum Yellow Paper established the EVM standard, the release of the JAM Gray Paper also aims to reconstruct the computational paradigm of the blockchain underlying layer. The difference is that this time Gavin Wood is not targeting an upgrade to any specific chain, but a “neutral underlying standard” that could become public infrastructure for the entire industry.
From Gray Paper to Mainnet Roadmap
In April 2024, Gavin Wood officially introduced the concept of Join-Accumulate Machine through the JAM Gray Paper, positioning it as the successor to Polkadot’s relay chain. The name JAM comes from the CoreJAM computational model—Collect (collect), Refine (refine), Join (join), Accumulate (accumulate). The on-chain part only executes Join and Accumulate, while the Collect and Refine processes are carried out off-chain.
At the 2025 Web3 Summit, Gavin Wood clarified the JAM delivery timeline: the mainnet is expected to go live within the next 12 to 20 months. At the same time, the Web3 Foundation is putting 10 million DOT (worth approximately $65 million at the time) into supporting the JAM ecosystem, with the goal of nurturing development teams worldwide. As of August 2025, 43 independent implementation teams have joined the competition for this grant; multiple clients are expected to achieve 100% consistency before August 2025, aiming to complete mainnet deployment in early 2026.
On March 14, 2026, the Polkadot network marked its “Pi Day” event by completing a thorough transformation of its token economic model—setting the hard supply cap of DOT at 2.1 billion. Annual issuance was cut sharply by about 53% in one step, from approximately 120 million DOT down to about 55 million DOT. Coretime sales revenue is deposited into a Dynamic Allocation Pool (DAP) for budget distribution, and the staking unbonding period is shortened from 28 days to 24 to 48 hours.
Through ongoing iteration, the JAM Gray Paper has evolved to v0.7.2 and above. Starting from January 2026, the Web3 Foundation begins formal assessments of client consistency using tools such as fuzzers. Its academic rigor is reflected in the formal definition of protocol semantics, mathematical proofs of the semi-consensus model, and clear boundary definitions for asynchronous communication between services.
The Technical Confidence Behind Polkadot’s Decade-Long Evangelism
Gavin Wood’s technical decisions follow a consistent logic line: starting from basic principles, rebuilding the system. In 2014, in the Ethereum Yellow Paper, he defined the execution environment for smart contracts in the form of the EVM; in 2016, in the Polkadot White Paper, he proposed a relay-chain architecture with shared security and cross-chain communication; in 2024, he used the JAM Gray Paper to announce a third-generation design—a decentralized computation protocol that no longer relies on chained structures.
During the Polkadot 1.0 era, the parachain slot auction mechanism was robust in terms of security, but the high entry barrier kept small developer teams at bay. Between 2024 and 2025, Polkadot 2.0 completed the network architecture overhaul in stages through three major upgrades: asynchronous backing, agile core timing, and elastic scaling. Asynchronous backing increased parachain block production speed to 6 seconds, raising single-block capacity from 5 MB to 20 MB and boosting overall throughput by about 10 times. Agile core timing replaced slot auctions that required locking large amounts of DOT with a pay-as-you-go model, reducing developer costs. Elastic scaling allows parachains to dynamically call multiple cores to process transactions in parallel during peak loads, enabling sub-second block times.
These upgrades are not isolated technical iterations; together, they form the prerequisite conditions for deploying the JAM protocol. As Gavin Wood has emphasized in multiple lecture tours, JAM is not an “optimization from 1 to 100,” but a new answer to the question of what a blockchain is.
How JAM’s Computational Model Works
CoreJAM: The Philosophy of On-Chain and Off-Chain Division
Understanding JAM’s first key point lies in grasping the computational paradigm implied by its name. CoreJAM represents four processing stages—Collect (collect data), Refine (refined execution), Join (aggregate results), and Accumulate (accumulate state). But in actual operation, only Join and Accumulate are performed on-chain; Collect and Refine are entirely delegated to off-chain execution.
The intent behind this division is extremely clear: push expensive computation off-chain and parallelize it, only submitting the necessary state-transition results on-chain. Specifically, in the Refine stage, each validator core processes up to 15 MB of input data within a 6-second time slot, producing a maximum compressed output of 90 KB—an achievable compression ratio of 166x. In the Accumulate stage, on-chain execution time is only about 10 milliseconds, used solely to write the refined results into state.
This design—“a lot of off-chain computation and extremely minimal on-chain state”—enables JAM to achieve a theoretical TPS of over 3.4 million and data availability up to 42 times that of the current architecture—up to 850 MB/s, roughly 650 times Ethereum L1 data availability throughput (1.3 MB/s). The JAM chain also supports simultaneous parallel execution on more than 350 cores, achieving synchronized composability through dynamic sharding boundaries.
PVM: A New Generation Virtual Machine Based on RISC-V
JAM’s choice at the virtual machine layer is similarly disruptive. It no longer uses WebAssembly and instead turns to an open-source RISC-V instruction set architecture to build the Polkadot Virtual Machine (PVM).
The strategic significance of this choice is worth a deeper analysis. RISC-V is an open-source reduced instruction set computing (RISC) instruction set architecture that has seen widespread adoption in traditional computing in recent years. In the blockchain context, the modular design and high customizability of RISC-V make it naturally suited for decentralized computation scenarios. Compared with WebAssembly, RISC-V’s advantage lies in the minimalism and determinism of its instruction set—making it easier for different JAM implementations to reach state consensus.
More importantly, PVM is a highly general instruction set architecture. In public talks, Gavin Wood compared JAM’s position to the historical role of the x64 instruction set: back then, AMD designed a more concise and workable AMD64 solution based on Intel’s 32-bit instruction set, ultimately becoming the industry-standard 64-bit computing standard. JAM’s PVM similarly carries the potential to become a neutral technology standard that is cross-token and cross-network.
Services Instead of Accounts: JAM’s State Model
JAM has also fundamentally changed how blockchain state is organized. Traditional smart contract chains organize state around accounts, while JAM divides state into independent “service” units. Each service includes code, balances, and related state components. Service creation does not require permission, which is similar to deploying a contract on a smart contract chain, but without relying on governance approvals.
Each service defines three entry points: Refine (mainly executing stateless computation), Accumulate (folding refined outputs into the service state), and OnTransfer (handling asynchronous communication between services). This “component-based” design means JAM is no longer a traditional chain in the conventional sense, but a protocol space—developers can define service logic, governance structures, and resource markets at the protocol level.
Reconstructing the Economic Model: From Inflation-Driven to Deflation-Driven
The DOT economic model reforms introduced during the Polkadot 2.0 period complement the JAM protocol’s architectural design. After the “Pi Day” implementation, the hard supply cap of DOT was set at 2.1 billion (about 80% already issued). Annual issuance was cut by about 53% from approximately 120 million DOT down to about 55 million DOT. All transaction fees, Coretime sales revenue, and slashed funds are deposited into a Dynamic Allocation Pool (DAP) for budget allocation, replacing the previous treasury-burn mechanism.
Breakdown of Industry Opinions: Disagreements Among Three Camps
Around discussions of the JAM protocol, the current publicly available information presents three distinctly different voices.
Arguments From Tech Optimists
JAM’s technical narrative has received a substantial level of enthusiastic response from the developer community. The teams participating in JAM development have shown a proactive level of engagement that is uncommon during the Polkadot era. Gavin Wood described it as “the first time since early Ethereum in 2015 that I’ve felt this kind of enthusiasm again.” The number of 43 implementation teams participating is itself an objective indicator.
Challenges From Market Skeptics
In sharp contrast to the rising developer enthusiasm, the market price performance has remained persistently weak. As of May 8, 2026, DOT’s price is $1.318, with a 24-hour decline of 0.08%, far below the historical high of roughly $55. Over the past year, it has fallen by about 70.49%, with a market capitalization of approximately $2.213 billion. This forms a rare divergence pattern: “technological upgrade momentum pushing forward, while token prices move downward.”
From institutional participation indicators, the market’s attitude toward Polkadot is also cautious. On March 6, 2026, 21Shares listed the first U.S. spot DOT ETF on Nasdaq (ticker: TDOT), with initial assets of about $11 million. On March 12, the fund saw its first net institutional inflow of $544,480. On April 9, 2026, TDOT recorded a single-day net inflow of $784,960, pushing cumulative net inflows to exceed $1.33 million. By comparison, Bitcoin spot ETFs recorded inflows in the hundreds of millions of dollars on their first day. This gap reflects that Polkadot still needs to raise its priority ranking among mainstream financial institutions.
Structural Criticism Perspective
More in-depth industry analysis points to structural difficulties Polkadot faces: DeFi ecosystem TVL growth has never matched the levels of Ethereum, Solana, or emerging L2s, and some early-hope parachain projects have already seen declining activity levels. Polkadot has always remained in a state of “strong foundation but weak entry”—users lack a unified platform entry point, developers do not know which chain their applications should be deployed on, and differences among parachains further intensify the fragmentation of the application experience.
Industry Impact Analysis
Substantive Changes for the Developer Ecosystem
The JAM protocol’s most direct impact is lowering the barrier for developers to enter. Agile Coretime significantly reduces developers’ onboarding costs, and combined with JAM’s permissionless service creation feature, the Polkadot ecosystem for the first time has the qualifications to compete positively on developer experience with other L1s such as Ethereum and Solana.
Smart contract functionality on Polkadot Hub is live, supporting both EVM and PVM execution environments. Solidity developers can deploy existing workflows directly without making major changes.
Reshaping the Modular Competition Landscape
JAM’s emergence means Polkadot is no longer only a relay-chain network, but is moving fully into the domains of data availability and modular computation. Directly competing with it are Celestia’s low-cost, high-throughput DA solution, EigenDA’s security model based on Ethereum re-staking, and Avail’s light-client verification mechanism based on the Polkadot consensus framework.
JAM’s difference is that it builds sharded execution and consistent state directly into the consensus layer, rather than providing DA as a standalone layer as Celestia does. This enables rollups on JAM to achieve synchronized composability within dynamic sharding boundaries—a feature still unique within the current modular blockchain field.
Structural Reasons for the Divergence Between Technical Narrative and Price
Against the backdrop of accelerated iterations of industry concepts, the narrative rotation cycle in the primary market is not always synchronized with the underlying technology progress timeline. Polkadot developer data indicates that the supply side of technology is still healthy, but the demand side has not yet completed the leap from the “infrastructure-building stage” to the “application-explosion stage.”
This supply-demand mismatch is not unique to Polkadot. The long-term realization of technical investment value often lags behind short-term market pricing, which is especially evident in the L1 track.
Conclusion
Gavin Wood redefined Polkadot’s future with a Gray Paper, and with the JAM protocol, he once again brought the grand narrative of the “decentralized global computer” into the industry spotlight. From a technical architecture perspective, the paradigm shift JAM represents—moving from chain-based structures to protocol space, from account models to service models, and from inflation-driven to deflation-driven—has genuine original value.
But an unavoidable reality remains: there is a gap between the depth of the technical narrative and the confirmation of market value. With more than 65 active parachains, the world’s top 10 monthly active developers, and a theoretical capacity of 3.4 million TPS—these technical indicators are impressive, yet they have not been effectively transmitted into DOT token value.
During Gavin Wood’s global tour in 2026, he repeatedly emphasized one point: “Good technology must win.” This statement is both a declaration of belief in JAM and an implicit recognition of the current dilemma that the technical narrative has not yet translated into market prices. Historical experience shows that underlying technological innovations often become the core variable that determines long-term industry patterns, but this process is usually measured in years rather than months. In a decade of blockchain history, multiple technological routes have risen and fallen. Whether JAM can become the final winning standard depends on whether, within its own specified timeframe, it can attract enough developers, applications, and institutional capital to turn a technical blueprint into a truly operating industry ecosystem.