LD Capital: SEI Accelerated Development, Parallel EVM Narrative Overlaid with Positive Operations

LD Capital
18 min readJan 16, 2024

--

I. Fundamental Analysis

1.Overview

Sei is built on Cosmos SDK and Tendermint Core, positioning itself as a Layer 1 blockchain focused on the DeFi sector. Its goal is to bring the order book model onto the blockchain, narrowing the speed gap between DEX and CEX, aiming to become the “crypto Nasdaq.”

Sei is a general-purpose chain focused on trading rather than an application chain dedicated to specific applications. In other words, Sei is a blockchain optimized for trading, implementing its positioning through features such as an order matching system, native matching engine, Twin-Turbo consensus, and transaction parallelism:

(1) Core — Order Matching System and Native Matching Engine:

As a Layer 1 designed “for trading,” Sei does not exclusively adopt either AMM or traditional order book mechanisms when processing transactions. Instead, it opts for a compromise solution — the Central Limit Order Book (CLOB). CLOB constructs an order matching engine at a lower level within the blockchain’s structure, attempting to address the issue by “embedding” the order book on the chain (Sei does not manage the order book but provides an order matching framework). Various DeFi protocols built on Sei can leverage this order matching engine. A significant issue in the existing DeFi ecosystem is the fragmentation of liquidity for each DeFi protocol. With Sei, all DeFi protocols share an order matching engine that can provide deep liquidity.

For example, consider “Red Dex” and “Blue Dex” on the SEI platform. If user A submits an order on Red Dex to sell 1 ETH at a price of $2,000, and user B submits a market order to buy 1 ETH on Blue Dex, Sei’s order matching engine will match these two orders. Typically, DeFi networks suffer from fragmented liquidity because each DeFi protocol maintains its liquidity. However, with Sei, all DeFi protocols share an order matching engine that can provide deep liquidity, minimizing financial losses for users due to slippage and other related impacts.

(2) Twin-Turbo Consensus:

Twin-Turbo consensus includes two functions: 1) Smart block propagation for efficient block propagation, and 2) Optimistic block processing to enhance scalability by reducing block time.

Smart Block Propagation: In a typical blockchain network, block proposers collect transactions in their local mempool, form them into a block, and propagate it across the network. During this process, a single block containing all transaction data is disseminated to the network. This means that even though full nodes already have almost all transactions, conventional blockchain networks still propagate blocks with the same transaction data. This represents a waste of bandwidth.

In Sei, block proposers do not include transaction data in the block proposal but only the hash values of transactions and the block ID, which serves as a reference to the block. The hash value of transactions is a condensed hash function of existing transaction data, offering the advantage of smaller volume. Block proposers first propagate the block proposal to the network, as illustrated below, and then disseminate the complete block in smaller chunks. If a validator receiving the block proposal from a block proposer already has all transactions corresponding to that hash value in its local mempool, it will reconstruct the block from its local mempool instead of waiting for the complete block to arrive. If a specific validator is missing a transaction in its local mempool (a very low probability), it can wait for the entire block to arrive.

Source: Four Pillars,Jay-Sei Labs

The benefits of this smart block propagation process are significant as it substantially reduces the time required for validators to receive blocks. According to co-founder Jay, this process has proven to increase Sei’s overall scalability by 40%.

2.Optimistic Block Processing:

While Sei utilizes the Tendermint Core, some modifications have been made to significantly reduce block time and enhance scalability. Tendermint Core is a consensus engine that combines Delegated Proof-of-Stake (DPoS) and the PBFT consensus algorithm. The typical Tendermint BFT consensus process involves Propose — Prevote (2/3 consensus) — Precommit (2/3 consensus) — Commit.

Sei’s Optimistic Block Processing modifies the Tendermint BFT process by introducing a block processing phase between Precommit and Commit. Assuming malicious nodes are rare and validators have received the data needed for computation during the Prevote stage, Sei’s Optimistic Block Processing parallelizes the computation with Prevote, aiming to further reduce block time. Reducing block time through optimistic block processing should not be an issue as, most of the time, the block’s validity is not in question. However, if the block is rejected by the network during the Prevote and Precommit phases of the computation, it can be straightforwardly discarded.

Source: Four Pillars,Jay-Sei Labs

Taking a set of Sei data using the normal Tendermint BFT method, the total block time would be 200+150+150+400+100, which is 1000ms. If optimistic block processing is applied, saving 300 milliseconds in prevote and precommit time, the block time is reduced to 700 milliseconds. If the block size remains the same, reducing the block time from 1000ms to 700ms means there are approximately 1000/700 more blocks in the same time, an increase of about 1.43 times, leading to a 43% improvement in scalability.

(3)Transaction Parallelization:

Another method employed by Sei to enhance scalability is the parallelization of transactions. Ethereum Virtual Machine (EVM), the most popular virtual machine in the blockchain industry, processes transactions sequentially, inherently limiting scalability. By default, the Cosmos SDK upon which Sei is based also processes transactions in a serial manner. In Cosmos application chains, when a block is received, validators sequentially execute BeginBlock logic, DeliverTx, and EndBlock logic. Sei modifies DeliverTx and EndBlock to process transactions in parallel.

Firstly, the DeliverTx process handles transactions such as token transfers, governance proposals, and smart contract invocations, ensuring that parallel transactions do not reference the same keys. For example, two transactions where A sends X tokens to B and C sends Y tokens to D can be processed in parallel. However, two transactions where A sends X tokens to B and B sends X tokens to C cannot be processed in parallel, and they will be processed consecutively.

To parallelize multiple transactions, it is necessary to ensure they do not reference the same keys. For this purpose, Sei builds a Directed Acyclic Graph (DAG) to check dependencies between transactions before executing them. In the diagram below, assuming the DAG shows the middle R3 depends on R2 in the first column, and R3 in the third column depends on the middle W1. As a result, transactions will be processed as shown in the right diagram.

Source: Four Pillars,Jay-Sei Labs

In the last part of the block, EndBlock, transactions related to the matching engine are executed by the native order matching engine. Similarly, transactions related to the matching engine are not processed in sequential order but in parallel once it is confirmed that they are unrelated to each other.

By default, the network is designed to assume that all transactions are unrelated and process them immediately. If there are related transactions, only those transactions will fail. Therefore, application developers based on the Sei order matching engine must first filter out which transactions are related and which are unrelated. Experimental data on parallelization on Sei showed a performance improvement of 60–90% in block time, TPS, and other aspects compared to non-parallelization.

2.Parallel EVM Narrative

Since the official launch of Sei’s public mainnet, Pacific-1, on August 16, 2023, and the release of the Sei-V2 version plan on November 29, 2023, which supports the first parallel EVM, Sei has allowed smart contracts written in Rust using Cosmwasm. As Sei continues to attract more developer interest and expands its ecosystem, developers’ primary request is for the execution environment supported by Sei to have greater flexibility. With the support of parallel EVM, Sei becomes available for global EVM developers to use.

Source: Sei Labs

(1) What is Parallel EVM?

Parallel EVM (Ethereum Virtual Machine) is a concept aimed at improving the performance and efficiency of the existing EVM, which is the core of Ethereum responsible for running smart contracts and processing transactions. The current EVM has a crucial feature: transactions are executed sequentially.

Sequential execution ensures that transactions and smart contracts can be executed in a deterministic order, making it easier to manage and predict the blockchain’s state. This design choice prioritizes security and reduces the potential complexity and vulnerabilities associated with parallel execution. However, in situations of high load, it may lead to network congestion and delays.

Imagine the original design of the EVM as vehicles moving one after another on a single lane, where each vehicle must travel at the speed of the preceding one. In case of congestion (transactions), subsequent vehicles will be stuck. In contrast, Parallel EVM is like expanding this single lane into a multi-lane highway, allowing multiple vehicles to move simultaneously. Technically, Parallel EVM allows different independent transactions or smart contracts to proceed concurrently, significantly improving EVM processing speed and system throughput.

General approaches to parallel EVM processing:

  • Partitioning or sharding: Partition or group transactions so that they can be executed in parallel. This means different transactions can execute simultaneously on different processing units, rather than one after another. Additionally, Solana’s SVM adopts a similar processing logic.
  • Optimized algorithms: Develop new scheduling algorithms and optimization techniques to effectively manage and execute parallel tasks while maintaining the correctness and order of transactions.
  • Security and consistency assurance: Implement complex synchronization mechanisms and consistency models to ensure the security and data consistency of the entire system even in parallel processing scenarios.

In summary, parallel processing of transactions allows the EVM to handle more transactions at the same time, significantly increasing TPS, alleviating network congestion, and enhancing scalability.

(2) Key Implementations of Sei V2

1) Backward compatibility of EVM smart contracts — Allows developers to deploy audited smart contracts from EVM-compatible blockchains without changing the code, supporting the reusability of familiar and widely used applications and tools (such as Metamask):

Backward compatibility means that new products consider previous products during design and can be used as-is, even if they were made for previous products. The backward compatibility in the design of Sei V2 means that most existing smart contracts on Ethereum can be deployed on the Sei blockchain without changing any code.

Source: Sei Labs

2) Optimistic Parallelization — Allows the chain to support parallelization without requiring developers to define any dependencies:

Sei V2 parallelizes the processing of transactions, assuming that all operations are valid, executes them first, and then reverts when issues arise during the validation process. The result of processing should be the same as the result of sequential processing. In essence, Sei V2 adopts an optimistic approach, processing transactions first and using information about any issues that arise to handle transactions, rather than validating transaction relationships upfront. Optimistic parallelization will apply to all transactions running on Sei, including Sei native transactions, Cosmwasm transactions, and EVM transactions.

Source: Sei Labs

3) Interoperability with existing chains, allowing seamless integration between EVM and any other execution environment supported by Sei:

As Sei is an integrated chain, all transactions entering different components of Sei (Cosmwasm, EVM, Bank, Staking) are able to communicate with each other. Despite serving different purposes, these transactions ultimately share many similar characteristics, such as gas, sender, and transaction subject. When these transactions are received by the chain, they are processed as native Sei transactions and forwarded to the appropriate storage components (e.g., CosmWasm transactions are sent to wasm modules and executed). This brings a more seamless developer experience — EVM developers can easily access native tokens and other chain functionalities (e.g., staking).

Source: Sei Labs

4)SeiDB — Improvements to the storage layer to prevent state bloat, enhance state read/write performance, and make it easier for new nodes to synchronize states and catch up:

SeiDB represents an enhancement to the storage layer, addressing concerns related to state bloat and improving the efficiency of state read/write operations. These improvements aim to facilitate the synchronization of states for new nodes, ensuring a more streamlined and efficient process.

(3) Significance of Parallel EVM:

Former Polygon co-founder JD previously expressed a premonition that every Layer 2 solution in 2024 would rebrand itself with the “Parallel EVM” label. Georgios, CTO at Paradigm, also shared the view that 2024 would be the “Year of Parallel EVM” and noted internal explorations and designs related to this technology at Paradigm.

For developers, blockchain development has historically been challenging, requiring adaptation to different virtual machines or languages with each new platform. If blockchain clients are builders, these actions haven’t considered the convenience of clients. Ultimately, blockchain must evolve to meet the needs and environments of builders. Currently, the EVM ecosystem is the most active, and Parallel EVM can address this challenge.

The support for EVM in Sei V2 doesn’t imply the abandonment of WASM. Sei V2 plans to support both virtual machines simultaneously, even facilitating interoperability between them. If successful, Sei V2 could become the most successful integrated blockchain supporting multiple virtual machines.

Jay, co-founder of Sei Labs, mentioned at the end of 23 on social media that Sei V2 would enable EVM and Cosmwasm contracts to call each other using stateful precompiles and chain-level message dispatch. After the audit, this upgrade is scheduled for release on the public testnet in Q1 2024 and deployment on the mainnet in H1 2024.

3.On-Chain Ecosystem Development

In the past 30 days, Sei Mainnet has recorded a total transaction volume of 728,000, with 62,500 unique users. The average daily transactions amount to 23,500, showing an upward trend in both transaction volume and user numbers.

Source: Flipside

In the recent 30-day data, the most active applications on Sei Mainnet, ranked by current users and transaction volume, are Astroport, Tatami, Dagora, and Webump.

Source: Flipside

Astroport (Dex): Astroport envisions becoming the mainstream next-generation AMM, providing deep liquidity pools and significant trading volume for the Cosmos ecosystem. Better pricing aims to attract more liquidity, forming a self-reinforcing cycle. Ultimately, Astroport aims to operate as the foundational liquidity layer for Cosmos. Currently, Astroport operates on four chains: Sei, Neutron, Terra2, and Injective.

Tatami (Gaming): Tatami addresses a prominent need in the Web3 space — a dedicated gaming publisher. As numerous games are scattered across various chains, Tatami offers users a unique space to play games, collect assets, and complete tasks on a single platform, bringing a unique fusion of game development, market integration, and launchpad services aimed at changing the way games are experienced, created, and distributed in the Web3 space.

Dagora (NFTs): Dagora is Coin 98’s multi-chain NFT marketplace, supporting BNB Chain, Polygon, Sei, and others. Dagora features Marketplace (NFT trading market), Launchpad (NFT release platform), and Hot Drops (free minting section). Additionally, Dagora allows C98 token holders to participate in auctions, launchpads, and various activities.

Webump (NFTs): Webump is dedicated to supporting development teams and creator communities on the Sei blockchain. In collaboration with Lighthouse, it provides open-source smart contracts designed for seamless NFT creation on Sei. Lighthouse, an open protocol and toolkit, enhances the NFT creation process, making it easier and more efficient for NFT creators and developers to access.

As a blockchain focused on providing high-performance DeFi, Sei’s current on-chain DeFi TVL, both in overall and individual project data, demonstrates early-stage development in terms of data performance and product construction.

Source:Defillama

Kryptonite: Kryptonite is a decentralized AMM and staking protocol based on Sei. It can be used in conjunction with any bAssets on the Cosmos blockchain and other blockchains. The protocol aims to bring a robust native currency market to the Cosmos ecosystem, fostering financial innovation and flexibility. Users can stake Sei Network’s token SEI to receive liquidity staking tokens bSEI. Subsequently, bSEI can be used as collateral to mint the stablecoin kUSD at a 200% collateralization ratio.

Levana Perps: A perpetual contract trading platform on Sei supporting leverage of up to 30x. Currently, Levana supports leveraged contract trading for assets like BTC, ETH, ATOM, and OSMO.

Yaka Finance: An upcoming native Dex on Sei that allows users to interact on its platform. Users can currently engage with it on the official website, and there may be future airdrops.

Sushiswap and Vortex Protocol: On February 23, 2023, Sushiswap announced the acquisition of the derivatives Dex, Vortex, and collaboration with Sei. There were plans to launch a decentralized derivatives exchange on Sei in the future. However, there have been no new developments disclosed for the project, with Vortex’s latest official update dating back to February 2023.

2. Team, Funding, and Partnerships

Team Background:

Sei Network was founded in 2022 by Jeff Feng and Jayendra Jog. Jeff Feng, a co-founder of Sei Labs, graduated from the University of California, Berkeley. From 2017 to 2020, he worked in the TMT investment banking division at Goldman Sachs. Jayendra Jog, also a co-founder of Sei Labs, graduated from the University of California, Los Angeles, and previously served as a software engineer at Robinhood from 2018 to 2021.

Phillip Kassab is the Director of Growth and Marketing at Sei Network. He graduated from the Stephen M. Ross School of Business at the University of Michigan and previously held positions as Marketing Director at Trader Joe and Swim.

Other team members have backgrounds from notable companies such as Google, Amazon, Airbnb, Goldman Sachs, etc.

Funding History:

  • In August 2022, Sei Labs, the team behind Sei Network, completed a $5 million seed round. Multicoin Capital led the round, with participation from Coinbase Ventures, GSR, and others.
  • In February 2023, Sei announced a $400 million Series A funding round with plans for an airdrop. In April, Sei Network raised $30 million at an $8 billion valuation, with participation from Jump Capital, Distributed Global, Multicoin Capital, Bixin Ventures, and others. These funds were allocated for development and market expansion in the Asia-Pacific region.
  • In the same month, Sei Labs’ ecosystem fund secured $50 million in a new funding round with participants including OKX Ventures and Foresight Ventures.
  • In November 2023, Circle made a strategic investment in Sei Network, supporting the launch of the native USDC on the network.
Source:Rootdata

3. Operations and Partnerships

(1) Testnet Activities and Airdrops:

During the Atlantic 2 testnet phase, Sei explicitly stated its commitment to allocate token incentives as rewards for early community members using the chain. Once the Pacific-1 mainnet is publicly released, these rewards will be open for claiming, encouraging user engagement on the network.

(2) Sei Ambassador Program:

The introduction of the Sei Marines Ambassador Program involves designing levels and tiered rewards for ambassadors based on their contributions. This program aims to stimulate promotional efforts in various regions.

(3) Sei Launchpad Accelerator Program:

The launch of the sei/acc program involves investing in and supporting ecosystem projects by providing resources, guidance, and incentive measures. A product manager will be assigned to assist in developing a strategic roadmap and collaborate with key members of the Sei Foundation team.

(4) Expansion and Promotion in the Asia-Pacific Region:

In December 2023, Sei sponsored Binance’s event in the Maldives. On December 21, Sei announced a strategic partnership with KudasaiJP to expand its market share in Japan. In January 2024, the South Korean research firm Four Pillars revealed that Sei is preparing various initiatives to further expand its influence and collaborations in the Korean market.

3.Token Overview

(1) Basic Information:

  • Current Market Cap: $1.674 billion
  • Fully Diluted Valuation (FDV): $7.947 billion USD
  • Total Supply: 10 billion SEI tokens
  • Circulation Rate: 23%
  • 24-Hour Trading Volume: $793 million USD
  • Major Trading Platforms: Binance (26.91%), Upbit (25.85%), Coinbase (8.37%)

(2) Comparison with Other New Blockchains:

  • SEI current market cap is lower than Aptos and higher than Sui.
  • Represents approximately 0.5% of Ethereum’s market cap and around 3.9% of Solana’s market cap.

(3) DeFi TVL and Position:

  • Sei Total Value Locked (TVL) in DeFi applications is considerably smaller compared to Sui and Aptos, standing at only 12.19 million USD.
  • Indicates that Sei is in an early stage of DeFi development.
Source:LD Capital

2. Tokenomics

The SEI token serves various functions within the Sei ecosystem:

Network Fees: Used to pay transaction fees on the Sei blockchain.

DPoS Validator Staking: SEI holders can choose to delegate their assets to validators or stake SEI to run their own validators to secure the network.

Governance: SEI holders can participate in the future governance of the protocol.

Native Collateral: SEI can be utilized as collateral for native asset liquidity or applications built on the Sei blockchain.

Fee Market: Users can pay fees to validators for prioritized transaction processing, with these fees potentially shared with users delegating to that validator.

Transaction Fees: SEI can be used as fees for exchanges built on the Sei blockchain.

The total token supply is capped at 10 billion, with 51% allocated to the community, 48% to the ecosystem reserve, 9% to the foundation, 20% to the team, 3% to the launch pool, and 20% to private sales and investors. The ecosystem reserve, constituting 48%, is further divided into three parts:

  • Staking Rewards
  • Ecosystem Initiatives
  • Sei Airdrops and Incentives

As part of the decentralized proof-of-stake mechanism, validators play a crucial role in protecting the Sei blockchain. Users can stake their SEI to validators and receive staking rewards.

The SEI token distribution also includes allocations for ecosystem initiatives, where SEI tokens will be distributed to contributors, builders, validators, and other participants contributing meaningfully to the Sei network.

Additionally, a portion of the SEI supply is earmarked for airdrops, incentive testnet rewards, and ongoing programs aimed at distributing SEI rapidly to users and the community.

Source:Sei Labs

Unlocking Schedule

On August 15, 2024, SEI experienced its first major unlocking event involving private investors and the team. Regular monthly unlocks occur on the 15th of each month, primarily for ecosystem releases and foundation unlocks. The monthly unlocking volume is 125 million tokens, approximately valued at $91.61 million.

Source:CryptoRank

3.Recent Trading Activity

Since its launch on August 15, 2023, SEI has experienced a prolonged period of declining prices for approximately three months. However, starting from November 22, the token has shown a significant surge from around $0.14 to its recent peak of $0.88. On January 3, it touched the upper band of the Bollinger Bands before retracing, accompanied by a slight decrease in daily trading volume.

Source:Binance

In recent days, with the rise in token prices, there has been a significant increase in both long and short contract liquidation amounts. Concurrently, the open interest in contracts has decreased. In the recent period, the net difference between active buying and selling actions has been negative, indicating a decrease in open interest. Despite this, the long/short ratio has shown an upward trend.

Source:Binance

4.Summary

Fundamentals: Sei distinguishes itself with a centralized order book-based underlying architecture, suitable for building DeFi. However, the on-chain ecosystem, overall applications, and TVL are in the early stages, lacking standout DeFi applications. The introduction of parallel EVM in Sei V2 opens up new narratives, but other chains and L2 solutions may gradually support parallel EVM. The success of SeiV2 depends on effectively attracting funds, quality projects, and users to gain a competitive advantage. The V2 upgrade is scheduled for release in Q1 2024 on the public testnet and deployment to the mainnet in H1 2024.

Team Background and Recent Developments: The core team is young but with a solid background, backed by strong financial support. Recent efforts in promotion and operations in the Asia-Pacific region show continuous development.

Tokenomics: With a total supply limit of 100 billion tokens, 51% will be allocated to the community, with the team and investors accounting for 40%. Market capitalization, when compared to other new chains, is lower than Aptos and higher than Sui, representing around 0.5% of Eth’s market value and approximately 3.9% of Solana’s market value. The first significant unlock for private investors and the team occurred on August 15, 2024, with monthly routine unlocks mainly for ecosystem release and foundation unlocking, totaling 1.25 billion tokens per month, approximately $91.61 million.

Recent Trading Situation: Starting from November 22, the token price has seen a significant rise from around $0.14 to the recent high of $0.88. Recently, the price touched the upper Bollinger Band, experiencing a slight pullback. Daily trading volume and contract trading volume have shown a minor decrease.

Token Post-Unlocking in the Near Term: The token’s recent unlocking, coupled with the V2 parallel EVM upgrade in the next quarter, may positively impact ecosystem development and the token price.

LD Capital

As a global blockchain investment firm, we have built a portfolio of over 250 investments since 2016, spanning across various sectors, including infrastructure, DeFi, GameFi, AI, and the Ethereum ecosystem. We focus on investing in projects with disruptive innovations, actively taking on the role of primary investors, and providing comprehensive post-investment services to these projects. We employ a combination of direct investment from our own funds and a distributed fund model to cover all-stages of investment.

Trend Research

Trend Research division specializes in crypto hedge funds focusing on secondary areas within the crypto market. Our team members come from top platforms and institutions like Binance and CITIC. We excel in macroeconomics, industry trends, and project data analysis, with trend, hedge, and liquidity funds.

Cycle Trading

We specialize in Web3 project investment and service, with a strong emphasis on Infra, applications, and AI. We have a team of nearly 20 senior engineers and dozens of crypto experts as advisors, assisting projects in strategic design, capital platform relations, and liquidity enhancement.

website: ldcap.com

twitter: twitter.com/ld_capital

mail: BP@ldcap.com

medium:ld-capital.medium.com

--

--

LD Capital

We are one of earliest VC investors in the Blockchain field in Asia. We focus on : Innovation projects within finance, games, content publishing and IOT