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

# Manage wallets

> Create wallets, add networks, organize with tags, and manage balances from the DFNS dashboard with role-based access controls and audit trails.

export const Youtube = props => {
  return <iframe className="w-full aspect-video rounded-xl" src={`https://www.youtube.com/embed/${props.videoId}`} title="YouTube video player" frameBorder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowFullScreen>
      </iframe>;
};

<Youtube videoId="kACYZk_ajk4" />

This guide covers how to create and manage wallets using the DFNS dashboard, including adding networks, using tags, and viewing wallet details.

<Note>
  Need managed custody with segregated balances, compliance holds, and an audit trail instead of direct wallet control? See [Manage vaults](/guides/manage-vaults), and compare the two models in [Vaults, wallets & keys](/core-concepts/vaults-wallets-and-keys#wallet-vs-vault).
</Note>

## Creating a wallet

1. Navigate to **Wallets** in the sidebar
2. Click **Create Wallet**
3. Enter a name for the wallet
4. Select the network for your wallet (e.g., Ethereum, Polygon, Bitcoin)
5. (Optional) Add tags or an external ID
6. Click **Create**

<Frame>
  <img src="https://mintcdn.com/dfns-6d8c7466/LvhyA9Flcv5r_sTS/images/auto/creating-your-first-wallet-2.png?fit=max&auto=format&n=LvhyA9Flcv5r_sTS&q=85&s=02314da43f665fd0c030797a3ffb1692" alt="Create a wallet panel with name, network, tags and the Create button" width="2688" height="1672" data-path="images/auto/creating-your-first-wallet-2.png" />
</Frame>

The wallet is created and you'll see its address and details.

<Info>
  DFNS uses MPC (Multi-Party Computation) to secure your wallets. There's no single private key - the signing capability is distributed across multiple secure nodes.
</Info>

## Adding a network to an existing wallet

If your wallet's key supports multiple networks (e.g., EVM chains share the same key type), you can add additional networks:

1. Navigate to **Wallets** and select the wallet
2. Open the network selector at the top and click **Add Network**
3. Select the network to add
4. Confirm the addition

<Frame>
  <img src="https://mintcdn.com/dfns-6d8c7466/VaD925y0rguD_zH8/images/auto/using-multichain-wallets-1.png?fit=max&auto=format&n=VaD925y0rguD_zH8&q=85&s=f564f8651b5c0855fb0e93832fbb1216" alt="Wallet network selector with the Add Network option" width="2688" height="1672" data-path="images/auto/using-multichain-wallets-1.png" />
</Frame>

The wallet will have a new address on the selected network, derived from the same underlying key.

<Note>
  Not all networks are compatible with all key types. The dashboard only shows networks that are compatible with your wallet's key.
</Note>

## Naming and tagging wallets

Open a wallet, click the actions menu (**⋯**) in the top-right, and select **Edit** to open the edit panel. From there you can rename the wallet and manage its tags.

<Frame>
  <img src="https://mintcdn.com/dfns-6d8c7466/j-sZFsr4APihm496/images/auto/managing-wallets-1.png?fit=max&auto=format&n=j-sZFsr4APihm496&q=85&s=1644a8fd26de078af7e754c1f96a8517" alt="Edit wallet panel with the name and tags fields" width="2688" height="1672" data-path="images/auto/managing-wallets-1.png" />
</Frame>

### Renaming a wallet

In the edit panel, change the **Wallet Name** and click **Update**.

### Adding tags

Tags help you organize wallets and target them with [policies](/core-concepts/policies). In the edit panel, type a tag in the **Tags** field and click **Add**, then **Update**. Tags are case-sensitive and must match exactly to trigger a policy.

<Tip>
  Use consistent tag naming across your organization. Common patterns include:

  * By function: `treasury`, `operations`, `payroll`
  * By risk level: `cold-storage`, `warm-wallet`, `hot-wallet`
  * By network: `eth-mainnet`, `polygon`, `testnet`
</Tip>

## Finding wallets

Use the **Search** box above the wallet list to find wallets by name, address, or tag.

## Viewing wallet details

Click on any wallet to open its detail page, which shows:

* **Address** - The wallet's blockchain address
* **Networks** - Switch networks from the selector at the top
* **Assets** - Token balances on the selected network
* **Outgoing Transfers** and **History** - Transaction activity
* **Tags** - Tags assigned to this wallet

<Frame>
  <img src="https://mintcdn.com/dfns-6d8c7466/j-sZFsr4APihm496/images/auto/creating-your-first-wallet-4.png?fit=max&auto=format&n=j-sZFsr4APihm496&q=85&s=f8530f2c5e54a577e7f98df6771c517d" alt="Wallet detail page showing assets, balances and transfers" width="2688" height="2832" data-path="images/auto/creating-your-first-wallet-4.png" />
</Frame>

### Viewing balances

The **Assets** section shows:

* Native token balance (ETH, MATIC, etc.)
* ERC-20 token balances
* NFTs (on supported networks)

Balances reflect the latest state recorded by the DFNS indexer, so a new deposit may take a moment to appear. See [Balance freshness](/guides/developers/displaying-balances#balance-freshness) for details.

### Viewing transaction history

The **History** section lists incoming and outgoing transactions, each with a direction (In/Out), status (pending, confirmed, failed), timestamp, and a link to the block explorer. Toggle **Only show verified transactions** to hide activity involving unverified assets.

## Exporting transaction history

To export transaction history as a CSV:

1. Navigate to **Wallets**
2. Open the actions menu (**⋯**) next to **Create Wallet** and select **Export History**
3. Choose a date range (up to 7 days)
4. Click **Download**

<Frame>
  <img src="https://mintcdn.com/dfns-6d8c7466/LvhyA9Flcv5r_sTS/images/auto/managing-wallets-2.png?fit=max&auto=format&n=LvhyA9Flcv5r_sTS&q=85&s=194512fc310ab1fc4f78d74fb610bb63" alt="Export History panel with a date range and the Download button" width="2688" height="1672" data-path="images/auto/managing-wallets-2.png" />
</Frame>

The export covers transaction history across your organization's wallets for the selected date range.

## For developers

To manage wallets programmatically, see:

<CardGroup cols={2}>
  <Card title="Create wallets via API" icon="code" href="/guides/developers/create-wallets">
    Wallet creation and management
  </Card>

  <Card title="Wallets API" icon="book" href="/api-reference/wallets/index">
    Complete API reference
  </Card>
</CardGroup>

## Related guides

<CardGroup cols={2}>
  <Card title="Transfer assets" icon="paper-plane" href="/guides/transfer-assets">
    Send transfers from your wallets
  </Card>

  <Card title="Use the address book" icon="book" href="/guides/address-book">
    Save and manage recipient addresses
  </Card>

  <Card title="Create policies" icon="shield" href="/guides/create-policies">
    Apply policies to your wallets
  </Card>
</CardGroup>
