Files
contract/lib_uniswap/v3-periphery/contracts/interfaces/IPeripheryImmutableState.sol
dexorder 25def69c66 dexorder
2024-10-17 02:42:28 -04:00

13 lines
419 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 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);
}