Sei (SEI)

Sei (SEI) is a layer-1 cryptocurrency, running on the Sei Network network. It is available on 13 exchanges we track across 70 countries and US states. It ranks #127 by market capitalization at $318.5M as of September 5, 2026. Data last synced September 2, 2026. Buyability grade B in the United States.

Verified How we verify

Live price

Fetched from CoinGecko when this page loaded. The Key Metrics table below is a dated snapshot from our last sync, so the two figures will differ.

Decide

Four measurements that decide whether buying Sei is straightforward where you live: who is verified to sell it to you, how wide the spread is, how much of its trading sits on one venue, and how much new supply is about to arrive.

Full report: buyability grades

Where Sei trades

Concentrated

51.5% of SEI volume runs through Binance.

Volume as reported to CoinGecko, September 4, 2026. Covers the exchanges RampAtlas tracks that CoinGecko lists, not the whole market.
Largest venueBinance
Its share of reported volume51.5%
Top 3 venues75.5%
Herfindahl index3,071
Exchanges listing it17(12 with volume)

Full report: exchange concentration

Key Metrics

Snapshot as of September 5, 2026. Source: CoinGecko. Not investment advice.
Price$0.0473
7-day change+2.6%
30-day change+14.2%
Market cap$318.5M (rank #127)
Fully diluted valuation$473.0M
24-hour volume$32.1M
Circulating supply6.7B SEI
Maximum supplyNo fixed cap
All-time high$1.14 on March 15, 2024, −95.9% since

More on Sei:Unlock scheduleStaking availability

Key Facts

TickerSEI
Categorylayer-1
ChainsSei Network
Market cap rank#127
Official sitesei.io
CoinGeckocoingecko.com/en/coins/sei-network

About Sei

What Sei is

Sei is an Ethereum-compatible layer 1 built around parallel transaction execution. Its documentation describes it as "the first parallelized EVM blockchain delivering unmatched scalability and speed," running 400 millisecond blocks with roughly 100 megagas per second of throughput and full Ethereum tooling compatibility (source: Sei documentation, read September 2026). SEI is the network's gas, staking and governance asset.

The pitch is compatibility without the usual tradeoff. Standard Solidity contracts deploy without modification, but transactions that touch independent state run concurrently rather than one after another. Mainnet is chain ID 1329, testnet is 1328, and gas is paid in SEI with 18 decimals.

How it works

Three subsystems produce the performance the documentation claims. Twin Turbo Consensus delivers sub-second blocks and fast finality. The Parallelization Engine provides multi-core execution and transaction classification. SeiDB provides optimized state access and concurrent operations.

Classification is the part that makes parallel execution safe. Transactions writing to shared state must still be serialized; transactions touching disjoint state can run at once. The documentation puts the practical consequence plainly: transactions touching independent state are parallelized automatically, while shared-state writes are serialized.

Sei's EVM tracks the Pectra feature set, with one deliberate omission: blob transaction support is not included.

Two operational facts are worth knowing before you move assets. Inter-Blockchain Communication is disabled in both directions. Under SIP-03, governance proposals 116 and 120 set the IBC module's inbound parameter to false, and proposal 121 set the outbound parameter to false on 31 July 2026. No asset can be bridged into or out of Sei over IBC. Separately, the tokenfactory module is unsupported for new work, and the documentation directs developers to use erc 20 for new fungible tokens.

Staking follows the Cosmos pattern with one significant exception. Delegated stake has "a 21-day un-bonding period during which the tokens are not earning rewards and cannot be transferred." Redelegating bars the new validator "from further re-delegations for 21 days," and a delegator may "re-delegate a maximum of 7 times simultaneously." The exception is that, in the documentation's words, "there is no slashing of funds in Sei."

Supply and tokenomics

Sei's documentation covers the protocol in detail and does not publish token supply figures. What it does specify precisely is the network's performance envelope and the fee design of its next architecture.

Sei network parameters and Giga specifications as published in Sei's documentation.
ItemValueSource/date
Block time400 millisecondsSei documentation, September 2026
Throughput todayApproximately 100 MGas/sSei documentation, September 2026
Mainnet chain ID1329, pacific-1Sei documentation, September 2026
Unbonding period21 daysSei documentation, September 2026
SlashingNoneSei documentation, September 2026
IBC statusDisabled inbound and outbound; outbound disabled 31 July 2026Sei documentation, September 2026
Giga ordering finalitySub-250 milliseconds, measured on a 40-node internal devnet across 20 regionsSei Giga specification, September 2026
Giga throughputMore than 5 gigagas per second on internal devnetSei Giga specification, September 2026
Giga block production180 blocks per second, versus 2.5 in sequential designsSei Giga specification, September 2026
Public testnet target200,000 transactions per secondSei documentation, September 2026
Giga validator committeeCapped at 100, stake-weighted availability thresholdsSei Giga specification v6.6, August 2026
SEI total supplyNot published in the documentationNot verified from a primary source

400 ms

Block time

on Sei today

<250 ms

Giga ordering finality

measured on internal devnet

21 days

Unbonding

with no slashing of funds

RampAtlas could not source SEI's total supply, allocation or inflation schedule from Sei's own documentation, which covers architecture and operations rather than token distribution. Those figures are recorded here as unpublished rather than restated from secondary sources.

History

The current network is the second act. The first delivered the parallelized EVM with 400 millisecond blocks. Sei Giga, described in the documentation as "the first Multi-Proposer EVM Layer 1," is a rebuild of consensus, execution and storage together.

Giga's consensus protocol is called Autobahn, and it separates data dissemination from ordering. Each validator maintains a lane, defined as an append-only, hash-chained sequence of transaction batches, and proposes data in parallel. Data is certified when validators collect f + 1 matching votes in a replica model of n = 3f + 1, producing a Proof of Availability. A "cut," a vector of all lanes' certified tips, is committed once and finalizes transactions across every lane at once. The documentation reports one committed cut per 1.5 network round trips under pipelining, against three rounds in Tendermint.

Execution moves off the critical path. Giga separates ordering finality, where consensus fixes the sequence, from state attestation finality, where a later block carries "two-thirds voting-power signatures over per-block lattice-hash divergence digests." Execution itself uses Block-STM optimistic concurrency, re-executing only transactions whose reads collided with an earlier write and falling back to sequential execution after ten retries.

Storage drops the Merkle state root entirely. Giga uses LtHash, a homomorphic lattice hash that updates incrementally in any order, with per-block Block Update Digests and aggregated SuperBUDs for long-range proofs. The tradeoff is stated openly: Giga will not support EIP-4844 blob transactions, PREVRANDAO, Merkle state roots or fixed block gas limits.

Fees under Giga are three-part: an execution fee using an eip 1559-style dynamic base fee, an ordering fee acting as a priority fee under a deterministic merge rule, and a distribution fee that prices duplicate submissions for censorship resistance.

As of specification version 6.6 in August 2026, Autobahn is implemented but disabled until network activation, and the Ares execution client has become the default path.

Risks and what to watch

Architectural transition risk is the largest technical exposure. Giga replaces consensus, execution and state commitment at once, and its headline numbers come from an internal devnet rather than from production. New consensus code carries new failure modes.

The absence of slashing is a design choice with two faces. It removes a real risk for delegators, and it removes a penalty that other proof-of-stake networks rely on to deter validator misbehavior. Watch how validator accountability is enforced without it.

Token opacity is a genuine problem for a holder. Without a published supply schedule in the project's own documentation, future issuance cannot be verified from a primary source.

Bridge risk is concentrated by the IBC decision. With the Cosmos-native path closed, assets reach Sei through other bridges, and each of those carries its own trust assumptions.

Compatibility gaps are worth checking before deploying. No blob transactions today, and no PREVRANDAO or Merkle state roots under Giga, means some Ethereum patterns will not port unchanged.

Frequently asked questions

What makes Sei different from other EVM chains?

Parallel execution. Transactions touching independent state run concurrently across cores, while shared-state writes are serialized, with 400 millisecond blocks and roughly 100 megagas per second of throughput.

Does Sei slash staked tokens?

No. The documentation states there is no slashing of funds in Sei. Unbonding still takes 21 days, during which tokens earn no rewards and cannot be transferred.

Can you bridge assets to Sei over IBC?

No. Governance disabled inbound IBC under proposals 116 and 120, and disabled outbound IBC under proposal 121 on 31 July 2026.

What is Sei Giga?

The next architecture, described as the first multi-proposer EVM layer 1. It uses Autobahn consensus with per-validator lanes, asynchronous execution, Block-STM parallelism and lattice-hash storage in place of a Merkle state root.

Where can you buy Sei?

SEI is listed across many centralized venues. See where to buy Sei for availability in your jurisdiction and Exchanges to compare fees and staking support.

Where to Buy Sei

We publish a ranked exchange comparison for Sei in 70 countries and US states.

See where to buy Sei by location

Guides

  • Self-Custody vs Exchange Custody: How to Decide

    Deciding between self-custody and exchange custody means choosing which failure you would rather be exposed to, a company that loses or freezes your assets or a mistake of your own that nobody can undo, and most people resolve it by splitting holdings rather than picking one for everything.

  • How to Verify a Token Contract Address Before You Buy

    A token's contract address is its only real identity, so verifying one means getting the address from the project's own official channel, confirming the same address independently from a second source, and checking on a block explorer that the contract is what it claims to be before you trade against it.

  • Choosing Your First Crypto Wallet

    Choosing a first wallet comes down to one question, whether a company holds your keys or you do, and the right answer depends on how much you hold, how often you move it, and how confident you are about storing a recovery phrase safely for years.

Availability questions

What is Sei?
Sei is a high-performance Layer 1 blockchain that scales the EVM with parallelized execution, enabling faster transactions, low fees, and seamless smart contract deployment.
Where can I buy Sei?
13 exchanges we track list Sei for residents of 70 countries and US states. See the location-by-location guide.
Which blockchain is Sei on?
Sei runs on the Sei Network network.

Related coins