Skip to content
Closed
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
10 changes: 10 additions & 0 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,16 @@ const solidity = {
evmVersion: 'cancun',
},
},
'src/mocks/ArbNativeTokenManagerTest.sol': {
version: '0.8.24',
settings: {
optimizer: {
enabled: true,
runs: 100,
},
evmVersion: 'cancun',
},
},
},
}

Expand Down
13 changes: 13 additions & 0 deletions src/mocks/ArbNativeTokenManagerTest.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// Copyright 2025, Offchain Labs, Inc.
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
// SPDX-License-Identifier: BUSL-1.1

pragma solidity ^0.8.24;

import "../precompiles/ArbNativeTokenManager.sol";

contract ArbNativeTokenManagerTest {
function mint(uint256 amount) external {
ArbNativeTokenManager(address(0x73)).mintNativeToken(amount);
}
}
Loading