Whenever IERC1155(token).safeTransferFrom is called, the to address can re-enter back to the contracts due to the ERC1155TokenReceiver(to).onERC1155Received(msg.sender, from, id, amount, data) code (hook)
https://github.com/Rari-Capital/solmate/blob/03e425421b24c4f75e4a3209b019b367847b7708/src/tokens/ERC1155.sol#L55
The following functions utilise IERC1155(token).safeTransferFrom that allows the caller or proposer to re-enter back to the contracts
Apply necessary reentrancy prevention by utilizing the OpenZeppelins nonReentrant modifier to block possible re-entrancy.
