# Multi-Wallet Aggregator Profiles

**Implementation Details**

**Class Names**

| Model Name               | Parameters Class            | Data Class           |
| ------------------------ | --------------------------- | -------------------- |
| WalletAggregatorProfiles | WalletAggregatorQueryParams | WalletAggregatorData |

**Import Statement**

```python
pythonCopyEditfrom satoshi_terminal.models.wallet_aggregator_profiles import (
    WalletAggregatorProfiles,
    WalletAggregatorQueryParams,
    WalletAggregatorData,
)
```

***

**Parameters**

| Name                | Type       | Description                                         | Default | Optional |
| ------------------- | ---------- | --------------------------------------------------- | ------- | -------- |
| wallet\_addresses   | List\[str] | List of wallets to aggregate into a profile.        | None    | False    |
| activity\_scope     | str        | Scope of aggregation (e.g., "DeFi," "NFTs").        | "DeFi"  | True     |
| include\_historical | bool       | Include historical transaction data in the profile. | True    | True     |

***

**Data**

| Name                   | Type     | Description                                              |
| ---------------------- | -------- | -------------------------------------------------------- |
| profile\_id            | str      | Unique identifier for the aggregated wallet profile.     |
| aggregated\_balance    | float    | Total balance across all wallets in the profile.         |
| activity\_distribution | dict     | Distribution of activity by type (e.g., swaps, staking). |
| timestamp              | datetime | Timestamp of the profile creation.                       |

***

**Key Features**

* **Wallet Aggregation:** Combines multiple wallets into a single profile for unified tracking.
* **Activity Scope Customization:** Focus on specific activities like DeFi trading or NFT minting.
* **Comprehensive Insights:** Tracks total balances, transaction history, and behavioral patterns.


---

# 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.satoshiterminal.io/resources/copy-of-defi-analytics/monitoring-and-tracking/multi-wallet-aggregator-profiles.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.
