{
    "Function": "addPoints",
    "File": "src/MergingPool.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool,string)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function addPoints(uint256 tokenId, uint256 points) public {\n        require(msg.sender == _rankedBattleAddress, \"Not Ranked Battle contract address\");\n        fighterPoints[tokenId] += points;\n        totalPoints += points;\n        emit PointsAdded(tokenId, points);\n    }"
}