{
    "Function": "constructor",
    "File": "src/AxelarGatewayProxy.sol",
    "Parent Contracts": [
        "src/EternalStorage.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "_setAddress",
        "abi.encodeWithSelector()",
        "revert SetupFailed()"
    ],
    "Library Calls": [],
    "Low-Level Calls": [
        "delegatecall"
    ],
    "Code": "constructor(address gatewayImplementation, bytes memory params) {\n        _setAddress(KEY_IMPLEMENTATION, gatewayImplementation);\n\n        (bool success, ) = gatewayImplementation.delegatecall(\n            abi.encodeWithSelector(IAxelarGateway.setup.selector, params)\n        );\n\n        if (!success) revert SetupFailed();\n    }"
}