Sei Overview
Sei data on Dune
What is Sei?
Sei is a Layer-1 blockchain optimized for trading and decentralized finance (DeFi). It combines the strengths of Solana and Ethereum by implementing a fast parallelized EVM chain, providing a hyper optimized execution layer that benefits from the tooling and mindshare around the EVM.
Sei is a Cosmos chain with EVM modules added in the v2 upgrade. Dune indexes the EVM data separately from the Cosmos data. As such, data latency between the two can be expected.
- Sei (v1) was originally a Cosmos chain. On May 20, 2024, a proposal to upgrade Sei (v2) to include EVM support was passed. Consequently, on May 27, 2024, Sei upgraded to v2 with EVM support.
- Dune indexes the EVM component of Sei directly from RPC providers, supporting standard EVM chain decoding capabilities.
- For Cosmos data, Dune partners with a data provider, and these tables and schemas can be found in the Cosmos Data section.
- The EVM and Cosmos components share the same consensus mechanism, validated by the same validators, but they operate independently with interoperability features.
- Interoperability between EVM and Cosmos relies on EVM Precompiles and Pointer Contracts. If these do not emit events, it may result in data gaps.
- Dune’s EVM data for Sei starts from the v2 upgrade at block height 73,123,881.
Parallelization
Parallelization allows Sei to process multiple independent transactions simultaneously, leveraging modern hardware capabilities for enhanced performance.
Sei Optimizations
Sei introduces four major innovations:
- Twin Turbo Consensus: This feature allows Sei to reach the fastest time to finality of any blockchain at 400ms, unlocking web2 like experiences for applications.
- Optimistic Parallelization: This feature allows developers to unlock parallel processing for their Ethereum applications, with no additional work.
- SeiDB: This major upgrade allows Sei to handle the much higher rate of data storage, reads and writes which become extremely important for a high performance blockchain.
- Interoperable EVM: This allows existing developers in the Ethereum ecosystem to deploy their applications, tooling and infrastructure to Sei with no changes, while benefiting from the 100x performance improvements offered by Sei.
Performance Metrics
- Time to Finality: 400 milliseconds
- Transactions per Second: 5,030 (12,500 theoretical max)
Virtual Machine Interoperability
Sei supports both EVM and CosmWasm smart contracts in different execution environments. It introduces interoperability features, such as precompiled EVM contracts and Pointer Contracts, to enable smooth interactions between both environments.
For more details, visit Sei Interoperability Documentation.
Data Catalog
EVM Data
Logs
Access detailed event logs from smart contracts to analyze contract activity and interactions.
Blocks
Explore data on blocks processed by the Sei chain, illustrating network throughput and activity.
Transactions
Transaction details that highlight the efficiency and speed of the Sei chain.
decoded
Decoded transaction data for easier analysis and deeper understanding of contract executions.
Cosmos Data
Timestamp is only available on block level tables (e.g. sei.cosmos_blocks
) with field block_timestamp
, so you need to do an inner join on block_height
to get timestamp to other tables.
Blocks
Contains each validated block in the chain.
Block Events
Contains all block-level events and attributes in the chain, partitioned by event_index.
Transactions
Contains relevant data associated with each transaction.
Transaction Message Events
Contains all events and their corresponding attributes partitioned by message_index.
Transaction Messages
Contains all messages submitted to the blockchain.
Validators
Maps validator addresses to monikers (human-readable description) and other metadata.
Was this page helpful?