> ## Documentation Index
> Fetch the complete documentation index at: https://docs.gank.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# privacy swap

> cross-chain wallet separation

# privacy swap

cross-chain swap through monero. sol from a source wallet gets routed through xmr and arrives at a fresh destination wallet with no on-chain link between the two.

## how it works

```
source wallet (sol)
    → sol-to-xmr swap
    → xmr-to-sol swap
destination wallet (sol)
```

two chained swaps through xmr. you never touch monero directly. the system handles it internally.

## config

| param                 | what                                            |
| --------------------- | ----------------------------------------------- |
| `source_wallets`      | wallets to swap from                            |
| `destination_wallets` | fresh wallets to receive sol (1:1 with source)  |
| `sell_tokens`         | sell all tokens before swapping (default: true) |
| `slippage_bps`        | slippage for token sells (default: 2000)        |

source and destination arrays must match 1:1. create fresh destination wallets first.

## cost

|         |                                 |
| ------- | ------------------------------- |
| time    | \~45 minutes (xmr confirmation) |
| fee     | \~3%                            |
| minimum | 0.2 sol per wallet              |

## status tracking

each operation reports: `deposit_sent` → `forward_processing` → `xmr_converting` → `return_processing` → `completed`

monitor from the dashboard or poll the status endpoint.

irreversible once initiated. double-check wallet addresses before confirming.
