forked from Uniswap/v4-periphery
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1d22ddd
commit 7418297
Showing
14 changed files
with
21 additions
and
111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
cache/ | ||
foundry-out/ |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/ | ||
@uniswap/core-next/=lib/core-next/ | ||
forge-std/=lib/forge-std/src/ |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// SPDX-License-Identifier: UNLICENSED | ||
pragma solidity ^0.8.19; | ||
|
||
import {Test} from "forge-std/Test.sol"; | ||
|
||
contract TestLimitOrderHook is Test { | ||
function setUp() public { | ||
MockHooks impl = new MockHooks(); | ||
vm.etch(ALL_HOOKS_ADDRESS, address(impl).code); | ||
mockHooks = MockHooks(ALL_HOOKS_ADDRESS); | ||
(manager, key,) = Deployers.createFreshPool(mockHooks, 3000, SQRT_RATIO_1_1); | ||
modifyPositionRouter = new PoolModifyPositionTest(IPoolManager(address(manager))); | ||
swapRouter = new PoolSwapTest(IPoolManager(address(manager))); | ||
donateRouter = new PoolDonateTest(IPoolManager(address(manager))); | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.