{
    "Function": "pullERC1155AfterCheck",
    "File": "src/libraries/DelegateTokenTransferHelpers.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "IERC1155"
    ],
    "Internal Calls": [
        "revert ERC1155NotPulled()"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function pullERC1155AfterCheck(Structs.Uint256 storage erc1155Pulled, uint256 pullAmount, address underlyingContract, uint256 underlyingTokenId) internal {\n        IERC1155(underlyingContract).safeTransferFrom(msg.sender, address(this), underlyingTokenId, pullAmount, \"\");\n        if (erc1155Pulled.flag == ERC1155_PULLED) {\n            revert Errors.ERC1155NotPulled();\n        }\n    }"
}