curl --request POST \
--url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info \
--header 'Content-Type: application/json' \
--data '{
"type": "perpDeployAuctionStatus"
}'
{
"startTimeSeconds": 1747656000,
"durationSeconds": 111600,
"startGas": "500.0",
"currentGas": "500.0",
"endGas": null
}
curl --request POST \
--url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info \
--header 'Content-Type: application/json' \
--data '{
"type": "perpDeployAuctionStatus"
}'
{
"startTimeSeconds": 1747656000,
"durationSeconds": 111600,
"startGas": "500.0",
"currentGas": "500.0",
"endGas": null
}
perpDeployAuctionStatus
call will return non-null when HIP-3: Builder-Deployed Perpetuals goes live on the mainnet.info
endpoint with type: "perpDeployAuctionStatus"
retrieves the status information about perpetual contract deployment auctions on the Hyperliquid exchange. This endpoint provides timing information and gas-related data for the auction system.
type
(string, required) — The request type. Must be "perpDeployAuctionStatus"
to retrieve perpetual deployment auction status.startTimeSeconds
(integer) — Auction start time in seconds since epochdurationSeconds
(integer) — Duration of the auction in secondsstartGas
(string) — Starting gas amount for the auctioncurrentGas
(string) — Current gas amountendGas
(string or null) — Ending gas amount (null if auction is ongoing)curl -X POST \
-H "Content-Type: application/json" \
-d '{"type": "perpDeployAuctionStatus"}' \
https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info
{
"startTimeSeconds": 1747656000,
"durationSeconds": 111600,
"startGas": "500.0",
"currentGas": "500.0",
"endGas": null
}
info
endpoint with type: "perpDeployAuctionStatus"
is essential for applications that need to:
Current status of perpetual deployment auctions
Perpetual deployment auction timing and gas information
Was this page helpful?