We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa2d387 commit 5ad6018Copy full SHA for 5ad6018
2 files changed
contracts/foundry.toml
@@ -3,4 +3,9 @@ src = "src"
3
out = "out"
4
libs = ["lib"]
5
6
+remappings = [
7
+ "@uniswap/v3-periphery/=lib/v3-periphery/contracts/"
8
+]
9
+
10
11
# See more config options https://github.com/foundry-rs/foundry/blob/master/crates/config/README.md#all-options
contracts/src/LiqController.sol
@@ -4,7 +4,8 @@ pragma solidity 0.8.21;
import "./interfaces/IAlgebraMintCallback.sol";
import "./interfaces/IAlgebraPool.sol";
import "./interfaces/IERC20.sol";
-import "./libraries/TransferHelper.sol";
+import "@uniswap/v3-periphery/libraries/TransferHelper.sol";
/// @title LiquidityManager
/// @notice Manages liquidity provision and allows the owner to withdraw tokens and native currency
0 commit comments