{
    "Function": "slitherConstructorConstantVariables",
    "File": "src/AxelarGatewayProxy.sol",
    "Parent Contracts": [
        "src/EternalStorage.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "contract AxelarGatewayProxy is EternalStorage {\n    error SetupFailed();\n\n    /// @dev Storage slot with the address of the current factory. `keccak256('eip1967.proxy.implementation') - 1`.\n    bytes32 internal constant KEY_IMPLEMENTATION =\n        bytes32(0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc);\n\n    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    }\n\n    function setup(bytes calldata params) external {}\n\n    fallback() external payable {\n        address implementation = getAddress(KEY_IMPLEMENTATION);\n\n        assembly {\n            calldatacopy(0, 0, calldatasize())\n\n            let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0)\n\n            returndatacopy(0, 0, returndatasize())\n\n            switch result\n            case 0 {\n                revert(0, returndatasize())\n            }\n            default {\n                return(0, returndatasize())\n            }\n        }\n    }\n\n    receive() external payable {\n        revert('NO_ETHER');\n    }\n}"
}