> For the complete documentation index, see [llms.txt](https://docs.zama.org/protocol/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.zama.org/protocol/sdk/api-references/react/usefinalizeunwrap.md).

# useFinalizeUnwrap

Low-level mutation hook that finalizes an unwrap with the decryption proof. Call this after [`useUnwrap`](/protocol/sdk/api-references/react/useunwrap.md) or [`useUnwrapAll`](/protocol/sdk/api-references/react/useunwrapall.md) has submitted the initial unwrap transaction.

{% hint style="info" %}
Most apps should use [`useUnshield`](/protocol/sdk/api-references/react/useunshield.md) instead, which orchestrates both steps (unwrap + finalize) in a single call. Use this hook for custom multi-step flows where you need control over each phase.
{% endhint %}

## Import

```ts
import { useFinalizeUnwrap } from "@zama-fhe/react-sdk";
```

## Usage

{% tabs %}
{% tab title="TwoStepUnshield.tsx" %}

```tsx
import { useUnwrap, useFinalizeUnwrap } from "@zama-fhe/react-sdk";
import { findUnwrapRequested } from "@zama-fhe/sdk";

function TwoStepUnshield() {
  const { mutateAsync: unwrap } = useUnwrap("0xWrapper");
  const { mutateAsync: finalize, isPending } = useFinalizeUnwrap("0xWrapper");

  const handleUnshield = async () => {
    // Step 1: submit the unwrap and find the event in the receipt
    const { receipt } = await unwrap({ amount: 500n });
    const event = findUnwrapRequested(receipt.logs);
    if (!event?.unwrapRequestId) throw new Error("UnwrapRequested event missing");

    // Step 2: finalize with the unwrap request ID from the event
    await finalize({ unwrapRequestId: event.unwrapRequestId });
  };

  return (
    <button onClick={handleUnshield} disabled={isPending}>
      {isPending ? "Finalizing..." : "Unshield (two-step)"}
    </button>
  );
}
```

{% endtab %}
{% endtabs %}

## Parameters

### address

`Address`

Address of the confidential wrapper contract. Passed positionally as the first argument.

```tsx
const { mutateAsync: finalize } = useFinalizeUnwrap("0xWrapper");
```

## Mutation variables

### unwrapRequestId

`EncryptedValue`

The unwrap request ID emitted in the `UnwrapRequested` event.

```tsx
await finalize({ unwrapRequestId: requestId });
```

## Return Type

## Related

* [`useUnwrap`](/protocol/sdk/api-references/react/useunwrap.md) -- request unwrap for a specific amount
* [`useUnwrapAll`](/protocol/sdk/api-references/react/useunwrapall.md) -- request unwrap for the full balance
* [`useResumeUnshield`](/protocol/sdk/api-references/react/useresumeunshield.md) -- resume an interrupted unshield
* [`useUnshield`](/protocol/sdk/api-references/react/useunshield.md) -- high-level hook that handles both steps


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.zama.org/protocol/sdk/api-references/react/usefinalizeunwrap.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
