{
    "Function": "checkPrecision",
    "File": "contracts/Project.sol",
    "Parent Contracts": [
        "node_modules/@openzeppelin/contracts-upgradeable/metatx/ERC2771ContextUpgradeable.sol",
        "node_modules/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol",
        "node_modules/@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol",
        "node_modules/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol",
        "contracts/interfaces/IProject.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool,string)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function checkPrecision(uint256 _amount) internal pure {\n        // Divide and multiply amount with 1000 should be equal to amount.\n        // This ensures the amount is not too precise.\n        require(\n            ((_amount / 1000) * 1000) == _amount,\n            \"Project::Precision>=1000\"\n        );\n    }"
}