Cointime

Download App
iOS & Android

What sets Sei Apart?

Validated Project

Sei has recently emerged as a topic of interest in the crypto market. Various communities and renowned researchers are jumping into the discussion of Sei, bringing it into the spotlight. Is this attention due to Sei's genuine merit as a project, or is it merely a result of initial crypto shilling for community formation?

The L1 market demands distinctive features that sets it apart from rollup-based L2 services or dApps. While L2 and dApps emphasize compatibility or service features, L1 must function as a cohesive ecosystem and inevitably compete with other L1s. In this article, we will explore the unique selling points that Sei presents compared to other L1s and explore them from an analytical perspective.

"The fastest blockchain." "Instant transaction processing." "The fastest finality among existing blockchains." These are the phrases you'll often encounter when first learning about Sei. In reality, Sei demonstrates significantly faster speeds compared to Aptos (900ms) or Solana (1500ms) that both boast finality.

Source: sei.io

Transaction finality refers to when a transaction is permanently recorded in a block, showing a direct correlation between finality and transaction settlement speed. Sei emphasizes this rapid finality as a solution to the exchange trilemma, which refers to the challenges encountered in building decentralized exchange systems, where satisfying decentralization, capital efficiency, and scalability simultaneously becomes difficult. These three attributes are as follows:

Source: Link

  • Decentralization: The exchange is decentralized, meaning there is no central authority controlling it.
  • Capital Efficiency: The exchange can effectively utilize users' resources and liquidity.
  • Scalability: The exchange boasts high throughput, enabling users to trade conveniently.

Sei tackles Capital Efficiency and Decentralization as a decentralized exchange utilizing the Central Limit Order Book (CLOB) mechanism. Therefore, Scalability becomes crucial for Sei, highlighting the importance of rapid finality. As the pioneer of the sector-specific narrative within the crypto ecosystem, focused on app-specific sectors, Sei holds a unique market advantage as a trading platform.

With the introduction of Sei v2, the ecosystem's expansion includes official support for EVM through Parallel EVM. This enables the execution of Solidity code on Sei without additional effort, facilitated by Address Translator and EVM modules ensuring seamless compatibility with Cosmos SDK and EVM. While projects like BeraChain or Evmos offer similar experiences, what sets Sei apart is its support for the "first parallel EVM.”

The notion of Parallel EVM has been a longstanding proposal within the EVM ecosystem. However, developers face significant hurdles in monolithic chains where various components (such as consensus, blocks, and transactions) are intricately intertwined. However, Sei's blockchain is built on the Cosmos SDK, leveraging the modular characteristics of the blockchain to implement parallel processing. This is achieved by modifying the Tendermint consensus engine responsible for block generation. Handling transactions in parallel presents inherent complexities due to the nature of blockchains. While this may not pose significant issues for individual nodes, situations where multiple nodes share states can lead to disparities in parallel processing, resulting in state inconsistencies among validator nodes—a phenomenon known as non-determinism. Especially in cases where transaction order matters, such as balance transfers between accounts, sequential processing is crucial to ensure the accuracy of balance values (the node's state). To address these challenges, Sei implements Optimistic Parallelization, allowing for parallel transaction processing while maintaining sequential processing when transaction order is critical. Through this approach, Sei achieves high throughput while preserving transaction order integrity.

Additionally, Sei has introduced SeiDB, a modified database replacing the default one provided by Cosmos SDK. SeiDB is tailored to address challenges such as state inconsistency and synchronization delays, all while being optimized for parallel execution. These technical enhancements underscore Sei's unique capabilities in efficiently managing high TPS demands while ensuring minimal hardware requirements for nodes. 

Source: blog.sei.io

Sei highlights its role as a universal L1 chain designed specifically for trading. To optimize the environment as DeFi applications, Sei offers the following distinctive features:

  • Native Order Matching Engine: Unlike general-purpose L1 chains that depend on Automated Market Maker (AMM) mechanisms for trade execution, Sei provides its own order book. This enables direct trading between buyers and sellers, resulting in lower slippage and increased liquidity. As a result, users can expect reduced trading costs and improved trading efficiency.
  • Native Price Oracles: To enable the order book mechanism, accurate price information required for trading is provided through oracles. These oracle data are designed to be supplied by validator nodes during block creation, with various methods proposed to ensure the utilization of precise and up-to-date data.
  • Frequent Batch Auctioning (FBA): Sei implements the FBA method to aggregate information on all market orders and determine a consistent clearing price. This approach helps prevent front-running attacks by manipulating transaction sequences, thereby fostering a fairer trading environment.

Sei takes pride in its emphasis on being tailored for trading, particularly highlighting its rapid finality speed. However, in reality, chains built on the Cosmos SDK offer options to adjust block creation time as part of their default settings.

Source: Link

Within the config.toml file, which governs the chain's settings in Cosmos SDK, there exists a parameter known as timeout_commit in the consensus settings. This parameter regulates the time interval between block creation and the subsequent block's creation. By adjusting this parameter, block creation time can be controlled, thereby enhancing finality speed. Achieving finality of less than one second through such configurations is feasible. Essentially, increasing block creation speed solely based on BFT consensus methods, independently of transaction throughput, can reduce speed of finality.

For fast finality to hold significant value, it's crucial that a large number of transactions can be included in a block within a short block creation time. Its significance diminishes if transactions submitted at a particular moment are stored not in the next block but several blocks later due to excessively fast finality.

Key factors to consider for achieving fast finality include the number of nodes needing communication and the network's transmission speed. The more nodes involved and the greater the physical distance between them, the faster the finality speed becomes. While Sei has achieved a finality of 250ms in a restricted environment, the actual mainnet takes longer due to these reasons. Hence, it's evident that Sei can achieve the emphasized extremely fast finality level in a conservative environment with minimized node count and physical distances between them. Adapting fast finality to various service environments and managing node fluctuations will be a future challenge for Sei. 

Sei highlights Optimistic Parallelization as a key technology to achieve Parallel EVM. However, this approach is implemented using a method similar to Aptos' Block-STM algorithm. While Sei's application of Block-STM to EVM is noteworthy, validation appears necessary to be recognized as a trailblazer in core technology.

Another technological distinction Sei emphasizes is SeiDB. In practice, it’s common to customize databases with IAVL tree structures to align with their business logic in the ecosystem utilizing Cosmos SDK.

Source: blog.sei.io

In short, the core feature of SeiDB is the separation of one large database into two distinct layers:

  • State Commitment: This database is responsible for storing the state information of the chain in a Merkle tree format on memory, providing fast state access and Merkle hashing.
  • State Store: Acting as an archive node, this database handles the retrieval of all past states.

While Sei undoubtedly benefits significantly from database separation in terms of data storage efficiency and optimization, it also faces several challenges that require attention: 

  • Complexity of State Storage: Employing two databases for state storage increases complexity, potentially leading to bugs or vulnerabilities, particularly concerning synchronization between the two layers.
  • Dependency on Optimistic Parallel Processing: SeiDB's performance enhancements rely on optimistic parallel processing, assuming transactions can proceed in parallel without conflicts. However, if this assumption fails, it may require transaction processing delays or the implementation of complex conflict resolution mechanisms, impacting overall throughput and efficiency.
  • Hardware Requirements: Despite Sei's claims of low node hardware requirements, achieving significant performance improvements and storage optimization may still require substantial computing power. Validator nodes, especially those processing a large volume of transactions rapidly, may face increased demands.
  • Write-Ahead Logging (WAL) for State Changes: While utilizing WAL for asynchronous state changes can enhance performance, there is a risk of data loss or corruption if the WAL fails before flushing to the state store. This potential issue could compromise the integrity of the blockchain state, necessitating robust recovery mechanisms to ensure consistency.

Ultimately, SeiDB represents significant progress in blockchain storage and performance optimization. However, ongoing monitoring, testing, and updates are essential for Sei to maintain reliability and efficiency in addressing anticipated challenges.

Sei faces the task of strengthening its position as an L1 chain in the future. 

When compared to existing Cosmos SDK-based DEX-focused chains, Sei exhibits clear advantages in high-frequency trading (HFT) and large-scale transactions. Its ability to execute rapid trades at fixed prices provides a distinct edge over platforms like Osmosis and dYdX. Nevertheless, emphasizing its standing as an L1 chain requires effective utilization of the Sei token's utility. Currently, proposed utilities such as network fees, staking, and governance are also offered by other L1 chains. Thus, differentiating Sei based on token utility remains a challenge.

For example, Osmosis offers incentives for staking through Superfluid and Supercharged using $OSMO, while dYdX provides governance participation opportunities by staking $dYdX, which can adjust various parameters in trading. Currently, $Sei demonstrates relatively lower gas fees compared to other platforms. However, a clear differentiation strategy is needed to set it apart from existing utilities.

The active emergence of "trading-focused" dApps is also anticipated. As Sei aims to resolve the exchange trilemma as an L1 solution, the presence of trading-focused dApps can bolster Sei's narrative.

In the long term, Sei may eventually require a strategy for rollups and L2 solutions. If Sei continues to operate solely as an L1 blockchain, it may face limitations as it scales beyond a certain point, given the structural constraints of the blockchain that necessitate multiple nodes to store and share all historical and current data. With numerous dApps based on Sei expected to surface, adopting L2 solutions such as rollups becomes crucial to address scalability and interoperability challenges. Therefore, Sei must develop a comprehensive strategy not only for the L1 ecosystem but also for rollups and L2 to ensure secure and sustainable ecosystem expansion. 

It's undeniable that Sei is currently experiencing faster growth compared to similar projects. In fact, prominent projects collaborating with Sei are testament to this trend. For readers with a positive outlook on the new L1 narrative, it's worth keeping an eye on how Sei will continue to navigate and expand within the L1 market.

※ Reference

Original Link

Comments

All Comments

Recommended for you

  • Securitize raises $47M in funding led by BlackRock to enhance innovation and expansion in digital asset securities ecosystem

    Miami-based company Securitize, which specializes in tokenizing real-world assets, has raised $47 million in funding. The round was led by BlackRock, with participation from Hamilton Lane, ParaFi Capital, Tradeweb Markets, Aptos Labs, Circle, and Paxos. The funds will be used to enhance the company's innovation and expansion as it consolidates its position in the digital asset securities ecosystem. BlackRock's first tokenized fund, the BlackRock USD Institutional Digital Liquidity Fund, has also been launched on Ethereum and is available to investors by subscribing to the fund with Securitize.

  • Web3 game Shadow War completes $5 million financing, led by Momentum 6

    Game studio Patriots Division has raised $5 million in seed and Series A financing for its Web3 game Shadow War. The Series A funding was led by Momentum 6, with participation from iAngels, Cointelligence Fund, Xborg, Andromeda VC, Cogitent Ventures, and Cluster Capital.

  • BTC falls below $57,000

    According to market data, BTC has fallen below $57,000 and is currently trading at $56,999.99, with a daily decline of 5.48%. The market is volatile, so please be prepared for risk control.

  • CoreWeave, an AI cloud service provider, completes $1.1 billion Series C financing led by Coatue

    CoreWeave, a cloud service provider focusing on artificial intelligence, announced the completion of a $110 million Series C financing round. Coatue led this round of financing, with Magnetar (the main investor in the previous round), Altimeter Capital, Fidelity Management & Research Company, and Lykos Global Management participating.

  • Cointime MAY 1 News Express

    1.Celsius Network destroys 94% of total supply of CEL, worth over $89 million2.USDC Treasury destroyed more than 200 million USDC3.Pike was suspected of being hacked and lost 479 ETH4.Fantom launches $6.5 million development fund, betting on safer memecoins5.Yesterday, the U.S. spot Bitcoin ETF had a net outflow of $162 million6.The balance of Binance Bitcoin wallet increased by 6249.36 in the past 24 hours, and 15565.89 inflows in the past 7 days7.In April, NFT sales on the Bitcoin chain exceeded US$685 million, setting the third highest monthly record in history8.On-chain content distribution agreement Metale Protocol completes additional $2 million in seed round financing9.A whale deposited 1,140 MKR into Coinbase, losing about $1.1 million10.The Bitcoin stablecoin project, bitSmiley, goes live with its Alphanet V1, marking its debut deployment on the Bitcoin Layer 2 network, Bitlayer.

  • Barcelona-based Web3 Video Games Startup GFAL Raises $3.2M in Seed Funding to Expand Team and Accelerate Production Plans

    Barcelona-based startup GFAL has secured $3.2 million in seed funding from investors including Supercell Ltd and Mitch Lasky. The company plans to use the funds to expand its team and accelerate its game production plans, which leverage AI and Web3 technology for immersive gameplay. GFAL's Elemental Raiders mobile game soft-launched in March 2023, with plans to build on this for a 2024 launch. CEO Manel Sort expressed gratitude for the investment and excitement to work with former colleagues from Digital Chocolate.

  • BTC falls below $58,000

    Golden Finance reported that according to OKX market data, BTC briefly touched $57,700 and is now trading at $58,581.53, with a daily decline of 7.15%. The market is volatile, so please be prepared for risk management.

  • On-chain content distribution agreement Metale Protocol completes additional $2 million in seed round financing

    Metale Protocol, a content distribution protocol on the blockchain, announced the completion of an additional $2 million seed round of financing. Waterdrip Capital led the investment, with participation from Aipollo Investment and Ultiverse. As of now, the total size of its seed round financing has reached $4 million. Metale Protocol was formerly known as Read2N, a Web3 decentralized reading application. The new funds will be allocated to its content creation fund to stimulate more content creation activities and promote the construction of its protocol as a platform for issuing and distributing content assets on the blockchain.

  • DWF Ventures announces investment in blockchain game developer Overworld

    DWF Ventures announced an investment in Overworld, a chain game developer. Overworld recently announced plans to launch another NFT series, and in addition, Overworld will soon launch the main world arena.

  • Cryptool invests $2 million in digital currency trading platform Bittime

    On May 1st, investment firm Cryptool invested $2 million in cryptocurrency trading platform Bittime in Series A funding. Founded in 2017, Cryptool focuses on first and second-level investments in digital currency, with a total investment of $30 million by 2023.