Git Source
uint256 public constant ENTRY_SIZE = 113;
function decodeJournal(bytes memory journalData)
internal
pure
returns (
address sender,
address market,
uint256 accAmountIn,
uint256 accAmountOut,
uint32 chainId,
uint32 dstChainId,
bool L1inclusion
);
function encodeJournal(
address sender,
address market,
uint256 accAmountIn,
uint256 accAmountOut,
uint32 chainId,
uint32 dstChainId,
bool L1inclusion
) internal pure returns (bytes memory);
error mTokenProofDecoderLib_ChainNotFound();
error mTokenProofDecoderLib_InvalidLength();
error mTokenProofDecoderLib_InvalidInclusion();