12345678910111213141516171819202122232425 |
- // SPDX-License-Identifier: BUSL-1.1
- pragma solidity >=0.5.0;
- interface ILayerZeroUserApplicationConfig {
- // @notice set the configuration of the LayerZero messaging library of the specified version
- // @param _version - messaging library version
- // @param _chainId - the chainId for the pending config change
- // @param _configType - type of configuration. every messaging library has its own convention.
- // @param _config - configuration in the bytes. can encode arbitrary content.
- function setConfig(uint16 _version, uint16 _chainId, uint _configType, bytes calldata _config) external;
- // @notice set the send() LayerZero messaging library version to _version
- // @param _version - new messaging library version
- function setSendVersion(uint16 _version) external;
- // @notice set the lzReceive() LayerZero messaging library version to _version
- // @param _version - new messaging library version
- function setReceiveVersion(uint16 _version) external;
- // @notice Only when the UA needs to resume the message flow in blocking mode and clear the stored payload
- // @param _srcChainId - the chainId of the source chain
- // @param _srcAddress - the contract address of the source contract at the source chain
- function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external;
- }
|