{
    "Function": "sendFees",
    "File": "contracts/FeeSplitter.sol",
    "Parent Contracts": [
        "node_modules/@openzeppelin/contracts/security/ReentrancyGuard.sol",
        "node_modules/@openzeppelin/contracts/access/Ownable.sol",
        "node_modules/@openzeppelin/contracts/utils/Context.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "nonReentrant",
        "_sendFees"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function sendFees(IERC20 _token, uint256 _amount) external nonReentrant {\n        uint256 weights = totalWeights - royaltiesWeight;\n        _sendFees(_token, _amount, weights);\n    }"
}