Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
6551team avatar

Opentrade Portfolio

  • 280 installs
  • 6 repo stars
  • Updated August 2, 2026
  • 6551team/opentrade

opentrade-portfolio is an OpenTrade CLI Agent Skill that aggregates multi-chain wallet balances, total USD value, and token holdings via four opentrade portfolio commands for developers and agents who need live portfolio

About

opentrade-portfolio is a 6551team OpenTrade Agent Skill (metadata version 1.0.1) that wraps four CLI commands—portfolio chains, total-value, all-balances, and token-balances—for wallets on XLayer, Solana, Ethereum, Base, BSC, Arbitrum, Polygon, and 20+ other chains. The skill runs pre-flight install and 12-hour update checks on the opentrade binary, loads OPEN_TOKEN from .env, discovers trading routers with --trader and --api flags, and formats USD totals plus per-token UI balances. It routes natural-language requests like check my wallet balance or show token holdings, then hands off to opentrade-market or opentrade-dex-swap for charts or swaps. opentrade-portfolio is not for building balance APIs—only live CLI queries. With 249 catalog installs, it targets DeFi developers and trading agents monitoring real holdings.

  • Cross-venue balance aggregation
  • Position and PnL tracking patterns
  • Risk and exposure summaries
  • Reconciliation across CEX and DEX data
  • Supports portfolio dashboards and agents

Opentrade Portfolio by the numbers

  • 280 all-time installs (skills.sh)
  • Ranked #343 of 1,106 Finance & Trading skills by installs in the Skillselion catalog
  • Data as of Aug 3, 2026 (Skillselion catalog sync)
npx skills add https://github.com/6551team/opentrade --skill opentrade-portfolio

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs280
repo stars6
Last updatedAugust 2, 2026
Repository6551team/opentrade

How do you check multi-chain wallet balances?

Aggregate positions, balances, PnL, and exposure across venues so users and agents can monitor holdings and rebalance.

Who is it for?

Developers and agents monitoring live crypto wallet totals and token holdings across EVM and Solana chains via the OpenTrade CLI.

Skip if: Engineers implementing custom balance-fetch APIs or learning how to code ERC-20 balance variables without the opentrade binary.

When should I use this skill?

The user asks to check wallet balance, portfolio value, token holdings, or multi-chain assets using OpenTrade or opentrade commands.

What you get

CLI JSON with totalValue USD, tokenAssets arrays, and per-chain balance breakdowns ready for display or pre-swap validation.

  • USD totalValue summary
  • tokenAssets balance tables

By the numbers

  • 4 documented opentrade portfolio CLI commands
  • Supports 20+ blockchain networks for balance queries
  • Allows up to 50 chains per all-balances request

Files

SKILL.mdMarkdownGitHub ↗

OpenTrade Wallet Portfolio CLI

4 commands for supported chains, wallet total value, all token balances, and specific token balances.

Pre-flight Checks

Every time before running any opentrade command, always follow these steps in order. Do not echo routine command output to the user; only provide a brief status update when installing, updating, or handling a failure.

1. Confirm installed: Run which opentrade. If not found, install it:

   curl -sSL https://raw.githubusercontent.com/6551Team/openskills/main/skills/opentrade/install.sh | sh

If the install script fails, ask the user to install manually following the instructions at: https://github.com/6551Team/openskills

2. Check for updates: Read ~/.opentrade/last_check and compare it with the current timestamp:

   cached_ts=$(cat ~/.opentrade/last_check 2>/dev/null || true)
   now=$(date +%s)
  • If cached_ts is non-empty and (now - cached_ts) < 43200 (12 hours), skip the update and proceed.
  • Otherwise (file missing or older than 12 hours), run the installer to check for updates:
     curl -sSL https://raw.githubusercontent.com/6551Team/openskills/main/skills/opentrade/install.sh | sh

If a newer version is installed, tell the user and suggest updating their opentrade skills from https://github.com/6551Team/openskills to get the latest features. 3. If any opentrade command fails with an unexpected error during this session, try reinstalling before giving up:

   curl -sSL https://raw.githubusercontent.com/6551Team/openskills/main/skills/opentrade/install.sh | sh

4. Find or create a .env file in the project root to override the default API credentials, Load it before performing opentrade operations.

  OPEN_TOKEN=your_token_here

Get your API token at: https://www.newsliquid.com/mcp

Security warning: Never commit .env to git (add it to .gitignore) and never expose credentials in logs, screenshots, or chat messages.

Router Discovery

IMPORTANT: If the user has not specified a trading router, you MUST first discover available routers:

opentrade trade routers

Response format:

{
  "ok": true,
  "data": [
    {
      "api": "v2",
      "created_at": "2026-03-10 01:15:42",
      "is_active": true,
      "name": "6551dex test",
      "quota_reward": 0,
      "trader": "6551dex",
      "updated_at": "2026-03-10 01:15:42"
    },
    {
      "api": "v1",
      "created_at": "2026-03-03 21:24:34",
      "is_active": true,
      "name": "okx test",
      "quota_reward": 0,
      "trader": "okx",
      "updated_at": "2026-03-03 21:24:34"
    }
  ]
}

Usage:

  • Extract trader and api from the response
  • MANDATORY: ALL subsequent opentrade commands in this session MUST include --trader <trader> and --api <api> flags
  • Example: opentrade portfolio balance 0x... --chain ethereum --trader okx --api v1
  • Default fallback: If the API returns no data or is empty, use --trader okx --api v1

Skill Routing

  • For token prices / K-lines → use opentrade-market
  • For token search / metadata → use opentrade-token
  • For swap execution → use opentrade-dex-swap
  • For transaction broadcasting → use opentrade-gateway

Quickstart

# Get supported chains for balance queries
opentrade portfolio chains

# Get total asset value on XLayer and Solana
opentrade portfolio total-value --address 0xYourWallet --chains "xlayer,solana"

# Get all token balances
opentrade portfolio all-balances --address 0xYourWallet --chains "xlayer,solana,ethereum"

# Check specific tokens (native OKB + USDC on XLayer)
opentrade portfolio token-balances --address 0xYourWallet --tokens "196:,196:0x74b7f16337b8972027f6196a17a631ac6de26d22"

Chain Name Support

The CLI accepts human-readable chain names and resolves them automatically.

ChainNamechainIndex
XLayerxlayer196
Solanasolana501
Ethereumethereum1
Basebase8453
BSCbsc56
Arbitrumarbitrum42161

Address format note: EVM addresses (0x...) work across Ethereum/BSC/Polygon/Arbitrum/Base etc. Solana addresses (Base58) and Bitcoin addresses (UTXO) have different formats. Do NOT mix formats across chain types.

Command Index

#CommandDescription
1opentrade portfolio chainsGet supported chains for balance queries
2opentrade portfolio total-value --address ... --chains ...Get total asset value for a wallet
3opentrade portfolio all-balances --address ... --chains ...Get all token balances for a wallet
4opentrade portfolio token-balances --address ... --tokens ...Get specific token balances

Cross-Skill Workflows

This skill is often used before swap (to verify sufficient balance) or as portfolio entry point.

Workflow A: Pre-Swap Balance Check

User: "Swap 1 SOL for BONK"
1. opentrade-token    opentrade token search BONK --chains solana               → get tokenContractAddress
       ↓ tokenContractAddress
2. opentrade-portfolio  opentrade portfolio all-balances --address <addr> --chains solana
       → verify SOL balance >= 1
       ↓ balance field (UI units) → convert to minimal units for swap
3. opentrade-dex-swap     opentrade swap quote --from 11111111111111111111111111111111 --to <BONK_address> --amount 1000000000 --chain solana
4. opentrade-dex-swap     opentrade swap swap --from ... --to <BONK_address> --amount 1000000000 --chain solana --wallet <addr>

Data handoff:

  • tokenContractAddress from token search → feeds into swap --from / --to
  • balance from portfolio is UI units; swap needs minimal units → multiply by 10^decimal
  • If balance < required amount → inform user, do NOT proceed to swap

Workflow B: Portfolio Overview + Analysis

User: "Show my portfolio"
1. opentrade-portfolio  opentrade portfolio total-value --address <addr> --chains "xlayer,solana,ethereum"
       → total USD value
2. opentrade-portfolio  opentrade portfolio all-balances --address <addr> --chains "xlayer,solana,ethereum"
       → per-token breakdown
       ↓ top holdings by USD value
3. opentrade-token    opentrade token price-info <address> --chain <chain>  → enrich with 24h change, market cap
4. opentrade-market   opentrade market kline <address> --chain <chain>      → price charts for tokens of interest

Workflow C: Sell Underperforming Tokens

1. opentrade-portfolio  opentrade portfolio all-balances --address <addr> --chains "xlayer,solana,ethereum"
       → list all holdings
       ↓ tokenContractAddress + chainIndex for each
2. opentrade-token    opentrade token price-info <address> --chain <chain>  → get priceChange24H per token
3. Filter by negative change → user confirms which to sell
4. opentrade-dex-swap     opentrade swap quote → opentrade swap swap → execute sell

Key conversion: balance (UI units) × 10^decimal = amount (minimal units) for swap.

Operation Flow

Step 1: Identify Intent

  • Check total assets → opentrade portfolio total-value
  • View all token holdings → opentrade portfolio all-balances
  • Check specific token balance → opentrade portfolio token-balances
  • Unsure which chains are supported → opentrade portfolio chains first

Step 2: Collect Parameters

  • Missing wallet address → ask user
  • Missing target chains → recommend XLayer (--chains xlayer, low gas, fast confirmation) as the default, then ask which chain the user prefers. Common set: "xlayer,solana,ethereum,base,bsc"
  • Need to filter risky tokens → set --exclude-risk 0 (only works on ETH/BSC/SOL/BASE)

Step 3: Call and Display

  • Total value: display USD amount
  • Token balances: show token name, amount (UI units), USD value
  • Sort by USD value descending

Step 4: Suggest Next Steps

After displaying results, suggest 2-3 relevant follow-up actions:

Just completedSuggest
portfolio total-value1. View token-level breakdown → opentrade portfolio all-balances (this skill) 2. Check price trend for top holdings → opentrade-market
portfolio all-balances1. View detailed analytics (market cap, 24h change) for a token → opentrade-token 2. Swap a token → opentrade-dex-swap 3. View price chart for a token → opentrade-market
portfolio token-balances1. View full portfolio across all tokens → opentrade portfolio all-balances (this skill) 2. Swap this token → opentrade-dex-swap

Present conversationally, e.g.: "Would you like to see the price chart for your top holding, or swap any of these tokens?" — never expose skill names or endpoint paths to the user.

CLI Command Reference

1. opentrade portfolio chains

Get supported chains for balance queries. No parameters required.

opentrade portfolio chains

Return fields:

FieldTypeDescription
nameStringChain name (e.g., "XLayer")
logoUrlStringChain logo URL
shortNameStringChain short name (e.g., "OKB")
chainIndexStringChain unique identifier (e.g., "196")

2. opentrade portfolio total-value

Get total asset value for a wallet address.

opentrade portfolio total-value --address <address> --chains <chains> [--asset-type <type>] [--exclude-risk <bool>]
ParamRequiredDefaultDescription
--addressYes-Wallet address
--chainsYes-Chain names or IDs, comma-separated (e.g., "xlayer,solana" or "196,501")
--asset-typeNo"0"0=all, 1=tokens only, 2=DeFi only
--exclude-riskNotruetrue=filter risky tokens, false=include. Only ETH/BSC/SOL/BASE

Return fields:

FieldTypeDescription
totalValueStringTotal asset value in USD

3. opentrade portfolio all-balances

Get all token balances for a wallet address.

opentrade portfolio all-balances --address <address> --chains <chains> [--exclude-risk <value>]
ParamRequiredDefaultDescription
--addressYes-Wallet address
--chainsYes-Chain names or IDs, comma-separated, max 50
--exclude-riskNo"0"0=filter out risky tokens (default), 1=include. Only ETH/BSC/SOL/BASE

Return fields (per token in tokenAssets[]):

FieldTypeDescription
chainIndexStringChain identifier
tokenContractAddressStringToken contract address
symbolStringToken symbol (e.g., "OKB")
balanceStringToken balance in UI units (e.g., "10.5")
rawBalanceStringToken balance in base units (e.g., "10500000000000000000")
tokenPriceStringToken price in USD
isRiskTokenBooleantrue if flagged as risky

4. opentrade portfolio token-balances

Get specific token balances for a wallet address.

opentrade portfolio token-balances --address <address> --tokens <tokens> [--exclude-risk <value>]
ParamRequiredDefaultDescription
--addressYes-Wallet address
--tokensYes-Token list: "chainIndex:tokenAddress" pairs, comma-separated. Use empty address for native token (e.g., "196:" for native OKB). Max 20 items.
--exclude-riskNo"0"0=filter out (default), 1=include

Return fields: Same schema as all-balances (tokenAssets[]).

Input / Output Examples

User says: "Check my wallet total assets on XLayer and Solana"

opentrade portfolio total-value --address 0xYourWallet --chains "xlayer,solana"
# → Display: Total assets $12,345.67

User says: "Show all tokens in my wallet"

opentrade portfolio all-balances --address 0xYourWallet --chains "xlayer,solana,ethereum"
# → Display:
#   OKB:  10.5 ($509.25)
#   USDC: 2,000 ($2,000.00)
#   USDT: 1,500 ($1,500.00)
#   ...

User says: "Only check USDC and native OKB balances on XLayer"

opentrade portfolio token-balances --address 0xYourWallet --tokens "196:,196:0x74b7f16337b8972027f6196a17a631ac6de26d22"
# → Display: OKB: 10.5 ($509.25), USDC: 2,000 ($2,000.00)

Edge Cases

  • Zero balance: valid state — display $0.00, not an error
  • Unsupported chain: call opentrade portfolio chains first to confirm
  • chains exceeds 50: split into batches, max 50 per request
  • `--exclude-risk` not working: only supported on ETH/BSC/SOL/BASE
  • DeFi positions: use --asset-type 2 to query DeFi holdings separately
  • Address format mismatch: EVM address on Solana chain will return empty data — do NOT mix
  • Network error: retry once, then prompt user to try again later
  • Region restriction (error code 50125 or 80001): do NOT show the raw error code to the user. Instead, display a friendly message: ⚠️ Service is not available in your region. Please switch to a supported region and try again.

Amount Display Rules

  • Token amounts in UI units (1.5 ETH), never base units (1500000000000000000)
  • USD values with 2 decimal places
  • Large amounts in shorthand ($1.2M)
  • Sort by USD value descending

Global Notes

  • --chains supports up to 50 chain IDs (comma-separated, names or numeric)
  • --asset-type: 0=all 1=tokens only 2=DeFi only (only for total-value)
  • --exclude-risk only works on ETH(1)/BSC(56)/SOL(501)/BASE(8453)
  • token-balances supports max 20 token entries
  • The CLI resolves chain names automatically (e.g., ethereum1, solana501)
  • The CLI handles authentication internally via environment variables — see Prerequisites step 4 for default values

Related skills

How it compares

Pick opentrade-portfolio over generic Web3 skills when the OpenTrade CLI is installed and agents need live multi-chain balance reads before trading workflows.

FAQ

Which chains does opentrade-portfolio support?

opentrade-portfolio supports XLayer, Solana, Ethereum, Base, BSC, Arbitrum, Polygon, and 20+ additional chains via human-readable names or chainIndex values resolved by the opentrade CLI.

What commands does opentrade-portfolio include?

opentrade-portfolio documents four commands: portfolio chains, portfolio total-value, portfolio all-balances, and portfolio token-balances, each returning JSON for agent-friendly portfolio summaries.

Does opentrade-portfolio execute swaps?

No. opentrade-portfolio only reads balances and USD totals. Swap quotes and execution route to the opentrade-dex-swap skill after portfolio commands confirm sufficient UI-unit balances.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.