PREVRANDAO, the state root, the block gas limit, and the transaction fee mechanism), and standard Solidity and Vyper tooling will keep working: Foundry, Hardhat, viem, ethers. What will change is the environment around your contracts. Ordering and state attestation will be separate protocol signals, execution receipts will arrive between them, there will be no traditional public mempool, a priority fee will buy a position in the order rather than a proposer’s favor, and state proofs will work differently. Transaction ingress will initially route complete transactions to validator lanes; the later Sedna milestone will introduce coded symbol bundles. This page covers each change, plus the patterns that will get the most out of Giga’s parallel execution.
Sei Giga will roll out as phased upgrades to the live network; as of August 2026 there is no public Giga testnet yet. Sections describing components that have not activated are forward-looking and subject to change. Statements about Ares v6.6, retired native Oracle queries, and IBC reflect the live network as of August 2026. For building on Sei today, start with the EVM development guides.
What will stay the same
- Contract code: Solidity and Vyper will compile against standard EVM semantics. Opcodes and standard Ethereum precompiles will track Ethereum near parity; retired Sei-native precompiles are outside this compatibility statement.
- Tooling: standard JSON-RPC (
eth_call,eth_sendRawTransaction,eth_getTransactionReceipt,eth_feeHistory,eth_subscribefor new heads), so Foundry, Hardhat, viem, ethers.js, and wagmi will work unchanged. - Accounts and signing: the same
0xaddresses and the same ECDSA flow, with a post-quantum migration path specified for the long term. - The gas token: SEI will stay the native token for gas, staking, and fees.
- The network itself: Giga will upgrade the live Sei network in place, with no new chain to redeploy to.
What will change for your application
Finality on Giga: which signal to wait for
Giga will separate consensus from execution. Applications will observe three stages:- Ordering finality (measured under 250 ms on the internal devnet): consensus has fixed your transaction’s position under the protocol’s stated assumptions. Execution follows, so this stage does not provide a receipt or execution result.
- Execution receipt: a node has executed the ordered transaction and can report its result. This is the first stage at which your application can know whether the transaction succeeded or reverted, but it is not a quorum attestation.
- State attestation finality, a bounded number of blocks later: a two-thirds voting-power quorum has signed the block’s divergence digest. This confirms the executed results.
A transaction revert is an execution result and does not invalidate the rest of the block. For today’s finality behavior, before Giga, see EVM finality on Sei.
Sending transactions without a public mempool
On Autobahn before the later Sedna milestone, RPC nodes will route complete signed transactions into validator proposal lanes without a shared public pending pool. After Sedna activates, RPC ingress will instead distribute coded symbol bundles and executors will reconstruct the transaction after the finalized symbols cross the decode threshold. Autobahn’s pipelining is designed for an effective steady-state cadence of one committed cut per 1.5 network round trips; this is not a submission-to-finality guarantee. In practice:- There will be no public mempool to scan for victims, and the merged execution order will be a deterministic function of finalized lane contents, which is designed to reduce post-consensus proposer discretion. Sedna is intended to add pre-execution privacy; its guarantees depend on coding parameters and the number of colluding lanes.
- Pending semantics will change. Don’t build features on watching a gossiped pending-transaction stream. Pending-nonce queries will be answered by the validator responsible for your sender address; the RPC layer will route this for you.
- You will control your own censorship resistance. Submit the identical signed transaction to multiple validators if it matters; only one copy will execute, since duplicates will be dropped by hash at merge time, and extra copies will pay a distribution fee and get part of the tip back. A single submission will be the right default for most transactions.
- Each validator is designed to include at most one copy of a given transaction per epoch, so attempts to amplify a transaction within one validator’s lane will struggle to succeed. Cross-validator duplicates remain possible for censorship resistance and will pay the distribution fee.
Fees on Giga
Giga will price three things separately (full details in the fee model spec):- The execution fee: an EIP-1559-style dynamic base fee for gas actually consumed.
eth_feeHistoryandeth_maxPriorityFeePerGaswill remain your estimation tools. - The ordering fee, better known as the priority fee. Giga will enforce it strictly: lanes in each committed cut will be ordered by their highest included tip, so a higher tip will buy earlier execution, deterministically. The fee will also be socialised (pooled per epoch and distributed to validators by stake and liveness), a design intended to reduce protocol-level incentives to tip a specific proposer. Out-of-protocol side payments remain outside the current specification.
- The distribution fee, charged per duplicate copy when you multi-submit for censorship resistance.
SSTORE pricing (see gas and fees). The whitepaper defers the final Giga fee mechanism to a dedicated paper, so expect parameter-level details to firm up around the Autobahn testnet.
Writing parallel-friendly contracts
Giga will execute each block with Block-STM-style optimistic concurrency: transactions will run in parallel and re-execute only when their read/write sets collide. Sei Labs measured that 64.85% of historical Ethereum transactions could have been parallelized under this model. Your contract’s storage layout will decide which side of that statistic it lands on. Transactions touching disjoint storage will run simultaneously; transactions contending on one hot slot will serialize (the engine will retry conflicted transactions and, under sustained contention, fall back to sequential execution — a fallback designed to protect correctness at the cost of speed).Pattern 1: isolate state per user
totalSupply updates on every operation, shared round-robin pointers, and single-slot reward accumulators are the classic hot spots. If you need an aggregate, update it lazily, shard it (per-address buckets aggregated on read), or derive it off-chain from events.
Pattern 2: prefer mappings over shared arrays
mapping(address => T) lookups touch one isolated slot per user. Pushing to a shared array touches the array-length slot on every insert, which makes the length slot a hidden global counter.
Pattern 3: emit events instead of storing history
Pattern 4: pack storage you must share
When state is genuinely shared, make it cheap: pack related fields into one slot so a conflicting transaction pays one slot conflict instead of three.Sei precompiles under the Giga executor
Sei v6.6 activated the first Ares execution phase on Pacific-1. Eligible transactions use the Ares path; when that path encounters an unsupported case, the individual transaction reruns through the v2 fallback. Eligibility is release-specific, so do not assume every EVM transaction or precompile call uses the same fast path. Follow the node configuration reference for the release you operate. The retired native Oracle precompile at0x0000000000000000000000000000000000001008 is not a supported fallback. Its data-query methods revert. Use one of the third-party providers documented for Sei instead.
Prepare your app for Giga today
- Build EVM-only. SIP-3 consolidates Sei to a streamlined EVM-only stack ahead of Giga: CosmWasm no longer accepts new deployments. IBC is disabled in both directions: Proposals 116 and 120 disabled inbound transfers, and 121 disabled outbound transfers on July 31, 2026. Existing IBC balances can still move within Sei but can no longer be redeemed over IBC on their origin chain. For external data, use the providers documented for Sei: API3, Chainlink, Pyth, and RedStone.
- Audit for hot slots. Per-user state isolation is the single most effective change for parallel throughput. The first Ares phase went live with the mandatory Pacific-1 v6.6 upgrade on August 4, 2026; broader Ares work continues in later releases.
- Classify your confirmation flows. Decide which flows only need the fixed order, which act on an execution receipt, and which wait for state attestation, so the three-stage model will land as a config change rather than a redesign.
- Remove fragile dependencies. Anything that relies on
eth_getProofand state roots (current behavior),PREVRANDAOrandomness, blob transactions, or watching the public mempool will need a plan. - Don’t wait for a “Giga chain.” There won’t be one; Giga will arrive on the network where you’re already deployed. Standard EVM contracts that do not depend on retired Sei-native surfaces are designed to carry over without redeployment.
Related
- Sei Giga overview: architecture and roadmap
- Sei Giga technical specification: the full protocol spec and glossary
- EVM development guides: building on Sei today
- Differences with Ethereum: current-network EVM deltas
- SIP-3 migration guide: the EVM-only consolidation