Message Structure
src/libraries/Message.sol
struct Message {
uint256 srcChainId;
uint256 dstChainId;
address target;
uint256 nonce;
bytes callData;
uint256 nativeValue;
uint256 expiration;
}Last updated