bullpen hyperliquid frontend-orders¶
Last updated: July 13, 2026
Show rich frontend open orders, including trigger and child order detail
Usage¶
Live Help¶
Show rich frontend open orders, including trigger and child order detail
Usage: bullpen hyperliquid frontend-orders [OPTIONS]
Options:
--address <ADDRESS>
Ethereum address to query (defaults to authenticated account)
--no-multi-wallet-warning
Suppress the table-mode warning shown when multiple EVM wallet accounts exist
--output <OUTPUT>
Output format for command results
[possible values: table, json]
--dex <DEX>
Optional dex context for the request
--env <ENV>
Target environment to connect to (overrides config.toml)
[env: BULLPEN_ENV=]
[possible values: staging, production]
--all-dexes
Query main plus every registered HIP-3 perp DEX
--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:
# Show frontend open orders for an address
bullpen hyperliquid frontend-orders --address 0x1111111111111111111111111111111111111111
# Export frontend open orders with an explicit dex context
bullpen hyperliquid frontend-orders --address 0x1111111111111111111111111111111111111111 --dex perp --output json
# Export frontend open orders across main plus registered HIP-3 DEXes
bullpen hyperliquid frontend-orders --address 0x1111111111111111111111111111111111111111 --all-dexes --output json
Example Commands¶
bullpen hyperliquid frontend-orders --address 0x1111111111111111111111111111111111111111
bullpen hyperliquid frontend-orders --address 0x1111111111111111111111111111111111111111 --dex perp --output json
bullpen hyperliquid frontend-orders --address 0x1111111111111111111111111111111111111111 --all-dexes --output json
JSON Output¶
Contract: JSON Output Contract.
Successful output is a single JSON document. The shape below is representative for this command family; commands may add fields without breaking the shared contract.
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 |
|---|---|---|---|
address |
string | no | Hyperliquid account address queried |
dex |
string | yes | Optional dex context sent to Hyperliquid |
dex_scope |
string | yes | Present as all only for --all-dexes output |
per_dex |
array | yes | Per-DEX breakdown for --all-dexes; omitted otherwise |
per_dex[].label |
string | no | Display label for main or a HIP-3 builder DEX |
per_dex[].dex |
string | yes | Builder DEX id; omitted for main DEX |
per_dex[].registry_index |
integer | no | HIP-3 registry index used for this DEX row |
per_dex[].order_count |
integer | no | Number of frontend orders returned for this DEX |
orders |
array | no | Rich frontend open orders, including trigger and child details |
orders[].dex_label |
string | yes | Present for --all-dexes; labels the DEX that returned this order |
orders[].dex |
string | yes | Builder DEX id for --all-dexes; omitted for main DEX |
orders[].registry_index |
integer | yes | HIP-3 registry index for --all-dexes order rows |
orders[].order_type |
string | no | Frontend order type label |
orders[].reduce_only |
boolean | no | Whether the order reduces an existing position |
orders[].trigger_condition |
string | no | Trigger condition text when applicable |
orders[].children |
array | yes | Child orders recursively mapped with the same shape; omitted when empty |
Example¶
Example JSON output
bullpen hyperliquid frontend-orders --address 0x1111111111111111111111111111111111111111 --dex perp --output json
{
"address": "0x1111111111111111111111111111111111111111",
"dex": "perp",
"orders": [
{
"coin": "BTC",
"is_position_tpsl": false,
"is_trigger": false,
"limit_px": "65000",
"oid": 123456789,
"order_type": "Limit",
"orig_sz": "0.01",
"reduce_only": false,
"side": "B",
"sz": "0.01",
"tif": "Gtc",
"timestamp": 1779920575000,
"timestamp_iso": "2026-07-13 13:42:55Z",
"trigger_condition": "N/A",
"trigger_px": "0"
}
]
}
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.