{
    "Function": "deployCodeTo",
    "File": "contracts/src/vendor/forge-std/src/StdCheats.sol",
    "Parent Contracts": [
        "contracts/src/vendor/forge-std/src/StdCheats.sol"
    ],
    "High-Level Calls": [
        "Vm",
        "Vm",
        "Vm"
    ],
    "Internal Calls": [
        "abi.encodePacked()",
        "require(bool,string)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [
        "call"
    ],
    "Code": "function deployCodeTo(string memory what, bytes memory args, uint256 value, address where) internal virtual {\n        bytes memory creationCode = vm.getCode(what);\n        vm.etch(where, abi.encodePacked(creationCode, args));\n        (bool success, bytes memory runtimeBytecode) = where.call{value: value}(\"\");\n        require(success, \"StdCheats deployCodeTo(string,bytes,uint256,address): Failed to create runtime bytecode.\");\n        vm.etch(where, runtimeBytecode);\n    }"
}