Windows CI / windows ([bun run --cwd packages/app-core test bun run --cwd packages/elizaos test bun run --cwd packages/cloud/shared test], app-and-cli) (push) Waiting to run
Windows CI / windows ([bun run --cwd packages/scenario-runner test bun run --cwd packages/vault test bun run --cwd packages/security test bun run --cwd plugins/plugin-coding-tools test], framework-packages) (push) Waiting to run
Windows CI / windows ([bun run --cwd plugins/plugin-elizacloud test bun run --cwd plugins/plugin-discord test bun run --cwd plugins/plugin-anthropic test bun run --cwd plugins/plugin-openai test bun run --cwd plugins/plugin-app-control test bun run --cwd plugins/pl… (push) Waiting to run
Windows CI / windows ([node packages/scripts/run-turbo.mjs run build --filter=@elizaos/core --filter=@elizaos/shared --filter=@elizaos/agent --concurrency=4 node packages/scripts/run-bash-linux-only.mjs scripts/verify-riscv64-buildpaths.sh node packages/scripts/run… (push) Waiting to run
Windows CI / windows ([node packages/scripts/run-turbo.mjs run typecheck --filter=@elizaos/core --filter=@elizaos/shared --filter=@elizaos/cloud-shared --concurrency=4 bun run --cwd packages/core test bun run --cwd packages/shared test], core-runtime, 75) (push) Waiting to run
Non-custodial wallet inventory UI for elizaOS agents. Adds a full wallet surface — token balances, NFTs, market overview, trading analytics, and a compact chat-sidebar widget — to any agent shell that loads this plugin.
What it does
Displays EVM (Ethereum, Base, BNB Chain, Avalanche, Arbitrum, Optimism, Polygon) and Solana token balances and NFTs.
Shows portfolio value, per-chain allocation, P&L chart, recent swaps, and top movers from the agent's trading profile.
Renders a market overview (spot prices, top movers, prediction market data) when the wallet has no balance history yet.
Provides a compact wallet-status sidebar widget in the chat rail with live balance totals and one-click address copy.
Serves the inventory as a dashboard GUI view while keeping the standard view contract available for future adapters.
Capabilities added
Surface
Description
Shell page /inventory
Full wallet inventory page registered in the agent shell nav
Standalone view /wallet
Bundled InventoryView loadable by the view manager
GUI view /wallet
Bundled InventoryView
Chat sidebar widget
wallet.status — compact balance summary with chain badges and address copy
No new elizaOS actions, providers, or server-side services are added. All data is fetched from @elizaos/plugin-wallet through the shared client API.
Requirements
@elizaos/plugin-wallet must be loaded — this plugin reads wallet data via the wallet API.
@elizaos/app-core peer dep for shell page and widget registration.
React 18 or later.
Enabling the plugin
Import the side-effect module once at app boot so shell pages and widgets are registered before the shell mounts:
import"@elizaos/plugin-wallet-ui/ui";// or import the walletAppPlugin descriptor for custom registration:
import{walletAppPlugin}from"@elizaos/plugin-wallet-ui";
Pass walletAppPlugin to your elizaOS plugin loader if your shell uses the plugin registry.
Additional chains (URL/config helpers only, no filter toggle):
Arbitrum, Optimism, Polygon
Configuration
No environment variables are required. Wallet RPC provider selection (Eliza Cloud, Alchemy, QuickNode, Helius/Birdeye, or Custom) is managed by @elizaos/plugin-wallet and surfaced via the in-app RPC settings button.
User preferences (hidden tokens, sidebar width) are stored in localStorage with eliza:wallet:* key prefixes.
Building
bun run --cwd plugins/plugin-wallet-ui build
This runs three steps: tsup for the plugin entry, vite for the standalone views bundle (dist/views/bundle.js), and tsc for type declarations. Both the tsup and vite outputs must be present for a complete distribution.