Wallet Overview & Activity
View wallet balances, token holdings, and transaction history across all supported EVM chains and Solana.
Confirm wallet is authenticated
CODEBLOCK0
If the wallet is not authenticated, refer to the authenticate skill.
Getting Wallet Information
User profile and wallet identity
CODEBLOCK1
Returns the authenticated user's profile and wallet details.
Wallet balances and holdings
CODEBLOCK2
Returns token balances, holdings, and wallet addresses for the specified scope.
Transaction history
CODEBLOCK3
Parameters
getWalletOverview
| Parameter | Required | Description |
|---|
| INLINECODE1 | No | Filter by chain (e.g. ethereum, polygon, arbitrum, base, solana) |
| INLINECODE7 |
No | Filter by specific account address |
getAccountActivity
| Parameter | Required | Description |
|---|
| INLINECODE8 | No | Filter by chain |
| INLINECODE9 |
No | Filter by specific account address |
|
--limit | No | Number of transactions to return |
|
--offset | No | Pagination offset |
Supported Chains
The Finance District wallet supports all EVM-compatible chains and Solana. Common chain keys include:
| Chain Key | Network |
|---|
| INLINECODE12 | Ethereum mainnet |
| INLINECODE13 |
Polygon |
|
arbitrum | Arbitrum One |
|
base | Base |
|
optimism | Optimism |
|
avalanche | Avalanche C-Chain |
|
bsc | BNB Smart Chain |
|
solana | Solana |
Example Session
CODEBLOCK4
Prerequisites
- - Must be authenticated (
fdx status to check, see authenticate skill)
Error Handling
- - "Not authenticated" — Run
fdx setup first, or see authenticate skill - "AUTHREFRESHFAILED" — Token expired; run
fdx setup to re-authenticate
钱包概览与活动
查看所有支持的EVM链和Solana上的钱包余额、代币持仓和交易历史。
确认钱包已认证
bash
fdx status
如果钱包未认证,请参考authenticate技能。
获取钱包信息
用户资料与钱包身份
bash
fdx call getMyInfo
返回已认证用户的资料和钱包详情。
钱包余额与持仓
bash
所有链 — 完整投资组合概览
fdx call getWalletOverview
特定链
fdx call getWalletOverview --chainKey ethereum
链上特定账户
fdx call getWalletOverview --chainKey ethereum --accountAddress 0x1234...abcd
返回指定范围内的代币余额、持仓和钱包地址。
交易历史
bash
所有链的近期活动
fdx call getAccountActivity
特定链
fdx call getAccountActivity --chainKey ethereum
带分页的特定账户
fdx call getAccountActivity --chainKey ethereum --accountAddress 0x1234...abcd --limit 20 --offset 0
参数说明
getWalletOverview
| 参数 | 必填 | 描述 |
|---|
| --chainKey | 否 | 按链筛选(例如 ethereum、polygon、arbitrum、base、solana) |
| --accountAddress |
否 | 按特定账户地址筛选 |
getAccountActivity
| 参数 | 必填 | 描述 |
|---|
| --chainKey | 否 | 按链筛选 |
| --accountAddress |
否 | 按特定账户地址筛选 |
| --limit | 否 | 返回的交易数量 |
| --offset | 否 | 分页偏移量 |
支持的链
Finance District钱包支持所有EVM兼容链和Solana。常用链键包括:
Polygon |
| arbitrum | Arbitrum One |
| base | Base |
| optimism | Optimism |
| avalanche | Avalanche C-Chain |
| bsc | BNB智能链 |
| solana | Solana |
示例会话
bash
检查认证状态
fdx status
查看我的身份
fdx call getMyInfo
查看完整投资组合
fdx call getWalletOverview
深入查看以太坊持仓
fdx call getWalletOverview --chainKey ethereum
查看近期以太坊交易
fdx call getAccountActivity --chainKey ethereum --limit 10
前置条件
- - 必须已认证(使用fdx status检查,参见authenticate技能)
错误处理
- - Not authenticated — 先运行fdx setup,或参见authenticate技能
- AUTHREFRESHFAILED — 令牌已过期;运行fdx setup重新认证