From 412aa13d241ebb9d9fef64392b0bd225a62cc8a4 Mon Sep 17 00:00:00 2001 From: Whiteamf6 <157373055+Whiteamf6@users.noreply.github.com> Date: Thu, 15 Feb 2024 10:36:53 +0200 Subject: [PATCH] Delete contracts/features/IAggregationFeature.sol --- contracts/features/IAggregationFeature.sol | 36 ---------------------- 1 file changed, 36 deletions(-) delete mode 100644 contracts/features/IAggregationFeature.sol diff --git a/contracts/features/IAggregationFeature.sol b/contracts/features/IAggregationFeature.sol deleted file mode 100644 index d9503a9..0000000 --- a/contracts/features/IAggregationFeature.sol +++ /dev/null @@ -1,36 +0,0 @@ -// SPDX-License-Identifier: BUSL-1.1 -pragma solidity ^0.8.17; - -import { - BasicParams, - AggregationParams, - SwapType, - OrderInfo -} from "../interfaces/IBKStructsAndEnums.sol"; - -interface IAggregationFeature { - event Swap( - SwapType indexed swapType, - address indexed receiver, - uint feeAmount, - string featureName - ); - - event OrderInfoEvent( - bytes transferId, - uint dstChainId, - address sender, - address bridgeReceiver, - address tokenIn, - address desireToken, - uint amount - ); - - struct SwapDetail { - BasicParams basicParams; - AggregationParams aggregationParams; - OrderInfo orderInfo; - } - - function swap(SwapDetail calldata swapDetail) external; -} \ No newline at end of file