1234567891011121314 |
- // SPDX-License-Identifier: BUSL-1.1
- pragma solidity 0.7.6;
- interface IMirrorgateReceiver {
- function mgReceive(
- uint16 _chainId,
- bytes memory _srcAddress,
- uint256 _nonce,
- address _token,
- uint256 amountLD,
- bytes memory payload
- ) external;
- }
|