Skip to content

Commit

Permalink
Use utils instead of lib
Browse files Browse the repository at this point in the history
  • Loading branch information
cairoeth committed Jan 28, 2025
1 parent ac95f4b commit b173838
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/base/BaseAsyncSwap.sol
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {IPoolManager} from "v4-core/src/interfaces/IPoolManager.sol";
import {BeforeSwapDelta, BeforeSwapDeltaLibrary, toBeforeSwapDelta} from "v4-core/src/types/BeforeSwapDelta.sol";
import {Currency} from "v4-core/src/types/Currency.sol";
import {SafeCast} from "v4-core/src/libraries/SafeCast.sol";
import {CurrencySettler} from "src/lib/CurrencySettler.sol";
import {CurrencySettler} from "src/utils/CurrencySettler.sol";

/**
* @dev Base implementation for async swaps, which skip the v3-like swap implementation of the `PoolManager`
Expand Down
2 changes: 1 addition & 1 deletion src/base/BaseCustomAccounting.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
pragma solidity ^0.8.24;

import {BaseHook} from "src/base/BaseHook.sol";
import {CurrencySettler} from "src/lib/CurrencySettler.sol";
import {CurrencySettler} from "src/utils/CurrencySettler.sol";
import {Hooks} from "v4-core/src/libraries/Hooks.sol";
import {PoolKey} from "v4-core/src/types/PoolKey.sol";
import {IPoolManager} from "v4-core/src/interfaces/IPoolManager.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/base/BaseCustomCurve.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {PoolKey} from "v4-core/src/types/PoolKey.sol";
import {IPoolManager} from "v4-core/src/interfaces/IPoolManager.sol";
import {Currency} from "v4-core/src/types/Currency.sol";
import {SafeCast} from "v4-core/src/libraries/SafeCast.sol";
import {CurrencySettler} from "src/lib/CurrencySettler.sol";
import {CurrencySettler} from "src/utils/CurrencySettler.sol";
import {BeforeSwapDelta, toBeforeSwapDelta} from "v4-core/src/types/BeforeSwapDelta.sol";
import {BalanceDelta, toBalanceDelta} from "v4-core/src/types/BalanceDelta.sol";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
// OpenZeppelin Uniswap Hooks (last updated v0.1.0) (src/lib/CurrencySettler.sol)
// OpenZeppelin Uniswap Hooks (last updated v0.1.0) (src/utils/CurrencySettler.sol)

pragma solidity ^0.8.24;

Expand Down
File renamed without changes.

0 comments on commit b173838

Please sign in to comment.