Commit c09bdf7
authored
docs: v6.6.0 catch-up — verified subset (#59)
* docs(evm-parity): v6.6.0 RPC and transaction behaviour
Five additions from the v6.6.0 catch-up, each verified against sei-chain at
tag v6.6.0 rather than against the PR description that proposed it.
- state-proofs: eth_getProof now rejects non-hex storage keys and caps a
request at 1024 keys. Verified in #3556: `const MaxStorageKeysPerProof = 1024`
and the errors "too many storage keys: got %d, max %d" and
"invalid storage key %q" verbatim.
- transaction-types: EIP-7702 SetCode requires a non-empty auth list. The
error string "auth list cannot be empty" is in
x/evm/types/ethtx/semantic_validation.go.
- evm-compatibility: eth_getProof resolves across store backends, not only
classic IAVL.
- gas-and-fees: receipts report the actual effectiveGasPrice for type-2
transactions, min(baseFee + tip, maxFee), matching EIP-1559 semantics.
- websocket: newHeads under Autobahn returns zero hashes for parentHash,
receiptsRoot and transactionsRoot, sources stateRoot from AppHash, and
approximates gasUsed — so head-chaining subscribers need another mechanism.
* docs(evm): JSON precompile value limit, realistic gas price example
- precompiles/json: extractAsUint256 rejects value strings over 100
characters. Verified at precompiles/json/json.go:175 — `if len(strValue) > 100`.
- transactions: replace the placeholder effectiveGasPrice "0x1234" with a
realistic value. Cosmetic, no behavioural claim.
* docs(node): PebbleDB descending-version MVCC, seictl wording
- rocksdb-backend: fresh PebbleDB state stores use a descending-version MVCC
encoding so latest-version reads land on the newest version directly.
Verified at sei-db/db_engine/pebbledb/mvcc/db.go:44 —
`descendingMVCCMarkerKey = "s/_mvcc_descending"` — with detectMVCCMode() and
db_ascending.go providing the legacy read path for stores written by earlier
builds. RocksDB remains recommended for iteration-heavy archive workloads.
- seictl: drop the stale "proxy app" mention from the settings list.
* docs(learn): correct the Unsafe*TimeoutOverride description
The page stated that the Unsafe*TimeoutOverride settings enforce shorter
consensus timeouts. They are gated by `unsafe-overrides-enabled` under
[consensus], which defaults to false — so by default they are ignored and the
on-chain timeout consensus params apply instead.
Verified: the flag exists in sei-tendermint/config/config.go at v6.6.0.1 parent c87e2cd commit c09bdf7
10 files changed
Lines changed: 55 additions & 4 deletions
File tree
- evm
- evm-parity
- precompiles
- learn
- node
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
37 | 37 | | |
38 | 38 | | |
39 | 39 | | |
40 | | - | |
| 40 | + | |
41 | 41 | | |
42 | 42 | | |
43 | 43 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
53 | 53 | | |
54 | 54 | | |
55 | 55 | | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
56 | 64 | | |
57 | 65 | | |
58 | 66 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
25 | 25 | | |
26 | 26 | | |
27 | 27 | | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
28 | 35 | | |
29 | 36 | | |
30 | 37 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
19 | 26 | | |
20 | 27 | | |
21 | 28 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
114 | 114 | | |
115 | 115 | | |
116 | 116 | | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
| 133 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
131 | 131 | | |
132 | 132 | | |
133 | 133 | | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
134 | 138 | | |
135 | 139 | | |
136 | 140 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
258 | 258 | | |
259 | 259 | | |
260 | 260 | | |
261 | | - | |
| 261 | + | |
262 | 262 | | |
263 | 263 | | |
264 | 264 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
17 | | - | |
| 17 | + | |
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
29 | 37 | | |
30 | 38 | | |
31 | 39 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
264 | 264 | | |
265 | 265 | | |
266 | 266 | | |
267 | | - | |
| 267 | + | |
268 | 268 | | |
269 | 269 | | |
270 | 270 | | |
| |||
0 commit comments