// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.24;
import "./IBCTypes.sol";
struct MsgChannelOpenInit {
string portId;
IbcCoreChannelV1Channel.IbcCoreChannelV1ChannelData channel;
address relayer;
}
interface IIBCChannelHandler {
function channelOpenInit(MsgChannelOpenInit calldata message) external returns (string memory);
}