perpDeployAuctionStatus

Get the current perp deploy auction status.

Get the current perp deploy auction status.

POST Request

Field
Type
Description

type

string

Must be "perpDeployAuctionStatus"

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

Response Fields

Field
Type
Description

startTimeSeconds

int

Auction start time (unix seconds)

durationSeconds

int

Auction duration in seconds

startGas

string

Starting gas price

currentGas

string?

Current gas price (null if auction ended)

endGas

string?

Ending gas price (null if auction still active)

Response
{
    "startTimeSeconds": 1773658800,
    "durationSeconds": 111600,
    "startGas": "1000.0",
    "currentGas": "988.88346326",
    "endGas": null
}

Last updated