> For the complete documentation index, see [llms.txt](https://docs.satoshiterminal.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.satoshiterminal.io/resources/copy-of-defi-analytics/monitoring-and-tracking/multi-wallet-aggregator-profiles.md).

# 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.
