{
    "Function": "slitherConstructorConstantVariables",
    "File": "contracts/test/SmartWallet.sol",
    "Parent Contracts": [
        "contracts/helpers/Multicall.sol",
        "contracts/helpers/RevertDebug.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "contract SmartWallet is RevertDebug, Multicall {\n\n    enum ReturnTypes { Bool, Address, Uint, AddressArray, UintArray, Bytes, BytesArray }\n\n    struct ReturnValue {\n        ReturnTypes returnType;\n        bytes bytevalue;\n    }\n\n    /**\n        @notice Execute a bunch of batch calls from this contract\n     */\n    function execute(Call[] memory calls) public {\n        bytes[] memory returnData = aggregate(calls);\n        emit Executed(returnData);\n    }\n\n    // /**\n    //     @notice Batch calls with a check for expected return data\n    //  */\n    // function executeStrict(Call[] memory calls, ReturnValue[] memory expectedReturnData) public {\n    //     bytes[] memory returnData = aggregate(calls);\n    //     for (uint i = 0; i < calls.length; i++){\n    //         // TODO: make lib to compare return values\n    //     }\n    //     emit Executed(returnData);\n    // }\n\n    /**\n     * @notice Helper function to encode typed struct into bytes\n     */\n    function encodeCalls(Call[] calldata calls) external pure returns (bytes memory data) {\n        data = abi.encode(calls);\n    }\n\n    event Executed(bytes[] returnData);\n}"
}