{
    "Function": "setRemoteValue",
    "File": "contracts/gmp-sdk/test/gmp/ExecutableSample.sol",
    "Parent Contracts": [
        "contracts/gmp-sdk/express/AxelarExpressExecutable.sol",
        "contracts/gmp-sdk/express/ExpressExecutorTracker.sol",
        "contracts/gmp-sdk/interfaces/IAxelarExpressExecutable.sol",
        "contracts/gmp-sdk/interfaces/IAxelarExecutable.sol"
    ],
    "High-Level Calls": [
        "IAxelarGateway"
    ],
    "Internal Calls": [
        "abi.encode()"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function setRemoteValue(\n        string calldata destinationChain,\n        string calldata destinationAddress,\n        string calldata value_\n    ) external payable {\n        bytes memory payload = abi.encode(value_);\n\n        gateway.callContract(destinationChain, destinationAddress, payload);\n    }"
}