spotPairDeployAuctionStatus

Returns the current status of the spot trading-pair deploy auction, including timing and gas pricing.

Field
Type
Description

type

string

Must be "spotPairDeployAuctionStatus"

Request

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

Response Fields

Field
Type
Description

startTimeSeconds

int

Auction start time (unix seconds)

durationSeconds

int

Auction duration in seconds

startGas

string

Gas price at the start of the auction

currentGas

string

Current gas price

endGas

string?

Gas price at the end of the auction, null while in progress

Response
{
  "startTimeSeconds": 1780354800,
  "durationSeconds": 111600,
  "startGas": "500.0",
  "currentGas": "500.0",
  "endGas": null
}

Last updated