forked from mico/idle_moloch
13 lines
448 B
Solidity
13 lines
448 B
Solidity
// 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 IImmutableState {
|
|
/// @return Returns the address of the Uniswap V2 factory
|
|
function factoryV2() external view returns (address);
|
|
|
|
/// @return Returns the address of Uniswap V3 NFT position manager
|
|
function positionManager() external view returns (address);
|
|
}
|