> ## Documentation Index
> Fetch the complete documentation index at: https://cove-cash.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Export Your Cove Deposit History as CSV

> Download a compliance-safe CSV of your Cove deposit history including amounts, token types, status, and Solana transaction signatures.

The Cove dashboard lets you download your deposit history as a CSV file. This gives you a portable, human-readable record of every deposit made in the current browser — useful for bookkeeping, tax reporting, or compliance purposes.

## How to export

<Steps>
  <Step title="Open the dashboard">
    Go to [https://cove-cash.vercel.app/dashboard](https://cove-cash.vercel.app/dashboard). Your deposits load automatically from your browser's `localStorage`.
  </Step>

  <Step title="Click Export CSV">
    In the deposit activity section, click the **Export CSV** button. The button shows **Exporting...** while the dashboard fetches block timestamps for each deposit from the Solana network.
  </Step>

  <Step title="Save the file">
    Your browser downloads a file named `cove-compliance-export.csv`. Open it in any spreadsheet application or import it into your accounting tool.
  </Step>
</Steps>

## What the CSV contains

Each row represents one deposit. The file includes the following columns:

| Column              | Description                                                                 |
| ------------------- | --------------------------------------------------------------------------- |
| `date`              | ISO 8601 timestamp of the deposit block, fetched from Solana                |
| `amount_sol`        | The deposited amount in human-readable units (e.g., `1.5` for 1.5 SOL)      |
| `mint`              | The full token mint address                                                 |
| `status`            | Either `claimed` or `pending` at the time of export                         |
| `deposit_signature` | The Solana transaction signature for the deposit                            |
| `claim_signature`   | Reserved for the claim transaction signature (empty in the current version) |
| `commitment_index`  | The on-chain index of the commitment, used for internal verification        |

The `deposit_signature` value in each row links directly to [Solscan](https://solscan.io) when you prepend `https://solscan.io/tx/` — for example, `https://solscan.io/tx/<deposit_signature>`.

## Important limitations

<Warning>
  The export only includes deposits from the current browser's `localStorage`. Deposits made on other devices or browsers are not included. If you use Cove across multiple devices, export from each browser separately.
</Warning>

<Warning>
  Clearing your browser's site data or `localStorage` removes your deposit history permanently. Once the data is gone, it cannot be recovered from Cove's servers because Cove does not store your deposit history server-side.
</Warning>

<Tip>
  Export your CSV regularly — especially before clearing browser data, switching computers, or uninstalling your browser. Treat the export the same way you would treat a transaction log from any other financial tool.
</Tip>
