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

/// Emitted when a successful call is made to this precompile
event OwnerActs(bytes4 indexed method, address indexed owner, bytes data);

function setMaxStylusContractFragments(
uint64 maxFragments
) external;
}
2 changes: 2 additions & 0 deletions ArbOwnerPublic.sol
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,6 @@ interface ArbOwnerPublic {
function isCalldataPriceIncreaseEnabled() external view returns (bool);

event ChainOwnerRectified(address rectifiedOwner);

function getMaxStylusContractFragments() external view returns (uint64);
}