bullpen solana limit-sell¶
Last updated: July 13, 2026
Place a Jupiter Trigger limit sell for a Solana token into USDC
Usage¶
Live Help¶
Place a Jupiter Trigger limit sell for a Solana token into USDC
Usage: bullpen solana limit-sell [OPTIONS] --price <PRICE> <MINT> <AMOUNT>
Arguments:
<MINT>
Input SPL token mint address
<AMOUNT>
Token amount to sell in token units for this mint; NOT USD
Options:
--output <OUTPUT>
Output format for command results
[possible values: table, json]
--price <PRICE>
Limit price in USD per input token
--env <ENV>
Target environment to connect to (overrides config.toml)
[env: BULLPEN_ENV=]
[possible values: staging, production]
--expiry <EXPIRY>
Expiry duration such as 1h, 24h, 7d, or never. Default is never
--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.
--yes
Skip confirmation prompt
--preview
Show the Trigger order request 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 creating another order
bullpen solana orders --status active
# Preview a Trigger limit sell without signing or submitting
bullpen solana limit-sell DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 200000 --price 0.00003 --preview
# Export the Trigger limit-sell preview as JSON
bullpen solana limit-sell DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 200000 --price 0.00003 --preview --output json
Example Commands¶
bullpen solana orders --status active
bullpen solana limit-sell DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 200000 --price 0.00003 --preview
bullpen solana limit-sell DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 200000 --price 0.00003 --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 | limit_buy or limit_sell |
side |
string | no | buy or sell |
maker |
string | no | Bullpen Solana wallet used as the Trigger maker |
payer |
string | no | Bullpen Solana wallet used as the transaction payer |
input |
object | no | Input mint, symbol, decimal amount, and atomics |
output |
object | no | Output mint, symbol, decimal amount, and atomics |
price_usd |
string | no | Limit price in USD per token |
expires_at |
integer | yes | Unix expiry timestamp, omitted/null for never |
request |
object | no | Jupiter Trigger createOrder request preview |
Example¶
Example JSON output
bullpen solana limit-sell DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 200000 --price 0.00003 --preview --output json
{
"action": "limit_sell",
"side": "sell",
"maker": "7qRkWTrM4DLpmeSnB8xT8p8mpqLQ9JdYatYczS4u1G8e",
"payer": "7qRkWTrM4DLpmeSnB8xT8p8mpqLQ9JdYatYczS4u1G8e",
"input": {
"mint": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263",
"symbol": "BONK",
"amount": "200000",
"amount_atomics": 20000000000
},
"output": {
"mint": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol": "USDC",
"amount": "6",
"amount_atomics": 6000000
},
"price_usd": "0.00003",
"expires_at": 1780000000,
"request": {
"maker": "7qRkWTrM4DLpmeSnB8xT8p8mpqLQ9JdYatYczS4u1G8e",
"payer": "7qRkWTrM4DLpmeSnB8xT8p8mpqLQ9JdYatYczS4u1G8e",
"inputMint": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263",
"outputMint": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"params": {
"makingAmount": "20000000000",
"takingAmount": "6000000",
"expiredAt": 1780000000
}
}
}
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 Jupiter Trigger create-order request without Turnkey signing, Jupiter/execute, orTxService.SubmitV4submission.- The CLI implements exact Trigger orders and intentionally does not expose a Solana limit-order
--slippage-bpsflag. - Limit orders do not run JupiterShield and do not expose
--skip-shield-check. - Trigger referral fees are not currently forwarded. Trigger uses an output-mint
feeAccountplusparams.feeBps; the CLI does not reuse UltrareferralAccount/referralFeesettings for limit orders. - Live create submits the signed transaction through Jupiter Trigger
/trigger/v1/executeafter confirmation.