A Brief Overview of the Popular Public Chain Monad

6/8/2024, 3:00:47 PM
This article introduces Monad, a novel layer-1 blockchain that utilizes a Proof-of-Stake (PoS) consensus mechanism and Ethereum Virtual Machine (EVM) compatibility. Through parallel execution and superscalar pipeline technology, Monad significantly enhances transaction processing efficiency and system performance. This paper elaborates on Monad's technical architecture, performance optimization, and improvements over Ethereum, heralding a more efficient and decentralized blockchain future. It demonstrates how Monad drives blockchain development through technological innovation and lays the foundation for a more efficient and decentralized future.

Monad Overview

Monad is a brand-new layer-1 blockchain that employs a Proof-of-Stake (PoS) mechanism and is compatible with the Ethereum Virtual Machine (EVM). It aims to elevate the performance and decentralization of the entire Ethereum ecosystem.

Monad’s design objectives are to achieve throughput several times higher than existing smart contract blockchains by optimizing the virtual machine and refining the Byzantine Fault Tolerance (BFT) consensus mechanism algorithms. As a decentralized computing platform, Monad strives to provide users with efficient, secure, and scalable blockchain infrastructure.

With Monad, users can anticipate a high throughput of up to 10,000 smart contract transactions (TPS) per second. This enhancement will bring tremendous growth and innovation opportunities to the Ethereum ecosystem, offering developers and users a broader range of use cases and an enhanced user experience.

From a user perspective, Monad’s behavior closely resembles Ethereum. Users can utilize the same wallets (e.g., MetaMask) or block explorers (e.g., Etherscan) to sign or view transactions. Existing applications built for Ethereum can be ported to Monad without code modifications, hence users are expected to be able to utilize many Ethereum applications on Monad. Monad’s addresses are identical to Ethereum addresses, allowing users to reuse existing keys.

Furthermore, akin to Ethereum, Monad features linear blocks and linear ordering of transactions within blocks. Simultaneously, Monad is a Proof-of-Stake network maintained by a set of decentralized validators. Anyone can operate a node to independently verify the execution of transactions, and substantial efforts have been made to minimize hardware requirements.

Monad Background

Monad was founded by Keone Hon in April 2022. Hon, a graduate of MIT, is the head of research at the market-making behemoth Jump Trading. Monad’s CTO, James Hunsaker, is a senior software engineer at Jump Trading and a core maintainer of Pyth Network.

Source: Linkedin

Monad has received significant recognition from investors, boasting impressive funding amounts and institutions. On February 14, 2023, it completed a seed funding round led by Dragonfly Capital, with participation from other investors including Placeholder Capital, Lemniscap, Shima Capital, Finality Capital, and 70 others. On April 9, 2024, it raised an additional $225 million in a funding round led by Paradigm and followed by Coinbase Ventures.

Technical Structure of Monad

Parallel EVM and Superscalar Pipeline

Parallel EVM refers to Monad’s introduction of parallel execution technology to optimize the the Ethereum Virtual Machine’s (EVM) operation.

In simple terms, the Ethereum Virtual Machine (EVM) is the environment responsible for executing smart contract code. Traditionally, each transaction is executed sequentially, resulting in slower processing speeds. Monad introduces parallel execution technology, allowing multiple transactions to be processed simultaneously, thereby enhancing the overall execution efficiency of the system.

Imagine waiting in line for a roller coaster at an amusement park. Traditionally, everyone must queue up, waiting for the person in front to finish before taking their turn. However, if the amusement park adds more roller coasters, more people can play simultaneously, speeding up the queuing process. This is analogous to Monad’s parallel EVM, enabling the virtual machine to handle multiple transactions concurrently, accelerating transaction execution speed.

Overall, Monad’s parallel EVM, unlike the Rollup commonly used by Ethereum Layer 2, fundamentally improves the performance of the Ethereum network by utilizing multi-core and multi-threading technologies. This accelerates transaction processing and consensus reaching speed, allowing the blockchain network to process transactions more efficiently and enhancing the system’s efficiency and scalability.

Superscalar pipelining is an efficient task-processing method that divides tasks into multiple stages and executes them simultaneously, improving the efficiency of the entire processing process.

For instance, when executing a transaction, it can be divided into several stages, such as parsing the transaction, verifying the signature, and executing the code. In the superscalar pipeline mode, these stages can be performed simultaneously instead of sequentially. This is similar to setting up different production stages in a factory, allowing products to undergo processing in different stages simultaneously. For example, making clothing can be divided into stages like cutting, sewing, and edging. Different workers can perform different processes simultaneously, ultimately completing a finished garment.

Source: Monad

Technical Optimization of Monad

Monad implements technical optimizations in four areas: Parallel Execution and MonadDb in the execution aspect, and MonadBFT and Deferred Execution in the consensus aspect.

Parallel Execution refers to Monad’s adoption of Optimistic Execution at the base layer. In the blockchain, transaction execution begins before actual validation, reducing the number of transactions that need to be re-executed due to validation failures.

For example, consider two transactions, A and B, attempting to modify the balance of the same account. In traditional pessimistic execution, the system executes these transactions sequentially, checking the account balance before execution. If transaction A encounters insufficient funds, it fails, and the system rolls back transaction A, executing transaction B. This leads to both transactions being re-executed, increasing system overhead.

Monad’s optimistic execution differs. It assumes both transactions A and B will succeed and executes them in parallel. The system doesn’t check account balances until actual validation. If a transaction fails (e.g., insufficient funds), the system returns all transactions and re-executes the failed one. If all transactions succeed, they are directly merged into the block, reducing re-execution and improving efficiency.

MonadDb is a custom database designed for storing blockchain states. It addresses sub-optimal aspects of existing databases using B-Tree or LSM-Tree data structures. MonadDb directly implements Patricia Trie in memory and disk using Merkle Patricia Trie (MPT) data structures, enhancing state storage efficiency. Additionally, MonadDb utilizes the latest asynchronous I/O techniques and other optimizations to improve efficiency and performance. For instance, when a transaction needs to read a state from disk, it doesn’t block waiting for completion but initiates an asynchronous I/O operation, instructing the system to perform the I/O operation and allowing the program to continue without waiting.

Source:CSDN

MonadBFT is a high-performance consensus mechanism for reaching an agreement on transaction ordering under partial synchronization conditions among Byzantine participants. It builds upon HotStuff and incorporates improvements from Jolteon/DiemBFT/Fast-HotStuff, particularly utilizing quadratic communication complexity to reduce three-round communication to two in case of leader timeouts.

Simply put, imagine a group deciding on the next task to perform. Each person can propose a task but requires others’ support for finalization. A leader is elected to propose tasks and organize discussions. In each round, the leader proposes a task (e.g., transaction order), and others provide feedback. If most agree, the task is confirmed and executed.

Deferred Execution in Monad delays transaction execution until after they have been included in the consensus process for a certain period. This decouples consensus and execution, allowing validator nodes more flexibility in executing transactions. In Monad, the consensus process determines transaction order, but execution can occur later. For example, the consensus process determines which transactions should be included in a block and their order, but executing these transactions can be delayed and doesn’t need to occur immediately during consensus.

To put deferred execution in layman’s terms, A and B agree to watch a movie but postpone deciding the specific time and location until later. This allows them to plan the activity broadly and then finalize details based on the situation, providing flexibility and convenience. Similarly, deferred execution in Monad enhances system efficiency and flexibility. Validator nodes can execute transactions more opportunistically, adapting better to different network environments and workloads.

Conclusion

With the successful launch of Monad’s internal testnet Devnet and its demonstration of achieving 10,000 TPS on EVM, Monad is steadily progressing toward its mainnet release. The mainnet is expected to launch in Q4 of this year, bringing new growth and innovation opportunities to the public chain. As an EVM-compatible decentralized computing platform, Monad provides developers and users with a more efficient, secure, and scalable blockchain infrastructure and opens up more possibilities and development prospects for the entire blockchain industry.

We see a new possibility through Monad’s technological innovation: achieving a more efficient blockchain network without compromising security and decentralization. Users and developers can continue to use familiar tools and wallets (such as MetaMask) and easily migrate existing Ethereum dApps to the Monad platform, enjoying faster transaction processing and lower fees. This compatibility ensures that Monad can attract new users and retain and support existing Ethereum Dapps.

In summary, Monad’s improvements over Ethereum have brought about significant technical breakthroughs and injected new vitality into the entire blockchain ecosystem. We look forward to Monad’s further driving blockchain technology innovation in the future and creating a new era of blockchain that is more efficient, decentralized, and widely applicable.

Author: Oxaya
Translator: Sonia
Reviewer(s): KOWEI、Wayne、Elisa、Ashley、Joyce
* The information is not intended to be and does not constitute financial advice or any other recommendation of any sort offered or endorsed by Gate.
* This article may not be reproduced, transmitted or copied without referencing Gate. Contravention is an infringement of Copyright Act and may be subject to legal action.

Share

Crypto Calendar

Proje Güncellemeleri
Etherex, 6 Ağustos'ta REX token'ını piyasaya sürecek.
REX
22.27%
2025-08-06
Nadir Geliştirici ve Yönetim Günü Las Vegas'ta
Cardano, 6-7 Ağustos tarihleri arasında Las Vegas'ta Rare Dev & Governance Day etkinliği düzenleyecek. Etkinlik, teknik gelişim ve yönetişim konularına odaklanan atölye çalışmaları, hackathonlar ve panel tartışmaları içerecek.
ADA
-3.44%
2025-08-06
Blok Zinciri.Rio Rio de Janeiro'da
Stellar, 5-7 Ağustos tarihlerinde Rio de Janeiro'da gerçekleştirilecek Blockchain.Rio konferansına katılacak. Program, Stellar ekosisteminin temsilcilerini, Cheesecake Labs ve NearX ortakları ile birlikte içeren anahtar konuşmalar ve panel tartışmaları içerecek.
XLM
-3.18%
2025-08-06
Webinar
Circle, 7 Ağustos 2025 tarihinde, UTC 14:00'te "GENIUS Yasası Dönemi Başlıyor" başlıklı bir canlı Yönetici İçgörüleri web semineri düzenleyeceğini duyurdu. Oturum, Amerika Birleşik Devletleri'nde ödeme stablecoin'leri için ilk federal düzenleyici çerçeve olan yeni kabul edilen GENIUS Yasası'nın etkilerini inceleyecek. Circle'ın Dante Disparte ve Corey Then, yasaların dijital varlık inovasyonu, düzenleyici netlik ve ABD'nin küresel finansal altyapıdaki liderliği üzerindeki etkilerini tartışacak.
USDC
-0.03%
2025-08-06
X üzerinde AMA
Ankr, 7 Ağustos'ta UTC 16:00'da X üzerinde bir AMA düzenleyecek ve DogeOS'nin DOGE için uygulama katmanını inşa etme çalışmalarına odaklanacak.
ANKR
-3.23%
2025-08-06

Related Articles

Solana Need L2s And Appchains?
Advanced

Solana Need L2s And Appchains?

Solana faces both opportunities and challenges in its development. Recently, severe network congestion has led to a high transaction failure rate and increased fees. Consequently, some have suggested using Layer 2 and appchain technologies to address this issue. This article explores the feasibility of this strategy.
6/24/2024, 1:39:17 AM
The Future of Cross-Chain Bridges: Full-Chain Interoperability Becomes Inevitable, Liquidity Bridges Will Decline
Beginner

The Future of Cross-Chain Bridges: Full-Chain Interoperability Becomes Inevitable, Liquidity Bridges Will Decline

This article explores the development trends, applications, and prospects of cross-chain bridges.
12/27/2023, 7:44:05 AM
Sui: How are users leveraging its speed, security, & scalability?
Intermediate

Sui: How are users leveraging its speed, security, & scalability?

Sui is a PoS L1 blockchain with a novel architecture whose object-centric model enables parallelization of transactions through verifier level scaling. In this research paper the unique features of the Sui blockchain will be introduced, the economic prospects of SUI tokens will be presented, and it will be explained how investors can learn about which dApps are driving the use of the chain through the Sui application campaign.
6/13/2024, 8:23:51 AM
Navigating the Zero Knowledge Landscape
Advanced

Navigating the Zero Knowledge Landscape

This article introduces the technical principles, framework, and applications of Zero-Knowledge (ZK) technology, covering aspects from privacy, identity (ID), decentralized exchanges (DEX), to oracles.
1/4/2024, 4:01:13 PM
What Is Ethereum 2.0? Understanding The Merge
Intermediate

What Is Ethereum 2.0? Understanding The Merge

A change in one of the top cryptocurrencies that might impact the whole ecosystem
1/18/2023, 2:25:24 PM
What is Tronscan and How Can You Use it in 2025?
Beginner

What is Tronscan and How Can You Use it in 2025?

Tronscan is a blockchain explorer that goes beyond the basics, offering wallet management, token tracking, smart contract insights, and governance participation. By 2025, it has evolved with enhanced security features, expanded analytics, cross-chain integration, and improved mobile experience. The platform now includes advanced biometric authentication, real-time transaction monitoring, and a comprehensive DeFi dashboard. Developers benefit from AI-powered smart contract analysis and improved testing environments, while users enjoy a unified multi-chain portfolio view and gesture-based navigation on mobile devices.
5/22/2025, 3:13:17 AM
Start Now
Sign up and get a
$100
Voucher!