{
    "Function": "constructor",
    "File": "contracts/AxelarGateway.sol",
    "Parent Contracts": [
        "contracts/AdminMultisigBase.sol",
        "contracts/EternalStorage.sol",
        "contracts/interfaces/IAxelarGateway.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "code(address)",
        "revert InvalidTokenDeployer()",
        "revert InvalidAuthModule()",
        "code(address)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "constructor(address authModule, address tokenDeployerImplementation) {\n        if (authModule.code.length == 0) revert InvalidAuthModule();\n        if (tokenDeployerImplementation.code.length == 0) revert InvalidTokenDeployer();\n\n        AUTH_MODULE = authModule;\n        TOKEN_DEPLOYER_IMPLEMENTATION = tokenDeployerImplementation;\n    }"
}