curl --request POST \
--url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info \
--header 'Content-Type: application/json' \
--data '
{
"type": "userDexAbstraction",
"user": "0x31ca8395cf837de08b24da3f660e77761dfb974b"
}
'{}curl --request POST \
--url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info \
--header 'Content-Type: application/json' \
--data '
{
"type": "userDexAbstraction",
"user": "0x31ca8395cf837de08b24da3f660e77761dfb974b"
}
'{}info endpoint with type: "userDexAbstraction" retrieves a user’s DEX abstraction configuration. Returns the user’s current abstraction setting for perp DEX interaction, or null if not set.
type (string, required) — The request type. Must be "userDexAbstraction".user (string, required) — Onchain address in 42-character hexadecimal format.null if no abstraction is set.
curl -X POST \
-H "Content-Type: application/json" \
-d '{"type": "userDexAbstraction", "user": "0x31ca8395cf837de08b24da3f660e77761dfb974b"}' \
https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info
null
info endpoint with type: "userDexAbstraction" is useful for:
User's DEX abstraction setting or null
The response is of type object.
Was this page helpful?