Cross-Chain Net Worth
DeBank-style unified portfolio tracking across all chains.
Features
- Multi-Chain Aggregation - Track assets across 50+ EVM chains, Solana, Bitcoin, Cosmos
- Real-Time Valuation - Live portfolio value with 24h change tracking
- DeFi Position Tracking - Lending, borrowing, staking, LPs, yield farming
- NFT Portfolio - NFT holdings with floor price valuation
- Transaction History - Full history with gas fees and counterparties
- Profit & Loss - Realized/unrealized P&L per asset and position
- Liquidation Monitoring - Alerts when DeFi positions approach liquidation
- Gas Optimization - Track gas spent and suggest optimal transaction times
Supported Chains
- Ethereum, Arbitrum, Optimism, Base, Polygon, BNB Chain
- Avalanche, Fantom, Gnosis, zkSync, Linea, Scroll
- Solana, Bitcoin, Cosmos ecosystem
- 40+ additional EVM chains
Commands
kit networth # Total portfolio value
kit networth breakdown # By chain breakdown
kit networth defi # DeFi positions only
kit networth nft # NFT holdings
kit networth history # Historical value chart
kit networth export # Export to CSV/JSON
API Endpoints
GET /api/networth/total - Aggregate net worth
GET /api/networth/chains - Per-chain breakdown
GET /api/networth/defi - DeFi positions
GET /api/networth/nft - NFT holdings
GET /api/networth/history - Historical snapshots
GET /api/networth/pnl - Profit and loss
Configuration
networth:
wallets:
- "0x..." # Ethereum
- "5P..." # Solana
refresh_interval: 60s
track_nfts: true
track_defi: true
alert_on_liquidation: true
alert_threshold: 85%
Data Sources
- DeBank API
- Zapper API
- Direct RPC queries
- CoinGecko/CoinMarketCap for pricing
1---2name: cross-chain-networth3description: Cross-Chain Net Worth4---5# Cross-Chain Net Worth67DeBank-style unified portfolio tracking across all chains.89## Features1011- **Multi-Chain Aggregation** - Track assets across 50+ EVM chains, Solana, Bitcoin, Cosmos12- **Real-Time Valuation** - Live portfolio value with 24h change tracking13- **DeFi Position Tracking** - Lending, borrowing, staking, LPs, yield farming14- **NFT Portfolio** - NFT holdings with floor price valuation15- **Transaction History** - Full history with gas fees and counterparties16- **Profit & Loss** - Realized/unrealized P&L per asset and position17- **Liquidation Monitoring** - Alerts when DeFi positions approach liquidation18- **Gas Optimization** - Track gas spent and suggest optimal transaction times1920## Supported Chains2122- Ethereum, Arbitrum, Optimism, Base, Polygon, BNB Chain23- Avalanche, Fantom, Gnosis, zkSync, Linea, Scroll24- Solana, Bitcoin, Cosmos ecosystem25- 40+ additional EVM chains2627## Commands2829```30kit networth # Total portfolio value31kit networth breakdown # By chain breakdown32kit networth defi # DeFi positions only33kit networth nft # NFT holdings34kit networth history # Historical value chart35kit networth export # Export to CSV/JSON36```3738## API Endpoints3940- `GET /api/networth/total` - Aggregate net worth41- `GET /api/networth/chains` - Per-chain breakdown42- `GET /api/networth/defi` - DeFi positions43- `GET /api/networth/nft` - NFT holdings44- `GET /api/networth/history` - Historical snapshots45- `GET /api/networth/pnl` - Profit and loss4647## Configuration4849```yaml50networth:51 wallets:52 - "0x..." # Ethereum53 - "5P..." # Solana54 refresh_interval: 60s55 track_nfts: true56 track_defi: true57 alert_on_liquidation: true58 alert_threshold: 85%59```6061## Data Sources6263- DeBank API64- Zapper API65- Direct RPC queries66- CoinGecko/CoinMarketCap for pricing