bullpen solana cancel-all-orders¶
Last updated: May 29, 2026
Cancel all active Jupiter Trigger limit orders
Usage¶
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:
bullpen solana cancel-all-orders --help
Show options for this command without signing, submitting, or changing state.
Example Commands¶
bullpen solana cancel-all-orders [OPTIONS]
bullpen solana cancel-all-orders --help
bullpen solana cancel-all-orders --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¶
{
"action": "cancel_all_limit_orders",
"maker": "7qRkWTrM4DLpmeSnB8xT8p8mpqLQ9JdYatYczS4u1G8e",
"mint": null,
"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¶
--previewbuilds the cancel request without Turnkey signing, Jupiter cancel mutation endpoints, orTxService.SubmitV4submission.- Live cancel builds unsigned cancel transactions with Jupiter Trigger, signs with the Bullpen Solana wallet, and submits through Bullpen
TxService.SubmitV4after confirmation. - Cancel commands do not run JupiterShield and do not expose
--skip-shield-checkor--slippage-bps.