Skip to content

Commit 5ad6018

Browse files
committed
remappings added
1 parent aa2d387 commit 5ad6018

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

contracts/foundry.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,9 @@ src = "src"
33
out = "out"
44
libs = ["lib"]
55

6+
remappings = [
7+
"@uniswap/v3-periphery/=lib/v3-periphery/contracts/"
8+
]
9+
10+
611
# See more config options https://github.com/foundry-rs/foundry/blob/master/crates/config/README.md#all-options

contracts/src/LiqController.sol

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ pragma solidity 0.8.21;
44
import "./interfaces/IAlgebraMintCallback.sol";
55
import "./interfaces/IAlgebraPool.sol";
66
import "./interfaces/IERC20.sol";
7-
import "./libraries/TransferHelper.sol";
7+
import "@uniswap/v3-periphery/libraries/TransferHelper.sol";
8+
89

910
/// @title LiquidityManager
1011
/// @notice Manages liquidity provision and allows the owner to withdraw tokens and native currency

0 commit comments

Comments
 (0)