{
    "Function": "_getMinIncrement",
    "File": "contracts/mixins/NFTMarketCore.sol",
    "Parent Contracts": [
        "contracts/mixins/Constants.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _getMinIncrement(uint256 currentAmount) internal pure returns (uint256) {\n    uint256 minIncrement = currentAmount * MIN_PERCENT_INCREMENT_IN_BASIS_POINTS;\n    unchecked {\n      minIncrement /= BASIS_POINTS;\n      if (minIncrement == 0) {\n        // Since minIncrement reduces from the currentAmount, this cannot overflow.\n        // The next amount must be at least 1 wei greater than the current.\n        return currentAmount + 1;\n      }\n    }\n\n    return minIncrement + currentAmount;\n  }"
}