Eliminate dependence on most uniswap functions

This commit is contained in:
7400
2023-10-24 17:23:53 -07:00
parent 727be0aa0e
commit 61c23b843c
46 changed files with 2825 additions and 10 deletions

View File

@@ -0,0 +1,12 @@
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;
/// @title Immutable state
/// @notice Functions that return immutable state of the router
interface IPeripheryImmutableState {
/// @return Returns the address of the Uniswap V3 factory
function factory() external view returns (address);
/// @return Returns the address of WETH9
function WETH9() external view returns (address);
}