Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion skill/references/evm/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ description: How Sei's EVM differs from Ethereum — opcodes, gas model, finalit
| `BLOCKHASH` | Hash of Tendermint header | Keccak of Ethereum block header | Different encoding; usable for recent blocks |
| `GASLIMIT` | 12,500,000 | 60,000,000 | Block gas limit |
| `TIMESTAMP` | Tendermint block time | Proposer-chosen block time | Do not use as randomness source |
| Blob opcodes | Not supported | Supported (post-Cancun) | No EIP-4844 blob transactions on Sei |
| Blob opcodes | Not supported | Supported (post-Cancun) | No EIP-4844 blob transactions on Sei. `eth_blobBaseFee` is exposed but returns JSON-RPC error -32000 ("blobs not supported on this chain"), not -32601 method-not-found |

## Key Developer Rules

Expand Down
12 changes: 12 additions & 0 deletions skill/references/migration/from-ethereum.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,18 @@ address proposer = block.coinbase;

Sei runs Pectra EVM but without blob transactions (`BLOBHASH` / `BLOBBASEFEE`). If your contract uses blobs, you need to refactor.

The `eth_blobBaseFee` JSON-RPC endpoint **is** exposed, but it deliberately returns a JSON-RPC error instead of a fee value — do not expect a usable blob base fee:

```json
// Request
{"jsonrpc":"2.0","id":1,"method":"eth_blobBaseFee"}

// Response
{"jsonrpc":"2.0","id":1,"error":{"code":-32000,"message":"blobs not supported on this chain"}}
```

Migrating apps that call `eth_blobBaseFee` must handle the `-32000` "blobs not supported on this chain" error rather than parsing a returned fee.

### 6. SSTORE Costs Are Higher Than Ethereum

Storage writes are far costlier than Ethereum's 20,000 gas:
Expand Down