dome_wallet
Fetches wallet information by providing either an EOA (Externally Owned Account) address or a proxy wallet address. Returns the associated EOA, proxy, and wallet type. Optionally returns trading metrics including total volume, number of trades, and unique markets traded when with_metrics=true.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| eoa | No | EOA (Externally Owned Account) wallet address. Either eoa or proxy must be provided, but not both. | |
| proxy | No | Proxy wallet address. Either eoa or proxy must be provided, but not both. | |
| end_time | No | Optional end date for metrics calculation (Unix timestamp in seconds). Only used when with_metrics=true. | |
| start_time | No | Optional start date for metrics calculation (Unix timestamp in seconds). Only used when with_metrics=true. | |
| with_metrics | No | Whether to include wallet trading metrics (total volume, trades, and markets). Pass true to include metrics. Metrics are computed only when explicitly requested for performance reasons. |