bullpen hyperliquid builder-fee¶
Last updated: July 13, 2026
Inspect the current Hyperliquid max builder fee allowance for an address
Usage¶
Live Help¶
Inspect the current Hyperliquid max builder fee allowance for an address
Usage: bullpen hyperliquid builder-fee [OPTIONS]
Options:
--address <ADDRESS>
Ethereum address to query. Defaults to the 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]
--builder <BUILDER>
Builder address to inspect. Defaults to [hyperliquid].builder_address
--env <ENV>
Target environment to connect to (overrides config.toml)
[env: BULLPEN_ENV=]
[possible values: staging, production]
--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:
# Inspect the configured builder fee allowance for an address
bullpen hyperliquid builder-fee --address 0x1111111111111111111111111111111111111111
# Inspect a specific builder address and export JSON
bullpen hyperliquid builder-fee --address 0x1111111111111111111111111111111111111111 --builder 0x2222222222222222222222222222222222222222 --output json
Example Commands¶
bullpen hyperliquid builder-fee --address 0x1111111111111111111111111111111111111111
bullpen hyperliquid builder-fee --address 0x1111111111111111111111111111111111111111 --builder 0x2222222222222222222222222222222222222222 --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 |
builder_address |
string | no | Builder address inspected |
configured_builder_fee_bps |
string/decimal | no | Local configured builder fee in basis points |
configured_builder_fee_rate |
string | no | Local configured builder fee as a percentage string |
current_max_builder_fee_tenths_of_bps |
integer | no | Current max builder fee allowance in tenths of a basis point |
current_max_builder_fee_bps |
string/decimal | no | Current max builder fee allowance in basis points |
current_max_builder_fee_rate |
string | no | Current max builder fee allowance as a percentage string |
approval_sufficient |
boolean | no | Whether the current allowance covers the configured builder fee |
Example¶
bullpen hyperliquid builder-fee --address 0x1111111111111111111111111111111111111111 --builder 0x2222222222222222222222222222222222222222 --output json
{
"address": "0x1111111111111111111111111111111111111111",
"builder_address": "0x2222222222222222222222222222222222222222",
"configured_builder_fee_bps": "4.5",
"configured_builder_fee_rate": "0.045%",
"current_max_builder_fee_tenths_of_bps": 45,
"current_max_builder_fee_bps": "4.5",
"current_max_builder_fee_rate": "0.045%",
"approval_sufficient": true
}
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.