Skip to content

Commit

Permalink
Update briefcase
Browse files Browse the repository at this point in the history
Changes:
M	src/deployers/universal-router/UniversalRouterDeployer.sol
M	src/protocols/v3-periphery/libraries/HexStrings.sol
  • Loading branch information
github-actions[bot] committed Feb 9, 2025
1 parent 32f795b commit cc6f754
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/deployers/universal-router/UniversalRouterDeployer.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// SPDX-License-Identifier: MIT
pragma solidity >= 0.8.0;

import {IUniversalRouter} from '../../protocols/universal-router/interfaces/IUniversalRouter.sol';
import {RouterParameters} from '../../protocols/universal-router/types/RouterParameters.sol';

library UniversalRouterDeployer {
Expand All @@ -14,7 +15,7 @@ library UniversalRouterDeployer {
address v4PoolManager,
address v3NFTPositionManager,
address v4PositionManager
) internal returns (address router) {
) internal returns (IUniversalRouter router) {
RouterParameters memory params = RouterParameters({
permit2: permit2,
weth9: weth9,
Expand Down
2 changes: 0 additions & 2 deletions src/protocols/v3-periphery/libraries/HexStrings.sol
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
// SPDX-License-Identifier: MIT
pragma solidity =0.7.6;

import {Strings} from '../../lib-external/oz-v3.4-solc-0.7/contracts/utils/Strings.sol';

library HexStrings {
bytes16 internal constant ALPHABET = '0123456789abcdef';

Expand Down

0 comments on commit cc6f754

Please sign in to comment.