Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
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 ArbGasInfo.sol
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,8 @@ interface ArbGasInfo {

/// @notice Returns the cost amortization cap in basis points
function getAmortizedCostCapBips() external view returns (uint64);

/// @notice Returns the available funds from L1 fees
/// @notice Available in ArbOS version 10 and above
function getL1FeesAvailable() external view returns (uint256);
}
6 changes: 6 additions & 0 deletions ArbOwner.sol
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,12 @@ interface ArbOwner {
uint64 cap
) external;

/// @notice Releases surplus funds from L1PricerFundsPoolAddress for use
/// @notice Available in ArbOS version 10 and above
function releaseL1PricerSurplusFunds(
uint256 maxWeiToRelease
) external returns (uint256);

/// Emitted when a successful call is made to this precompile
event OwnerActs(bytes4 indexed method, address indexed owner, bytes data);
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@arbitrum/nitro-precompile-interfaces",
"version": "5.0.0",
"version": "10.0.0",
"description": "Solidity interfaces for Arbitrum Nitro precompiled contracts",
"author": "Offchain Labs, Inc.",
"license": "BUSL-1.1",
Expand Down