{
    "Function": "nativeUnwrap",
    "File": "contracts/deposit-service/AxelarDepositService.sol",
    "Parent Contracts": [
        "contracts/interfaces/IAxelarDepositService.sol",
        "contracts/deposit-service/DepositBase.sol",
        "contracts/interfaces/IDepositBase.sol",
        "contracts/util/Upgradable.sol",
        "contracts/interfaces/IUpgradable.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "abi.encodeWithSelector()"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function nativeUnwrap(\n        bytes32 salt,\n        address refundAddress,\n        address payable recipient\n    ) external {\n        // NOTE: `DepositReceiver` is destroyed in the same runtime context that it is deployed.\n        new DepositReceiver{ salt: salt }(\n            abi.encodeWithSelector(ReceiverImplementation.receiveAndUnwrapNative.selector, refundAddress, recipient)\n        );\n    }"
}