clawncher 0.1.7 → 0.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +72 -0
- package/dist/cli.js +1868 -4
- package/dist/cli.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -505,6 +505,78 @@ clawncher deploy-verified --api-key YOUR_API_KEY --name "My Token" --symbol MYTK
|
|
|
505
505
|
| `--no-vanity` | Disable vanity address |
|
|
506
506
|
| `--json` | JSON output |
|
|
507
507
|
|
|
508
|
+
## Hummingbot Market Making
|
|
509
|
+
|
|
510
|
+
Operate a Hummingbot API server directly from the CLI. All commands are under `clawncher hummingbot` (alias: `clawncher hb`).
|
|
511
|
+
|
|
512
|
+
Requires a running [Hummingbot API server](https://github.com/hummingbot/hummingbot-api).
|
|
513
|
+
|
|
514
|
+
```bash
|
|
515
|
+
# Connection health
|
|
516
|
+
clawncher hb status
|
|
517
|
+
|
|
518
|
+
# Portfolio across all exchanges
|
|
519
|
+
clawncher hb portfolio
|
|
520
|
+
|
|
521
|
+
# Connectors
|
|
522
|
+
clawncher hb connector # List connected exchanges
|
|
523
|
+
clawncher hb connector --setup # Add a new connector
|
|
524
|
+
|
|
525
|
+
# Orders
|
|
526
|
+
clawncher hb order place --connector binance --pair ETH-USDT --side BUY --amount 0.1 --type MARKET
|
|
527
|
+
clawncher hb order leverage --connector binance_perpetual --pair ETH-USDT --leverage 10
|
|
528
|
+
|
|
529
|
+
# Executors (grid, DCA, position, single-order)
|
|
530
|
+
clawncher hb executor create --type grid_executor --connector binance --pair ETH-USDT ...
|
|
531
|
+
clawncher hb executor list --connector binance --pair ETH-USDT
|
|
532
|
+
clawncher hb executor stop --id exec_123
|
|
533
|
+
clawncher hb executor logs --id exec_123
|
|
534
|
+
clawncher hb executor positions
|
|
535
|
+
clawncher hb executor types
|
|
536
|
+
clawncher hb executor summary
|
|
537
|
+
clawncher hb executor clear-position --connector binance --pair ETH-USDT
|
|
538
|
+
|
|
539
|
+
# Market data
|
|
540
|
+
clawncher hb market prices --connector binance --pair ETH-USDT
|
|
541
|
+
clawncher hb market candles --connector binance --pair ETH-USDT --interval 1h
|
|
542
|
+
clawncher hb market funding --connector binance_perpetual --pair ETH-USDT
|
|
543
|
+
clawncher hb market orderbook --connector binance --pair ETH-USDT
|
|
544
|
+
|
|
545
|
+
# Controllers
|
|
546
|
+
clawncher hb controller list
|
|
547
|
+
clawncher hb controller describe --id my_controller
|
|
548
|
+
clawncher hb controller upsert --id my_controller --type market_making ...
|
|
549
|
+
clawncher hb controller delete --id my_controller
|
|
550
|
+
|
|
551
|
+
# Bots
|
|
552
|
+
clawncher hb bot deploy --controllers mm_eth --connector binance
|
|
553
|
+
clawncher hb bot list
|
|
554
|
+
clawncher hb bot logs --id bot_123
|
|
555
|
+
clawncher hb bot stop --id bot_123
|
|
556
|
+
clawncher hb bot controllers --action start # or stop
|
|
557
|
+
|
|
558
|
+
# Gateway (DEX)
|
|
559
|
+
clawncher hb gateway container # Status, start, stop, logs
|
|
560
|
+
clawncher hb gateway config # Chains, networks, tokens, wallets
|
|
561
|
+
clawncher hb gateway swap # DEX swap quotes and execution
|
|
562
|
+
clawncher hb gateway clmm # Concentrated liquidity management
|
|
563
|
+
|
|
564
|
+
# History and templates
|
|
565
|
+
clawncher hb history
|
|
566
|
+
clawncher hb templates
|
|
567
|
+
|
|
568
|
+
# Multi-server
|
|
569
|
+
clawncher hb servers
|
|
570
|
+
```
|
|
571
|
+
|
|
572
|
+
### Hummingbot Environment Variables
|
|
573
|
+
|
|
574
|
+
| Variable | Default | Description |
|
|
575
|
+
|----------|---------|-------------|
|
|
576
|
+
| `HUMMINGBOT_API_URL` | `http://localhost:8000` | Hummingbot API server URL |
|
|
577
|
+
| `HUMMINGBOT_USERNAME` | `admin` | HTTP Basic Auth username |
|
|
578
|
+
| `HUMMINGBOT_PASSWORD` | `admin` | HTTP Basic Auth password |
|
|
579
|
+
|
|
508
580
|
## Environment Variables
|
|
509
581
|
|
|
510
582
|
- `CLAWNCHER_PRIVATE_KEY` - Private key for deployments
|