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