{
    "Function": "constructor",
    "File": "src/RecoverySpell.sol",
    "Parent Contracts": [
        "lib/openzeppelin-contracts/contracts/utils/cryptography/EIP712.sol",
        "lib/openzeppelin-contracts/contracts/interfaces/IERC5267.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "constructor(\n        address[] memory _owners,\n        address _safe,\n        uint256 _safeThreshold,\n        uint256 _recoveryThreshold,\n        uint256 _delay\n    ) {\n        /// no checks on parameters as all valid recovery spells are\n        /// deployed from the factory which will not allow a recovery\n        /// spell to be created that does not have valid parameters.\n        /// A recovery spell can only be created by the factory if the Safe has\n        /// already been created on the chain the RecoverySpell is being\n        /// deployed on.\n        owners = _owners;\n        safe = Safe(payable(_safe));\n        threshold = _safeThreshold;\n        recoveryThreshold = _recoveryThreshold;\n        delay = _delay;\n\n        recoveryInitiated = block.timestamp;\n\n        emit RecoveryInitiated(block.timestamp, msg.sender);\n    }"
}