This repository was archived by the owner on Jan 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
specs: Add deposit gas metering spec #401
Closed
Closed
Changes from all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
f5b8267
specs: Add deposit gas metering spec
trianglesphere 227b03f
specs: Add missing store to pseudocode
trianglesphere 354feb5
Update deposit_gas_metering.md
trianglesphere cc7d73e
Update deposit_gas_metering.md
trianglesphere 73adda1
specs: Update
trianglesphere d7b6125
specs: Toc + lint fix
trianglesphere 717c10d
specs: More updates
trianglesphere 9585c9d
Merge branch 'main' into jg/deposit_fee_specs
trianglesphere 30661ad
specs: Add link
trianglesphere ad424d2
specs: More updates
trianglesphere 9f555ad
specs: TODO for gas stipend
trianglesphere 2555238
explain why version
trianglesphere a48d9c2
explain PGAs
trianglesphere 60fed7c
typo
trianglesphere 877d713
python pseudocode
trianglesphere 9b6e20c
versioned deposit
trianglesphere 8f7d6b2
clarify deposit gas usage on L2
trianglesphere 70aa33b
specs: Updates
trianglesphere c946bd5
Update
trianglesphere a3184af
lint
trianglesphere 160b836
Clarify L1 -> L2 gas conversion
trianglesphere c9eae53
fix exponentiation spec
trianglesphere e42256e
split multi gas update formula
trianglesphere 295f92c
specs: More changes
trianglesphere 6b9e57b
update values
trianglesphere ca8a1ed
harmonize with implementation
trianglesphere 2c57a17
Merge branch 'main' into jg/deposit_fee_specs
trianglesphere 485b896
Update specs/deposits.md
trianglesphere 4346761
Update deposits.md
trianglesphere 1a1f35d
Update deposits.md
trianglesphere 7d15c9b
clarify intrinsic gas failure
trianglesphere 626cbe4
Update guaranteed-gas-market.md
trianglesphere File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,137 @@ | ||
| # Guaranteed Gas Fee Market | ||
|
|
||
| <!-- START doctoc generated TOC please keep comment here to allow auto update --> | ||
| <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE --> | ||
| **Table of Contents** | ||
|
|
||
| - [Gas Stipend](#gas-stipend) | ||
| - [Limiting Guaranteed Gas](#limiting-guaranteed-gas) | ||
| - [1559 Fee Market](#1559-fee-market) | ||
| - [Exponent Based Fee Reduction](#exponent-based-fee-reduction) | ||
| - [Rationale for burning L1 Gas](#rationale-for-burning-l1-gas) | ||
|
|
||
| <!-- END doctoc generated TOC please keep comment here to allow auto update --> | ||
|
|
||
| [Deposited transaction](./glossary.md#deposited-transaction) are transactions on L2 that are | ||
| initiated on L1. The gas that they use on L2 is bought on L1 via a gas burn or a direct payment. We | ||
| maintain a fee market and hard cap on the amount of gas provided to all deposits in a single L1 | ||
| block. | ||
|
|
||
| The gas provided to deposited transactions is sometimes called "guaranteed gas". The gas provided to | ||
| deposited transactions is unique in the regard that it is not refundable. It cannot be refunded as | ||
| it is sometimes paid for with a gas burn and there may not be any ETH left to refund. | ||
|
|
||
| The **guaranteed gas** is composed of a gas stipend, and of any guaranteed gas the user would like | ||
| to purchase (on L1) on top of that. | ||
|
|
||
| Guaranteed gas on L2 is bought in the following manner. An L2 gas price is calculated via a 1559 | ||
| style gas market. The total amount of ETH required to buy that gas is then calculated | ||
| (`guaranteed gas * L2 deposit basefee`). The contract then accepts that amount of ETH (in a future | ||
| upgrade) or (only method right now), burns an amount of L1 gas that corresponds to the L2 cost | ||
| (`L2 cost / L1 Basefee`). | ||
|
|
||
| ## Gas Stipend | ||
|
|
||
| To offset the gas spent on the deposit event, we credit the amount of gas spent on the metering step | ||
| times the current basefee to the cost of the L2 gas. The amount of gas is selected to represent the | ||
| cost to the user. If the ETH price of the gas (gas times current L1 baseefee) is greater than the | ||
| requested guaranteed gas times the L2 gas price, no L1 gas is burnt. | ||
|
|
||
| ## Limiting Guaranteed Gas | ||
|
|
||
| The total amount of guaranteed gas that can be bought in a single L1 block must be limited to | ||
| prevent a denial of service attack against L2 as well as allow the total amount of guaranteed gas | ||
| to be below the L2 block gas limit. | ||
|
|
||
| We set a guaranteed gas limit of 2,500,000 gas per L1 block. This corresponds to the L2 gas target | ||
trianglesphere marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| that we expect. | ||
|
|
||
| ## 1559 Fee Market | ||
|
|
||
| To reduce [Priority Gas Auctions](./glossary.md#priority-gas-auction) and accurately price gas, we | ||
| implement a 1559 style fee market on L1 with the following pseudocode. We also use this opporunity | ||
| to place a hard limit on the amount of guaranteed gas that is provided. | ||
|
|
||
| ```python | ||
| # Pseudocode to update the L2 Deposit Basefee and cap the amount of guaranteed gas | ||
| # bought in a block. Calling code must handle the gas burn and validity checks on | ||
| # the ability of the account to afford this gas. | ||
| BASE_FEE_MAX_CHANGE_DENOMINATOR = 8 | ||
| ELASTICITY_MULTIPLIER = 4 | ||
| MAX_RESOURCE_LIMIT = 8,000,000 | ||
| TARGET_RESOURCE_LIMIT = MAX_RESOURCE_LIMIT / ELASTICITY_MULTIPLIER | ||
| MINIMUM_BASEFEE=10000 | ||
|
|
||
| # prev_basefee is a u128, prev_bought_gas and prev_num are u64s | ||
| prev_basefee, prev_bought_gas, prev_num = load_and_unpack_storage() | ||
| now_num = block.number | ||
|
|
||
| # Clamp the full basefee to a specific range. The minimum value in the range should be around 100-1000 | ||
| # to enable faster responses in the basefee. This replaces the `max` mechanism in the ethereum 1559 | ||
| # implementation (it also serves to enable the basefee to increase if it is very small). | ||
| def clamp(v: i256, min: u128, max: u128) -> u128: | ||
| if v < i256(min): | ||
| return min | ||
| elif v > i256(max): | ||
| return max | ||
| else: | ||
| return u128(v) | ||
|
|
||
| # If this is a new block, update the basefee and reset the total gas | ||
| # If not, just update the total gas | ||
| if prev_num == now_num: | ||
| now_basefee = prev_basefee | ||
| now_bought_gas = prev_bought_gas + requested_gas | ||
| elif prev_num != now_num : | ||
| # New formula | ||
| # Width extension and conversion to signed integer math | ||
| gas_used_delta = int128(prev_bought_gas) - int128(TARGET_RESOURCE_LIMIT) | ||
| # Use truncating (round to 0) division - solidity's default. | ||
| # Sign extend gas_used_delta & prev_basefee to 256 bits to avoid overflows here. | ||
| base_fee_per_gas_delta = prev_basefee * gas_used_delta / TARGET_RESOURCE_LIMIT / BASE_FEE_MAX_CHANGE_DENOMINATOR | ||
| now_basefee_wide = prev_basefee + base_fee_per_gas_delta | ||
|
|
||
| now_basefee = clamp(now_basefee_wide, min=MINIMUM_BASEFEE, max=UINT_64_MAX_VALUE) | ||
| now_bought_gas = requested_gas | ||
|
|
||
| # If we skipped multiple blocks between the previous block and now update the basefee again. | ||
| # This is not exactly the same as iterating the above function, but quite close for reasonable | ||
| # gas target values. It is also constant time wrt the number of missed blocks which is important | ||
| # for keeping gas usage stable. | ||
| # TODO: Update this to a fixed point exponentiation for constant time results. This loop is currently | ||
| # bounded to take no more than 12 iterations to exit. | ||
| if prev_num + 1 < now_num: | ||
| n = now_num - prev_num - 1 | ||
| # Apply 7/8 reduction to prev_basefee for the n empty blocks in a row. | ||
| now_basefee_wide = prev_basefee * pow(1-(1/BASE_FEE_MAX_CHANGE_DENOMINATOR), n) | ||
| now_basefee = clamp(now_basefee_wide, min=MINIMUM_BASEFEE, max=UINT_64_MAX_VALUE) | ||
|
|
||
| require(now_bought_gas < MAX_RESOURCE_LIMIT) | ||
|
|
||
|
|
||
| pack_and_store(now_basefee, now_bought_gas, now_num) | ||
| ``` | ||
|
|
||
| ### Exponent Based Fee Reduction | ||
|
|
||
| When there are stretches where no deposits are executed on L1, the basefee should be decaying, but | ||
| is not. If there is the case that the basefee spiked, this mechanism is needed to enable a more | ||
| accurate decay. It uses exponentiation to run in constant (relative to the number of missed blocks) | ||
| gas. | ||
|
|
||
| The current loop based approach will always converge in no more than 12 steps, however it is possible | ||
| to go to a loopless form (with slightly more error), but adpoting a fixed point exponentiation | ||
| algorithm. | ||
|
|
||
| ## Rationale for burning L1 Gas | ||
|
|
||
| If we collect ETH directly we need to add the payable selector. Some projects are not able to do | ||
| this. The alternative is to burn L1 gas. Unfortunately this is quite wastefull. As such, we provide | ||
| two options to buy L2 gas: | ||
|
|
||
| 1. Burn L1 Gas 2. Send ETH to the Optimism Portal | ||
|
|
||
| The payable version (Option 2) will likely have discout applied to it (or conversly, #1 has a | ||
| premium applied to it). | ||
|
|
||
| For the initial release of bedrock, only #1 is supported. | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is 'gas pool' a commonly used term? I think 'block gas limit' is more intuitive.