From f5601891b8998dc23c7ac88db701b62599fbd43f Mon Sep 17 00:00:00 2001 From: Kolby Moroz Liebl <31669092+KolbyML@users.noreply.github.com> Date: Fri, 28 Nov 2025 11:26:42 -0700 Subject: [PATCH] Add MaxStylusContractFragments --- ArbOwner.sol | 4 ++++ ArbOwnerPublic.sol | 2 ++ 2 files changed, 6 insertions(+) diff --git a/ArbOwner.sol b/ArbOwner.sol index cf20dba..e6b6793 100644 --- a/ArbOwner.sol +++ b/ArbOwner.sol @@ -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; } diff --git a/ArbOwnerPublic.sol b/ArbOwnerPublic.sol index fb5d11e..353f6bc 100644 --- a/ArbOwnerPublic.sol +++ b/ArbOwnerPublic.sol @@ -64,4 +64,6 @@ interface ArbOwnerPublic { function isCalldataPriceIncreaseEnabled() external view returns (bool); event ChainOwnerRectified(address rectifiedOwner); + + function getMaxStylusContractFragments() external view returns (uint64); }