{
    "Function": "sendNativeDeposit",
    "File": "contracts/cgp/test/AxelarDepositService.sol",
    "Parent Contracts": [
        "contracts/cgp/interfaces/IAxelarDepositService.sol",
        "contracts/cgp/test/DepositServiceBase.sol",
        "contracts/cgp/interfaces/IDepositServiceBase.sol",
        "contracts/cgp/util/Upgradable.sol",
        "contracts/cgp/interfaces/IUpgradable.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "abi.encodeWithSelector()"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function sendNativeDeposit(\n        bytes32 salt,\n        address refundAddress,\n        string calldata destinationChain,\n        string calldata destinationAddress\n    ) external {\n        // NOTE: `DepositReceiver` is destroyed in the same runtime context that it is deployed.\n        new DepositReceiver{ salt: salt }(\n            abi.encodeWithSelector(\n                ReceiverImplementation.receiveAndSendNative.selector,\n                refundAddress,\n                destinationChain,\n                destinationAddress\n            ),\n            refundAddress\n        );\n    }"
}