Skip to content

bullpen solana dca cancel

Last updated: May 29, 2026

Cancel a Jupiter Recurring DCA schedule

Usage

bullpen solana dca cancel [OPTIONS] <ORDER_KEY>

Live Help

Cancel a Jupiter Recurring DCA schedule

Usage: bullpen solana dca cancel [OPTIONS] <ORDER_KEY>

Arguments:
  <ORDER_KEY>
          Jupiter Recurring 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
          Build and display the unsigned cancel transaction without signing or executing

      --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:
  bullpen solana dca cancel --help
      Show options for this command without signing, submitting, or changing state.

Example Commands

bullpen solana dca cancel [OPTIONS] <ORDER_KEY>
bullpen solana dca cancel --help
bullpen solana dca cancel 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 Recurring 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 dca_cancel for previews
order_key string no Jupiter Recurring order key to cancel
user string no Bullpen Solana wallet used for the Recurring cancel request
request object no Jupiter Recurring cancelOrder request preview
unsigned_transaction object no Present for --preview; includes Jupiter request id and unsigned transaction

Example

bullpen solana dca cancel 7nE9GJoYHNmtaQvTQpota3KV2oz4pQ2dA6nvYK8EUJHV --preview --output json
{
  "action": "dca_cancel",
  "order_key": "7nE9GJoYHNmtaQvTQpota3KV2oz4pQ2dA6nvYK8EUJHV",
  "user": "7qRkWTrM4DLpmeSnB8xT8p8mpqLQ9JdYatYczS4u1G8e",
  "request": {
    "user": "7qRkWTrM4DLpmeSnB8xT8p8mpqLQ9JdYatYczS4u1G8e",
    "order": "7nE9GJoYHNmtaQvTQpota3KV2oz4pQ2dA6nvYK8EUJHV",
    "recurringType": "time"
  },
  "unsigned_transaction": {
    "request_id": "dca-cancel-request-1",
    "transaction": "base64-unsigned-transaction"
  }
}

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 Recurring Notes

  • --preview calls Jupiter Recurring cancelOrder to fetch an unsigned transaction without Turnkey signing or /execute; it does not sign or submit.
  • Live cancel requires confirmation or --yes. BULLPEN_NON_INTERACTIVE alone returns CONFIRMATION_REQUIRED.
  • Live cancel signs the returned Jupiter Recurring transaction, submits it through Jupiter /execute, and verifies the resulting Solana receipt when RPC status is available.