Skip to content
Pim Feltkamp edited this page Apr 27, 2026 · 4 revisions

Cryptohopper CLI — Wiki

Welcome. This wiki hosts deeper-dive material for the official cryptohopper CLI that doesn't belong in the README: scripting recipes, troubleshooting, the public command reference. The same content also ships as docs/ in the main repo — wiki pages are kept in sync with each CLI release.

Quick links

  • Recipes — day-to-day workflows: most-active hopper, ticker watch, backtest poll, account switching, panic-stop, self-update.
  • Scripting — CI/automation guide. Auth from env vars, stable exit codes, jq recipes, pipelineable JSON output, destructive-command guardrails.
  • Troubleshooting — Login port conflicts, upgrade permission/checksum failures, UNAUTHORIZED vs FORBIDDEN diagnosis, shell completion install for bash/zsh/fish/PowerShell, terminals that mangle Unicode tables.
  • Comparison — same operations side-by-side across all 9 SDKs (Node, Python, Go, Ruby, Rust, PHP, Dart, Swift, CLI)

Public CLI reference

The full per-command reference (every subcommand, every flag, JSON output contract, exit-code table) lives at docs.cryptohopper.com and as docs/cli.md in the public resources repo.

Install

# Via npm (requires Node 20+)
npm install -g @cryptohopper/cli

# macOS (Apple Silicon)
curl -L https://github.com/cryptohopper/cryptohopper-cli/releases/latest/download/cryptohopper-darwin-arm64 \
     -o /usr/local/bin/cryptohopper && chmod +x /usr/local/bin/cryptohopper

Other platforms: see the latest release for binaries with SHA256 verification.

Other resources

Clone this wiki locally