File tree 1 file changed +18
-0
lines changed
1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,24 @@ interface ArbOwner {
33
33
/// @notice Retrieves the list of chain owners
34
34
function getAllChainOwners () external view returns (address [] memory );
35
35
36
+ /// @notice Add account as a native token owner
37
+ function addNativeTokenOwner (
38
+ address newOwner
39
+ ) external ;
40
+
41
+ /// @notice Remove account from the list of native token owners
42
+ function removeNativeTokenOwner (
43
+ address ownerToRemove
44
+ ) external ;
45
+
46
+ /// @notice See if the user is a native token owner
47
+ function isNativeTokenOwner (
48
+ address addr
49
+ ) external view returns (bool );
50
+
51
+ /// @notice Retrieves the list of native token owners
52
+ function getAllNativeTokenOwners () external view returns (address [] memory );
53
+
36
54
/// @notice Set how slowly ArbOS updates its estimate of the L1 basefee
37
55
function setL1BaseFeeEstimateInertia (
38
56
uint64 inertia
You can’t perform that action at this time.
0 commit comments