# Wallet Detail

The Vault Detail view gives operators a complete picture of a single agent vault: its balance, transaction history, policy utilisation, and escrow positions.

Navigate here from the Fleet Overview by clicking any vault row.

***

## Header

The vault header shows:

* Vault name (editable inline)
* Agent ID
* Solana address (click to copy, or click the external link icon to open in Solscan)
* Current USDC balance (live, updates in real-time)
* Status badge
* Attached policy name (click to navigate to the Policy detail view)

Quick action buttons: **Fund**, **Withdraw**, **Freeze / Unfreeze**, **Edit Policy**.

***

## Transaction history

The transaction history table lists every transaction associated with this vault, in reverse chronological order — each one inscribed on-chain.

Each row shows:

| Column                 | Description                                                   |
| ---------------------- | ------------------------------------------------------------- |
| **Time**               | Timestamp at on-chain confirmation                            |
| **Type**               | `payment`, `funding`, `withdrawal`, `a2a_send`, `a2a_receive` |
| **Recipient / Source** | The other party - address, domain, or wallet name             |
| **Amount**             | USDC amount (negative for outgoing, positive for incoming)    |
| **Status**             | `confirmed`, `blocked`, `pending`                             |
| **On-Chain**           | Direct link to Solscan and SolanaFM                           |
| **Memo**               | Off-chain memo if provided                                    |

Blocked transactions (policy violations) appear in the history with the violation detail visible on hover.

### Filters

Filter transactions by type, status, date range, or recipient. Export the filtered view as CSV or JSON.

***

## Spending breakdown

A chart showing USDC spend grouped by recipient domain over a configurable time window (7 days, 30 days, 90 days). Useful for identifying which services are drawing the most from the vault's allocation.

***

## Policy utilisation

Gauges showing current utilisation against each policy limit:

* **Per-transaction** - last transaction vs `maxPerTx`
* **24h spend** - rolling 24-hour spend vs `maxPerDay`
* **Monthly spend** - current month spend vs `maxPerMonth`
* **Velocity** - transactions in the last hour vs `velocityCap`

A gauge turns amber at 80% utilisation and red at 95%.

***

## Escrow positions

A list of open A2A escrows where this wallet is either the requester or the receiver. Each escrow shows: the counterparty wallet, amount, status, task description, and expiry time.

From this view, operators can:

* View the escrow detail (on-chain address, proof status)
* Raise a dispute on an active escrow
* Monitor pending completions

***

## Auto-topup settings

Toggle and configure the auto-topup rule for this vault directly from the Vault Detail view. See [Funding](/core-concepts/funding.md) for auto-topup behaviour.

***

## Session token

The Session Token panel shows:

* Whether a session token is currently active
* The token's expiry time
* A **Rotate Token** button to immediately revoke the current token and issue a new one

Rotating a token takes effect immediately — any agent process using the old token will receive `401 Unauthorized` on the next request. The vault is otherwise unaffected.


---

# Agent Instructions: 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://docs.therosai.com/dashboard/wallet-detail.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.
