AlertSourceDiscuss
Skip to content

EIP-7516: BLOBBASEFEE opcode

Opcode that returns the current data-blob base-fee

⚠️ DraftCore

Draft Notice

This EIP is in the process of being drafted. The content of this EIP is not final and can change at any time; this EIP is not yet suitable for use in production. Thank you!

AuthorsCarl Beekhuizen (@carlbeek)
Created2023-09-11

Abstract

Add a BLOBBASEFEE (0x4a) that returns the value of the blob base-fee of the current block it is executing in. It is the identical to EIP-3198 (BASEFEE opcode) except that it returns the blob base-fee as per EIP-4844.

Motivation

The intended use case would be for contracts to get the value of the blob base-fee. This feature enables blob-data users to programmatically account for the blob gas price, eg:

  • Allow rollup contracts to trustlessly account for blob data usage costs.
  • Blob gas futures can be implemented based on it which allows for blob users to smooth out data blob costs.

Specification

Add a BLOBBASEFEE opcode at (0x4a), with gas cost 2.

OpInputOutputCost
0x4a012

BLOBBASEFEE returns the result of the get_blob_gasprice(header) -> int function as defined in EIP-4844 §Gas accounting.

Rationale

Gas cost

The value of the blob base-fee is needed to process data-blob transactions. That means its value is already available before running the EVM code. The opcode does not add extra complexity and additional read/write operations, hence the choice of 2 gas cost. This is also identical to EIP-3198 (BASEFEE opcode)'s cost as it just makes available data that is in the header.

Backwards Compatibility

There are no known backward compatibility issues with this opcode.

Test Cases

Nominal case

Assuming calling get_blob_gasprice(header) (as defined in EIP-4844 §Gas accounting) on the current block's header returns 7 wei: BLOBBASEFEE should push the value 7 (left padded byte32) to the stack.

Bytecode: 0x4900 (BLOBBASEFEE, STOP)

PcOpCostStackRStack
0BLOBBASEFEE2[][]
1STOP0[7][]

Output: 0x Consumed gas: 2

Security Considerations

The value of the blob base-fee is not sensitive and is publicly accessible in the block header. There are no known security implications with this opcode.

Copyright and related rights waived via CC0.

Citation

Please cite this document as:

Carl Beekhuizen, "EIP-7516: BLOBBASEFEE opcode[DRAFT]," Ethereum Improvement Proposals, no. 7516, 2023. [Online serial]. Available: https://eips.ethereum.org/EIPS/eip-7516.