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

# Wallet & Fund Flows

> Data Dictionary — wallet and fund flows terms with definitions, formulas, units, and source commands

Net worth, portfolio composition, inflows, outflows, and address-level activity.

***

### Net Worth

Total USD value of all token holdings in a wallet.

```
Formula   Σ(Token Balance × Price) for all tokens
Unit      USD
Example   $4.2M
```

**Related** · Portfolio Allocation, 24H Change

**Used in** · [`WOV`](/docs/docs/core-concepts/commands/by-object/wallet#wov-wallet-overview) · [`NWH`](/docs/docs/core-concepts/commands/by-object/wallet#nwh-net-worth-history)

***

### Net Worth History

Time series of a wallet's total portfolio value.

```
Formula   Σ(Token Balance × Price) at each timestamp
Unit      USD over time
Example   $4.2M current, $3.8M (30D ago)
```

**Related** · Net Worth, Asset Allocation

**Used in** · [`NWH`](/docs/docs/core-concepts/commands/by-object/wallet#nwh-net-worth-history)

***

### Portfolio Allocation

Percentage of wallet net worth allocated to each token or category.

```
Formula   Token Value / Net Worth × 100
Unit      %
Example   BTC: 45%, ETH: 30%
```

**Related** · Net Worth, Holdings

**Used in** · [`PFL`](/docs/docs/core-concepts/commands/by-object/wallet#pfl-portfolio-analysis)

***

### Asset Allocation % (History)

Historical composition of a wallet's portfolio by token or category over time.

```
Formula   Per-token: Value / Net Worth × 100, tracked over time
Unit      %
Example   BTC: 45% → 38% (30D shift)
```

**Related** · Portfolio Allocation, Net Worth History

**Used in** · [`NWH`](/docs/docs/core-concepts/commands/by-object/wallet#nwh-net-worth-history)

***

### Token Holdings

All tokens held by a wallet, showing each token's amount, current value, and 24H price change.

```
Unit      Tokens / USD
Example   100 ETH ($350K, +2.1%), 5,000 USDC ($5,000)
```

**Related** · Net Worth, Portfolio Allocation

**Used in** · [`PFL`](/docs/docs/core-concepts/commands/by-object/wallet#pfl-portfolio-analysis)

***

### Portfolio Snapshot (Point-in-time)

Complete token holdings at any historical date, filterable by network and category.

```
Formula   Σ(Token Balance × Price) at snapshot date
Unit      Tokens / USD
Example   2025-01-01: 100 ETH ($350K), 50K USDC
```

**Related** · Portfolio Allocation, Net Worth History

**Used in** · [`NWH`](/docs/docs/core-concepts/commands/by-object/wallet#nwh-net-worth-history) · [`PFL`](/docs/docs/core-concepts/commands/by-object/wallet#pfl-portfolio-analysis)

***

### Staking Rewards

Tokens earned from staking positions over time.

```
Formula   Σ(Reward claims)
Unit      Tokens / USD
Example   2.5 ETH earned
```

**Related** · Staked Tokens, APR

**Used in** · [`PFL`](/docs/docs/core-concepts/commands/by-object/wallet#pfl-portfolio-analysis)

***

### Inflow

Total value of tokens received by a wallet or entity in a period.

```
Formula   Σ(Incoming tx values)
Unit      USD
Example   $1.5M (24H)
```

**Related** · Outflow, Net Flow

**Used in** · [`FFL`](/docs/docs/core-concepts/commands/by-object/wallet#ffl-fund-flows)

***

### Outflow

Total value of tokens sent from a wallet or entity in a period.

```
Formula   Σ(Outgoing tx values)
Unit      USD
Example   $800K (24H)
```

**Related** · Inflow, Net Flow

**Used in** · [`FFL`](/docs/docs/core-concepts/commands/by-object/wallet#ffl-fund-flows)

***

### Net Flow

Difference between inflows and outflows.

```
Formula   Inflow − Outflow
Unit      USD
Example   +$700K
```

**Related** · Inflow, Outflow

**Used in** · [`FFL`](/docs/docs/core-concepts/commands/by-object/wallet#ffl-fund-flows) · [`CWT`](/docs/docs/core-concepts/commands/by-object/token#cwt-cex-whale-tracker) · [`NEC`](/docs/docs/core-concepts/commands/by-object/network#nec-network-economics)

***

### Inflow Source Category

Classification of inflow origins (DEX, CEX, DeFi, Bridge, Wallet).

```
Unit      Category
Example   CEX: 45%, Bridge: 20%
```

**Related** · Inflow, Source Attribution

**Used in** · [`FFL`](/docs/docs/core-concepts/commands/by-object/wallet#ffl-fund-flows)

***

### Outflow Destination Category

Classification of outflow destinations (DEX, CEX, DeFi, Bridge, Wallet).

```
Unit      Category
Example   DeFi: 55%, CEX: 25%
```

**Related** · Outflow, Destination Attribution

**Used in** · [`FFL`](/docs/docs/core-concepts/commands/by-object/wallet#ffl-fund-flows)

***

### Wallet-to-Wallet Flow

Token transfer connections between identified wallets, surfacing relationships and flow patterns.

```
Formula   Graph of transfers between known addresses
Unit      Network / USD
Example   Wallet A → Wallet B: $2.5M (7D)
```

**Related** · Net Flow, Flow Source Category

**Used in** · [`DXT`](/docs/docs/core-concepts/commands/by-object/token#dxt-dex-trader-analysis) · [`FFL`](/docs/docs/core-concepts/commands/by-object/wallet#ffl-fund-flows)

***

### Fund Flow Transaction Count

Number of individual inflow or outflow transactions in a time period.

```
Formula   Count(inflow txns) or Count(outflow txns)
Unit      #
Example   Inflows: 245 txns (24H)
```

**Related** · Inflow, Outflow, Flow Size Distribution

**Used in** · [`FFL`](/docs/docs/core-concepts/commands/by-object/wallet#ffl-fund-flows)

***

### Fund Flow Size Distribution

Breakdown of fund flows by transaction value range.

```
Formula   Count per size bucket
Unit      % / #
Example   under $10K: 72%, $10K–$100K: 20%, >$100K: 8%
```

**Related** · Flow Count, Inflow, Outflow

**Used in** · [`FFL`](/docs/docs/core-concepts/commands/by-object/wallet#ffl-fund-flows)

***

### Cross-Chain Transaction

Token transfer between two different blockchain networks via a bridge.

```
Unit      Events / USD
Example   500 txns, $12M bridged
```

**Related** · Bridge, Liquidity Movement

**Used in** · [`MTM`](/docs/docs/core-concepts/commands/by-object/token#mtm-multichain-monitor)

***

### Liquidity Movement (Gross/Net)

Total cross-chain token flows: gross counts both directions, net shows the balance.

```
Formula   Gross: Inflow + Outflow; Net: Inflow − Outflow
Unit      USD
Example   Gross: $50M, Net: +$8M to Ethereum
```

**Related** · Cross-Chain Transaction

**Used in** · [`MTM`](/docs/docs/core-concepts/commands/by-object/token#mtm-multichain-monitor)

***

### Temporal Activity Pattern

Distribution of wallet transactions by hour-of-day and day-of-week.

```
Formula   Count(tx) per time bucket
Unit      # per bucket
Example   Peak: Tue 14:00 UTC
```

**Related** · Transaction Count, Activity Monitor

**Used in** · [`ACM`](/docs/docs/core-concepts/commands/by-object/wallet#acm-activity-monitor)

***

### Transaction Size Distribution

Breakdown of a wallet's transactions by value range.

```
Formula   Count per size bucket
Unit      % / #
Example   under $1K: 80%, >$100K: 2%
```

**Related** · Median Trade Size, Activity

**Used in** · [`ACM`](/docs/docs/core-concepts/commands/by-object/wallet#acm-activity-monitor)
