> For the complete documentation index, see [llms.txt](https://whitepaper.lacunalabs.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://whitepaper.lacunalabs.io/the-lacuna-wallet/shield-unshield-transfer.md).

# Shield, Unshield & Transfer

These three actions are the core of the wallet.

## Shield

Move funds from a public address into the shielded pool. This creates a private note for you.

## Transfer

Send shielded funds to another Lacuna user privately. A zero-knowledge proof confirms you have the funds; no balance, identity, or deposit link is revealed.

## Unshield

Withdraw shielded funds back to a public address whenever you want.

## Via The SDK

The same actions are available programmatically:

```ts
import { LacunaWallet } from "@lacuna/sdk";

const wallet = await LacunaWallet.create({ pin });

// Shield: deposit into the private pool
await wallet.shield({ token: "USDC", amount: "100" });

// Transfer: private send to another user
await wallet.transfer({ to: recipientAddress, amount: "40" });

// Unshield: withdraw back to a public address
await wallet.unshield({ to: publicAddress, amount: "25" });
```

See the full [Wallet & Developer SDK](/for-developers/sdk.md) reference.


---

# 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:

```
GET https://whitepaper.lacunalabs.io/the-lacuna-wallet/shield-unshield-transfer.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
