Add ILiquidityLayerRouter (#1378)
parent
848f96780f
commit
93a8fb0c9b
@ -0,0 +1,15 @@ |
||||
// SPDX-License-Identifier: MIT OR Apache-2.0 |
||||
pragma solidity >=0.6.11; |
||||
|
||||
import {Call} from "../contracts/Call.sol"; |
||||
|
||||
interface ILiquidityLayerRouter { |
||||
function dispatchWithTokens( |
||||
uint32 _destinationDomain, |
||||
bytes32 _recipientAddress, |
||||
bytes calldata _messageBody, |
||||
address _token, |
||||
uint256 _amount, |
||||
string calldata _bridge |
||||
) external payable returns (bytes32); |
||||
} |
Loading…
Reference in new issue