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