16 lines
447 B
Solidity
16 lines
447 B
Solidity
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
pragma solidity >=0.7.5;
|
|
pragma abicoder v2;
|
|
|
|
import '@uniswap/v3-periphery/contracts/interfaces/ISelfPermit.sol';
|
|
|
|
import './IV2SwapRouter.sol';
|
|
import './IV3SwapRouter.sol';
|
|
import './IApproveAndCall.sol';
|
|
import './IMulticallExtended.sol';
|
|
|
|
/// @title Router token swapping functionality
|
|
interface ISwapRouter02 is IV2SwapRouter, IV3SwapRouter, IApproveAndCall, IMulticallExtended, ISelfPermit {
|
|
|
|
}
|