Skip to content

bullpen solana cancel-order

Last updated: July 13, 2026

Cancel a single Jupiter Trigger limit order

Usage

bullpen solana cancel-order [OPTIONS] <ORDER_KEY>

Live Help

Cancel a single Jupiter Trigger limit order

Usage: bullpen solana cancel-order [OPTIONS] <ORDER_KEY>

Arguments:
  <ORDER_KEY>
          Jupiter Trigger order account/key to cancel

Options:
      --output <OUTPUT>
          Output format for command results

          [possible values: table, json]

      --yes
          Skip confirmation prompt

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

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

      --preview
          Show the cancel request without signing or submitting

      --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.

      --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 one Trigger cancel without signing or submitting
  bullpen solana cancel-order 7nE9GJoYHNmtaQvTQpota3KV2oz4pQ2dA6nvYK8EUJHV --preview

  # Export the cancel preview as JSON
  bullpen solana cancel-order 7nE9GJoYHNmtaQvTQpota3KV2oz4pQ2dA6nvYK8EUJHV --preview --output json

Example Commands

bullpen solana orders --status active
bullpen solana cancel-order 7nE9GJoYHNmtaQvTQpota3KV2oz4pQ2dA6nvYK8EUJHV --preview
bullpen solana cancel-order 7nE9GJoYHNmtaQvTQpota3KV2oz4pQ2dA6nvYK8EUJHV --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_limit_order for previews
order string no Jupiter Trigger order key to cancel
maker string no Bullpen Solana wallet used as maker
request object no Jupiter Trigger cancelOrder request preview; live success adds signature and receipt fields

Example

bullpen solana cancel-order 7nE9GJoYHNmtaQvTQpota3KV2oz4pQ2dA6nvYK8EUJHV --preview --output json
{
  "action": "cancel_limit_order",
  "order": "7nE9GJoYHNmtaQvTQpota3KV2oz4pQ2dA6nvYK8EUJHV",
  "maker": "7qRkWTrM4DLpmeSnB8xT8p8mpqLQ9JdYatYczS4u1G8e",
  "request": {
    "order": "7nE9GJoYHNmtaQvTQpota3KV2oz4pQ2dA6nvYK8EUJHV",
    "maker": "7qRkWTrM4DLpmeSnB8xT8p8mpqLQ9JdYatYczS4u1G8e"
  }
}

Live Submit (--yes --output json)

Live submit output is a single JSON document emitted after confirmation or --yes. It signs the Jupiter Trigger cancel transaction, submits it through Bullpen TxService.SubmitV4, and includes a balance readback hint because cached portfolio reads can lag immediately after a cancel.

Live Top-level Keys

key type nullable notes
kind string no solana_limit_order_cancel_result
success boolean no true when the cancel receipt is confirmed
status string no Receipt status such as confirmed, timeout, or unknown
order string no Jupiter Trigger order key cancelled
order_key string no Alias of order for automation
signature string no Solana transaction signature
tx_signature string no Alias of signature
readback_status string no refresh_recommended after confirmed cancels
balance_refresh_recommended boolean no true after a submitted cancel
next_command string no bullpen solana balance --refresh --output json

Live Example

{
  "action": "cancel_limit_order",
  "kind": "solana_limit_order_cancel_result",
  "success": true,
  "status": "confirmed",
  "order": "7nE9GJoYHNmtaQvTQpota3KV2oz4pQ2dA6nvYK8EUJHV",
  "order_key": "7nE9GJoYHNmtaQvTQpota3KV2oz4pQ2dA6nvYK8EUJHV",
  "maker": "7qRkWTrM4DLpmeSnB8xT8p8mpqLQ9JdYatYczS4u1G8e",
  "request_id": "trigger-cancel-request-1",
  "signature": "3zUYh2mJ2QaF9x7Qv5bYk2wFqVQTwZx3qG4oZk6Gm1J9ABx6dD7xVz2yB4mE3cT7s9QeN1rP5aK2mY8hJ6nC4dL",
  "tx_signature": "3zUYh2mJ2QaF9x7Qv5bYk2wFqVQTwZx3qG4oZk6Gm1J9ABx6dD7xVz2yB4mE3cT7s9QeN1rP5aK2mY8hJ6nC4dL",
  "receipt_status": "confirmed",
  "readback_status": "refresh_recommended",
  "balance_refresh_recommended": true,
  "stale_balance_risk": "cached_balance_may_lag_after_cancel",
  "next_command": "bullpen solana balance --refresh --output json",
  "next_commands": [
    "bullpen solana balance --refresh --output json",
    "bullpen solana portfolio --refresh --output json"
  ]
}

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.