Skip to content
Merged
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
4 changes: 2 additions & 2 deletions ArbOwner.sol
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,8 @@ interface ArbOwner {

/// @notice Set how much L1 charges per non-zero byte of calldata
/// @notice Available in ArbOS version 50 and above
function setL1CalldataPrice(
uint256 calldataPrice
function setParentGasFloorPerToken(
uint64 floorPerToken
) external;

/// @notice Sets the base charge (in L1 gas) attributed to each data batch in the calldata pricer
Expand Down
2 changes: 1 addition & 1 deletion ArbOwnerPublic.sol
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ interface ArbOwnerPublic {

/// @notice Get how much L1 charges per non-zero byte of calldata
/// @notice Available in ArbOS version 50 and above
function getL1CalldataPrice() external view returns (uint256);
function getParentGasFloorPerToken() external view returns (uint64);

/// @notice Get the next scheduled ArbOS version upgrade and its activation timestamp.
/// @notice Returns (0, 0) if no ArbOS upgrade is scheduled.
Expand Down
5 changes: 4 additions & 1 deletion ArbosActs.sol
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ interface ArbosActs {
uint256 batchTimestamp,
address batchPosterAddress,
uint64 batchNumber,
uint64 batchDataGas,
uint64 batchCalldataLength,
uint64 batchCalldataNonZeros,
uint64 batchLegacyGas,
uint64 batchExtraGas,
uint256 l1BaseFeeWei
) external;

Expand Down