// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.7.5; pragma abicoder v2; import '@airdao/astra-cl-periphery/contracts/interfaces/ISelfPermit.sol'; import './IClassicSwapRouter.sol'; import './ICLSwapRouter.sol'; import './IApproveAndCall.sol'; import './IMulticallExtended.sol'; /// @title Router token swapping functionality interface ISwapRouter02 is IClassicSwapRouter, ICLSwapRouter, IApproveAndCall, IMulticallExtended, ISelfPermit { }