Install
openclaw skills install wallet-overviewCheck wallet balances, token holdings, and transaction history across all supported chains. Use when you or the user want to see their balance, check holding...
openclaw skills install wallet-overviewView wallet balances, token holdings, and transaction history across all supported EVM chains and Solana.
fdx status
If the wallet is not authenticated, refer to the authenticate skill.
fdx call getMyInfo
Returns the authenticated user's profile and wallet details.
# All chains — full portfolio overview
fdx call getWalletOverview
# Specific chain
fdx call getWalletOverview --chainKey ethereum
# Specific account on a chain
fdx call getWalletOverview --chainKey ethereum --accountAddress 0x1234...abcd
Returns token balances, holdings, and wallet addresses for the specified scope.
# Recent activity across all chains
fdx call getAccountActivity
# Specific chain
fdx call getAccountActivity --chainKey ethereum
# Specific account with pagination
fdx call getAccountActivity --chainKey ethereum --accountAddress 0x1234...abcd --limit 20 --offset 0
| Parameter | Required | Description |
|---|---|---|
--chainKey | No | Filter by chain (e.g. ethereum, polygon, arbitrum, base, solana) |
--accountAddress | No | Filter by specific account address |
| Parameter | Required | Description |
|---|---|---|
--chainKey | No | Filter by chain |
--accountAddress | No | Filter by specific account address |
--limit | No | Number of transactions to return |
--offset | No | Pagination offset |
The Finance District wallet supports all EVM-compatible chains and Solana. Common chain keys include:
| Chain Key | Network |
|---|---|
ethereum | Ethereum mainnet |
polygon | Polygon |
arbitrum | Arbitrum One |
base | Base |
optimism | Optimism |
avalanche | Avalanche C-Chain |
bsc | BNB Smart Chain |
solana | Solana |
# Check auth
fdx status
# See who I am
fdx call getMyInfo
# Check full portfolio
fdx call getWalletOverview
# Drill into Ethereum holdings
fdx call getWalletOverview --chainKey ethereum
# See recent Ethereum transactions
fdx call getAccountActivity --chainKey ethereum --limit 10
fdx status to check, see authenticate skill)fdx setup first, or see authenticate skillfdx setup to re-authenticate