{
    "Function": "_emitProfileCreated",
    "File": "contracts/libraries/PublishingLogic.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _emitProfileCreated(\n        uint256 profileId,\n        DataTypes.CreateProfileData calldata vars,\n        bytes memory followModuleReturnData\n    ) internal {\n        emit Events.ProfileCreated(\n            profileId,\n            msg.sender, // Creator is always the msg sender\n            vars.to,\n            vars.handle,\n            vars.imageURI,\n            vars.followModule,\n            followModuleReturnData,\n            vars.followNFTURI,\n            block.timestamp\n        );\n    }"
}