{
    "Function": "_paramChecks",
    "File": "src/RecoverySpellFactory.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool,string)",
        "require(bool,string)",
        "require(bool,string)",
        "require(bool,string)",
        "require(bool,string)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _paramChecks(\n        address[] memory owners,\n        uint256 threshold,\n        uint256 recoveryThreshold,\n        uint256 delay\n    ) private pure {\n        require(\n            threshold <= owners.length,\n            \"RecoverySpell: Threshold must be lte number of owners\"\n        );\n        require(\n            recoveryThreshold <= owners.length,\n            \"RecoverySpell: Recovery threshold must be lte number of owners\"\n        );\n\n        require(threshold != 0, \"RecoverySpell: Threshold must be gt 0\");\n        require(delay <= 365 days, \"RecoverySpell: Delay must be lte a year\");\n        for (uint256 i = 0; i < owners.length; i++) {\n            require(owners[i] != address(0), \"RecoverySpell: Owner cannot be 0\");\n        }\n    }"
}