{
    "Function": "callContractWithToken",
    "File": "src/AxelarGateway.sol",
    "Parent Contracts": [
        "src/AdminMultisigBase.sol",
        "src/EternalStorage.sol",
        "src/interfaces/IAxelarGateway.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "keccak256(bytes)",
        "_burnTokenFrom"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function callContractWithToken(\n        string memory destinationChain,\n        string memory destinationContractAddress,\n        bytes memory payload,\n        string memory symbol,\n        uint256 amount\n    ) external {\n        _burnTokenFrom(msg.sender, symbol, amount);\n        emit ContractCallWithToken(\n            msg.sender,\n            destinationChain,\n            destinationContractAddress,\n            keccak256(payload),\n            payload,\n            symbol,\n            amount\n        );\n    }"
}