{
    "Function": "isValidClaimFeesLength",
    "File": "contracts/contracts/core/relayer-fee/libraries/RelayerFeeMessage.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "TypedMemView"
    ],
    "Internal Calls": [],
    "Library Calls": [
        "len"
    ],
    "Low-Level Calls": [],
    "Code": "function isValidClaimFeesLength(bytes29 _view) internal pure returns (bool) {\n    uint256 _len = _view.len();\n    // at least 1 transfer id where the excess is multiplier of transfer id length\n    return _len >= MIN_CLAIM_LEN && (_len - TRANSFER_IDS_START) % TRANSFER_ID_LEN == 0;\n  }"
}