curl --request POST \
--url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info \
--header 'Content-Type: application/json' \
--data '{
"type": "spotDeployState",
"user": "0x0000000000000000000000000000000000000000"
}'
{
"deploymentEnabled": true,
"totalDeployments": 123,
"deploymentCost": "<string>",
"maxSupply": "<string>",
"minSupply": "<string>",
"deploymentQueue": [
{
"deployer": "<string>",
"tokenName": "<string>",
"tokenSymbol": "<string>",
"supply": "<string>",
"queuePosition": 123,
"estimatedDeployTime": 123
}
],
"recentDeployments": [
{
"tokenAddress": "<string>",
"tokenName": "<string>",
"tokenSymbol": "<string>",
"deployer": "<string>",
"deployTime": 123,
"initialSupply": "<string>"
}
],
"systemStatus": "<string>"
}
curl --request POST \
--url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info \
--header 'Content-Type: application/json' \
--data '{
"type": "spotDeployState",
"user": "0x0000000000000000000000000000000000000000"
}'
{
"deploymentEnabled": true,
"totalDeployments": 123,
"deploymentCost": "<string>",
"maxSupply": "<string>",
"minSupply": "<string>",
"deploymentQueue": [
{
"deployer": "<string>",
"tokenName": "<string>",
"tokenSymbol": "<string>",
"supply": "<string>",
"queuePosition": 123,
"estimatedDeployTime": 123
}
],
"recentDeployments": [
{
"tokenAddress": "<string>",
"tokenName": "<string>",
"tokenSymbol": "<string>",
"deployer": "<string>",
"deployTime": 123,
"initialSupply": "<string>"
}
],
"systemStatus": "<string>"
}
info
endpoint with type: "spotDeployState"
returns the Spot Deploy Auction state. It exposes per‑token genesis state and the current gas auction parameters used for spot token deployment.
type
(string, required) — The request type. Must be "spotDeployState"
to retrieve spot deployment state information.user
(string, required) — Address in 42-character hexadecimal format. Can be zero address (0x0000000000000000000000000000000000000000
) for global state information.token
(integer) — Token ID.spec
(object) — Token spec with:
name
(string)szDecimals
(number)weiDecimals
(number)fullName
(string, optional)spots
(array of integers) — Spot pair indices associated with the token.maxSupply
(integer)hyperliquidityGenesisBalance
(string)totalGenesisBalanceWei
(string)userGenesisBalances
(array) — Tuples of [address, balance]
in string form.existingTokenGenesisBalances
(array) — Tuples of [tokenIndex, balance]
in string form.startTimeSeconds
(integer) — Auction start time (seconds since epoch).durationSeconds
(integer) — Auction duration in seconds.startGas
(string) — Starting gas amount.currentGas
(string or null) — Current gas amount.endGas
(string, optional) — Ending gas amount when completed.curl -X POST \
-H "Content-Type: application/json" \
-d '{"type": "spotDeployState", "user": "0x0000000000000000000000000000000000000000"}' \
https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info
info
endpoint with type: "spotDeployState"
is useful for:
gasAuction
timing and gas parameters.states
and genesis balances.Spot token deployment state and configuration information
Current state of spot token deployment system