{
    "Function": "transferIds",
    "File": "contracts/contracts/core/relayer-fee/libraries/RelayerFeeMessage.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "TypedMemView",
        "TypedMemView"
    ],
    "Internal Calls": [
        "typeAssert"
    ],
    "Library Calls": [
        "indexUint",
        "index"
    ],
    "Low-Level Calls": [],
    "Code": "function transferIds(bytes29 _view) internal pure typeAssert(_view, Types.ClaimFees) returns (bytes32[] memory) {\n    uint256 length = _view.indexUint(LENGTH_ID_START, LENGTH_ID_LEN);\n\n    bytes32[] memory ids = new bytes32[](length);\n    for (uint256 i = 0; i < length; ) {\n      ids[i] = _view.index(TRANSFER_IDS_START + i * TRANSFER_ID_LEN, TRANSFER_ID_LEN);\n\n      unchecked {\n        i++;\n      }\n    }\n    return ids;\n  }"
}