Page cover

Wallet Management (CLI)

JuliaOS provides robust wallet integration features, allowing you to connect and manage wallets directly from the CLI.

Connecting a Wallet via CLI

Start the interactive CLI:

node scripts/interactive.cjs

Navigate the menu:

  • Select "💼 Wallet Management" -> "Connect Wallet"

  • Choose your wallet type (e.g., Metamask, Phantom, Rabby)

  • Follow the prompts to connect your wallet

Supported Wallets

  • Metamask (and other EVM-compatible browser wallets)

  • Phantom (for Solana)

  • Rabby (Multi-chain)

Key Security Notes

  • The CLI uses your existing wallet for signing transactions. Your private key never leaves your wallet.

  • Backend wallet management (for automated agents) is currently a mock implementation and not recommended for significant funds.

Example: Connecting and Using a Wallet

node scripts/interactive.cjs
# Follow the prompts to connect your wallet
# Use the menu to view balances, sign transactions, and manage accounts

For more details on wallet integration and advanced usage, see the Wallets documentation.