Skip to main content
POST
/
4f8d8f4040bdacd1577bff8058438274
/
info
info (gossipPriorityAuctionStatus)
curl --request POST \
  --url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info \
  --header 'Content-Type: application/json' \
  --data '
{
  "type": "gossipPriorityAuctionStatus"
}
'
[
  "<unknown>"
]
This method is available on Chainstack. Not all Hyperliquid methods are available on Chainstack, as the open-source node implementation does not support them yet — see Hyperliquid methods for the full availability breakdown.
The info endpoint with type: "gossipPriorityAuctionStatus" returns the current status of the gossip priority auction — the IP addresses currently prioritized for gossip, and the active per-slot auctions with their gas pricing.
Get your own node endpoint todayStart for free and get your app to production levels immediately. No credit card required.You can sign up with your GitHub, X, Google, or Microsoft account.

Parameters

Request body

  • type (string, required) — The request type. Must be "gossipPriorityAuctionStatus".

Response

Returns a two-element array: the list of currently prioritized IP addresses, followed by the list of active per-slot auctions. Each auction includes startTimeSeconds, durationSeconds, startGas, currentGas, and endGas.

Example request

curl -X POST \
  -H "Content-Type: application/json" \
  -d '{"type": "gossipPriorityAuctionStatus"}' \
  https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info
Use your own endpoint in your code. The code examples use a placeholder Chainstack endpoint (YOUR_CHAINSTACK_ENDPOINT) — replace it with your own Hyperliquid node endpoint from the Chainstack console. The curl above uses a shared public endpoint for quick checks only; do not use it in production.

Example response

[
  ["54.64.2.87", "18.180.228.50"],
  [
    {
      "startTimeSeconds": 1782287280,
      "durationSeconds": 180,
      "startGas": "11.9842756",
      "currentGas": "9.30001388",
      "endGas": null
    }
  ]
]

Use cases

The info endpoint with type: "gossipPriorityAuctionStatus" is useful for:
  • Monitoring the live gossip priority auction and its gas pricing
  • Tooling for node operators bidding for gossip priority
  • Observing which IP addresses are currently prioritized

Body

application/json
type
enum<string>
default:gossipPriorityAuctionStatus
required

Request type

Available options:
gossipPriorityAuctionStatus

Response

200 - application/json

Current gossip priority auction status: the prioritized IPs and the per-slot auctions.

Last modified on June 24, 2026