{
    "Function": "deployAndInit",
    "File": "contracts/gmp-sdk/deploy/ConstAddressDeployer.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "keccak256(bytes)",
        "_deploy",
        "abi.encode()",
        "revert FailedInit()"
    ],
    "Library Calls": [],
    "Low-Level Calls": [
        "call"
    ],
    "Code": "function deployAndInit(\n        bytes memory bytecode,\n        bytes32 salt,\n        bytes calldata init\n    ) external returns (address deployedAddress_) {\n        deployedAddress_ = _deploy(bytecode, keccak256(abi.encode(msg.sender, salt)));\n\n        // solhint-disable-next-line avoid-low-level-calls\n        (bool success, ) = deployedAddress_.call(init);\n        if (!success) revert FailedInit();\n    }"
}