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

# Import wallets

> Add wallets to the manager — one by one, as a list, or from a file

## Import methods

There are three ways to import wallets into the wallet manager:

* **Single** — manual entry for individual wallets
* **Multiple** — paste multiple wallets in a structured format
* **File** — upload CSV, XLS, or XLSX files

<Note>
  Re-importing a wallet with the same private key **updates the existing entry** rather than creating a duplicate.
</Note>

## Single import

<Steps>
  <Step title="Open the import dialog">
    Click **Add Wallet** in the top-right corner.
  </Step>

  <Step title="Select mode">
    Choose the **Single** tab.
  </Step>

  <Step title="Select chain type">
    Select **EVM** as the chain type.
  </Step>

  <Step title="Enter wallet data">
    Fill in the fields:

    | Field                       | Description                                        | Required |
    | --------------------------- | -------------------------------------------------- | -------- |
    | **Private key or mnemonic** | The wallet's private key or mnemonic phrase        | Yes      |
    | **Withdrawal address**      | Default destination address for outgoing transfers | No       |
    | **Name**                    | Display name for the wallet                        | No       |
    | **Tags**                    | One or more tags for organization                  | No       |

    <Frame>
      <img src="https://mintcdn.com/oxygenparadigm/St-k5Qis-oqMiVg_/images/atmos_ui/wallets/atmos_wallets_import_wallet_single.png?fit=max&auto=format&n=St-k5Qis-oqMiVg_&q=85&s=72e16506789ea7800ceeb2d844d8da3a" alt="Single wallet import form" width="1400" height="840" data-path="images/atmos_ui/wallets/atmos_wallets_import_wallet_single.png" />
    </Frame>
  </Step>

  <Step title="Confirm">
    Click **Add Wallet** to import.
  </Step>
</Steps>

## Multiple import

Paste wallets line by line using this format:

```text theme={null}
private_key:withdrawal_address:alias
```

Each wallet goes on a new line. Example:

```text theme={null}
private_key1:0xabc...123:Farm_01
private_key2:0xdef...456:Farm_02
private_key3:0x789...abc:Farm_03
```

<Steps>
  <Step title="Open the import dialog">
    Click **Add Wallet** in the top-right corner.
  </Step>

  <Step title="Select mode">
    Choose the **Multiple** tab.
  </Step>

  <Step title="Select chain type">
    Select **EVM** as the chain type.
  </Step>

  <Step title="Assign tags (optional)">
    Select one or more tags to apply to all imported wallets.
  </Step>

  <Step title="Paste wallet data">
    Paste your list into the text field.
  </Step>

  <Step title="Confirm">
    Click **Add Wallets** to import all entries.
  </Step>
</Steps>

## File import

Supported formats: **CSV**, **XLS**, **XLSX**. You can download a template directly from the import dialog.

<Steps>
  <Step title="Open the import dialog">
    Click **Add Wallet** in the top-right corner.
  </Step>

  <Step title="Select mode">
    Choose the **File** tab.
  </Step>

  <Step title="Select chain type">
    Select **EVM** as the chain type.
  </Step>

  <Step title="Assign tags (optional)">
    Select tags to apply to all imported wallets.
  </Step>

  <Step title="Download the template">
    Choose a template format (CSV, XLS, or XLSX). The file saves to your Downloads folder.

    <Frame>
      <img src="https://mintcdn.com/oxygenparadigm/WVKU6cYMibX-8Goj/images/atmos_ui/wallets/atmos_wallets_import_file_v040.png?fit=max&auto=format&n=WVKU6cYMibX-8Goj&q=85&s=8f9034ef50b7a0d785dc5ba18fe08a96" alt="Wallet file import and template download" width="2209" height="1327" data-path="images/atmos_ui/wallets/atmos_wallets_import_file_v040.png" />
    </Frame>

    <Info>
      If you don't have Excel, you can import the template into Google Sheets to fill it in.
    </Info>
  </Step>

  <Step title="Fill in the template">
    Open the template and fill in the columns:

    | Column                  | Description                       |
    | ----------------------- | --------------------------------- |
    | `wallet_key_or_address` | Private key or mnemonic           |
    | `withdraw_address`      | Destination address for transfers |
    | `alias`                 | Display name for the wallet       |
  </Step>

  <Step title="Upload the file">
    Click **Next**, then drag and drop your file into the import area or click **Select**.
  </Step>

  <Step title="Confirm">
    Click **Import** to add all wallets from the file.
  </Step>
</Steps>
