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

# Trader

A trader on the V2 leaderboard, including their profile, PnL breakdown by chain, and optionally their copytrade stats.

## Structure

```typescript theme={null}
{
  profile: ProfileExtended,    // Full profile with metrics
  pnl: {
    total: number,             // Combined PnL across selected chains
    perChain?: {               // Per-chain breakdown (optional, partial record)
      base?: number,
      solana?: number,
      ethereum?: number,
      hyperliquid?: number
    }
  },
  hasComments: boolean,        // Whether this trader has posted swap comments
  copytrades?: {               // Only present on /v2/leaderboard/copytraded
    count: number,             // Total copytrades of their comments
    distinctActors: number,    // Unique users who copied
    volumeUSD: number          // Total volume from copytrades
  }
}
```

## PnL Calculation

* `pnl.total` is calculated by summing `pnl.perChain` values for the chains requested in the query
* If no `chains` parameter is provided, all chains are included
* All values are 30-day realized PnL in USD
