mirror of
				https://github.com/Instadapp/dsa-connectors.git
				synced 2024-07-29 22:37:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			376 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			376 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| //SPDX-License-Identifier: MIT
 | |
| pragma solidity ^0.7.0;
 | |
| 
 | |
| import { TokenInterface } from "../../common/interfaces.sol";
 | |
| 
 | |
| interface IHopRouter {
 | |
| 	function swapAndSend(
 | |
| 		uint256 chainId,
 | |
| 		address recipient,
 | |
| 		uint256 amount,
 | |
| 		uint256 bonderFee,
 | |
| 		uint256 amountOutMin,
 | |
| 		uint256 deadline,
 | |
| 		uint256 destinationAmountOutMin,
 | |
| 		uint256 destinationDeadline
 | |
| 	) external payable;
 | |
| }
 | 
