Skip to content

bullpen solana cancel-all-orders

Last updated: July 13, 2026

Cancel all active Jupiter Trigger limit orders

Usage

bullpen solana cancel-all-orders [OPTIONS]

Live Help

Cancel all active Jupiter Trigger limit orders

Usage: bullpen solana cancel-all-orders [OPTIONS]

Options:
      --mint <MINT>
          Cancel only active orders involving this SPL token mint

      --output <OUTPUT>
          Output format for command results

          [possible values: table, json]

      --env <ENV>
          Target environment to connect to (overrides config.toml)

          [env: BULLPEN_ENV=]
          [possible values: staging, production]

      --yes
          Skip confirmation prompt

      --config <CONFIG>
          Path to a custom config.toml file (overrides $BULLPEN_CONFIG and the default location).

          Explicit --config and BULLPEN_CONFIG paths fail closed: if the file is missing, the CLI exits validation instead of silently loading defaults. Credentials still resolve via BULLPEN_HOME, so set BULLPEN_HOME too when isolating a session.

      --preview
          Show matching order keys and cancel batches without signing or submitting

      --read-only
          Enable read-only mode: blocks all mutating commands

      --non-interactive
          Suppress interactive prompts; does NOT imply --yes for money-moving commands

          [env: BULLPEN_NON_INTERACTIVE=]

  -h, --help
          Print help (see a summary with '-h')

EXAMPLES:
  # Review active Trigger orders before canceling
  bullpen solana orders --status active

  # Preview canceling active Trigger orders for one mint
  bullpen solana cancel-all-orders --mint DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 --preview

  # Export the filtered cancel-all preview as JSON
  bullpen solana cancel-all-orders --mint DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 --preview --output json

Example Commands

bullpen solana orders --status active
bullpen solana cancel-all-orders --mint DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 --preview
bullpen solana cancel-all-orders --mint DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 --preview --output json

JSON Output

Contract: JSON Output Contract.

Preview (--preview --output json)

Preview output is a single JSON document emitted only when --preview --output json is passed. Live submit output uses the corresponding Solana Trigger mutation-report schema instead.

Schema version: 1 when a command emits schema_version; otherwise treat the current command shape as contract version 1.

Top-level Keys

key type nullable notes
action string no cancel_all_limit_orders for previews
maker string no Bullpen Solana wallet used as maker
mint string yes Optional mint filter
orders array no Active order keys matched before signing
batches array no Explicit cancelOrders request batches; live success reports submitted transactions

Example

bullpen solana cancel-all-orders --mint DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 --preview --output json
{
  "action": "cancel_all_limit_orders",
  "maker": "7qRkWTrM4DLpmeSnB8xT8p8mpqLQ9JdYatYczS4u1G8e",
  "mint": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263",
  "orders": [
    "7nE9GJoYHNmtaQvTQpota3KV2oz4pQ2dA6nvYK8EUJHV"
  ],
  "batches": [
    {
      "maker": "7qRkWTrM4DLpmeSnB8xT8p8mpqLQ9JdYatYczS4u1G8e",
      "orders": [
        "7nE9GJoYHNmtaQvTQpota3KV2oz4pQ2dA6nvYK8EUJHV"
      ]
    }
  ]
}

Stability

Patch releases may add nullable or optional fields. Minor releases may add required fields or increment schema_version. Major releases may remove or rename fields.

Solana Trigger Notes

  • --preview builds the cancel request without Turnkey signing, Jupiter cancel mutation endpoints, or TxService.SubmitV4 submission.
  • Live cancel builds unsigned cancel transactions with Jupiter Trigger, signs with the Bullpen Solana wallet, and submits through Bullpen TxService.SubmitV4 after confirmation.
  • After a live cancel, run bullpen solana balance --refresh --output json before relying on returned funds. Plain balance can briefly show cached balances while Jupiter and Bullpen indexing catch up.
  • Cancel commands do not run JupiterShield and do not expose --skip-shield-check or --slippage-bps.