perpDexStatus

Returns the status of a builder-deployed (HIP-3) perp DEX, including its total net deposits.

Field
Type
Description

type

string

Must be "perpDexStatus"

dex

string

Perp DEX name (e.g. "xyz"). Required. An empty string selects the native Hyperliquid perp DEX.

Request

curl -X POST https://api.hydromancer.xyz/info \
  -H "Authorization: Bearer $HYDROMANCER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "perpDexStatus",
    "dex": "xyz"
  }'

Response Fields

Field
Type
Description

totalNetDeposit

string

Total net deposits into the DEX

Response
{
  "totalNetDeposit": "825489811.4041969776"
}

Last updated