Skip to content
Open
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: 2 additions & 0 deletions EIPS/eip-8311.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
requires: 3860, 7623, 7976
---

Test

Check failure on line 14 in EIPS/eip-8311.md

View workflow job for this annotation

GitHub Actions / EIP Walidator

Nothing is permitted between the preamble and the first heading

error[markdown-heading-first]: Nothing is permitted between the preamble and the first heading --> EIPS/eip-8311.md:14:1 | 14 | Test | ^^^^ | = help: see https://ethereum.github.io/eipw/markdown-heading-first/

## Abstract

This EIP proposes an adjustment to calldata pricing by raising the floor cost from 64/64 to 96/96 gas per calldata byte. This brings the worst-case byte density of a pure-calldata block down to the byte density of an ETH-transfer-full block, so that no priced calldata composition is denser, per gas, than this anchor.
Expand Down Expand Up @@ -66,7 +68,7 @@

The floor cost mechanism ensures that transactions involving significant EVM computation continue to pay the standard 4/16 gas per byte for calldata, preserving the user experience for regular Ethereum operations.

For an illustration of the absolute effect, a 10 MiB uncompressed execution payload would require ~1.01B gas under 96/96 pricing, compared to ~671M gas under [EIP-7976](./eip-7976.md)'s 64/64 pricing and ~105M gas under [EIP-7623](./eip-7623.md)'s 10/40 pricing.

Check failure on line 71 in EIPS/eip-8311.md

View workflow job for this annotation

GitHub Actions / EIP Walidator

the word `105M` is misspelled

error[markdown-spell]: the word `105M` is misspelled --> EIPS/eip-8311.md:71:206 | 71 | ...nder [EIP-7976](./eip-7976.md)'s 64/64 pricing and ~105M gas under [EIP-7623](./eip-7623.md)'s 10/40 pricing. | ^^^^ incorrectly spelled |

Check failure on line 71 in EIPS/eip-8311.md

View workflow job for this annotation

GitHub Actions / EIP Walidator

the word `MiB` is misspelled

error[markdown-spell]: the word `MiB` is misspelled --> EIPS/eip-8311.md:71:50 | 71 | For an illustration of the absolute effect, a 10 MiB uncompressed execution payload would require ~1.01B gas under 96/96 pricing, co... | ^^^ incorrectly spelled |

Check failure on line 71 in EIPS/eip-8311.md

View workflow job for this annotation

GitHub Actions / EIP Walidator

the word `671M` is misspelled

error[markdown-spell]: the word `671M` is misspelled --> EIPS/eip-8311.md:71:144 | 71 | ...equire ~1.01B gas under 96/96 pricing, compared to ~671M gas under [EIP-7976](./eip-7976.md)'s 64/64 pricing and ~105M gas under ... | ^^^^ incorrectly spelled | = help: see https://ethereum.github.io/eipw/markdown-spell/

## Backwards Compatibility

Expand Down
Loading