Skip to main content

qn_resolveENS RPC Method - ENS Resolver

Loading...

Updated on
May 21, 2026

qn_resolveENS RPC Method - ENS Resolver

Please note that this RPC method requires the ENS Resolver add-on enabled on your Quicknode endpoint. Additionally, a list of all of the registered coin types that you can look up is located here.

Parameters

object
object
REQUIRED
Loading...
address
string
REQUIRED
Loading...
coinTypes
array
Loading...

Returns

result
object
Loading...
ensName
string
Loading...
walletAddress
string
Loading...
resolver
string
Loading...
coinTypes
object
Loading...
Request
1
curl -X POST "https://docs-demo.quiknode.pro/" \
2
-H "Content-Type: application/json" \
3
-d '{
4
"jsonrpc": "2.0",
5
"method": "qn_resolveENS",
6
"params": [
7
{
8
"address": "vitalik.eth",
9
"coinTypes": [
10
"ETH"
11
]
12
}
13
],
14
"id": 1
15
}'
1
curl -X POST "https://docs-demo.quiknode.pro/" \
2
-H "Content-Type: application/json" \
3
-d '{
4
"jsonrpc": "2.0",
5
"method": "qn_resolveENS",
6
"params": [
7
{
8
"address": "vitalik.eth",
9
"coinTypes": [
10
"ETH"
11
]
12
}
13
],
14
"id": 1
15
}'
Response
1
{
2
"jsonrpc": "2.0",
3
"id": 1,
4
"result": {
5
"ensName": "vitalik.eth",
6
"walletAddress": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
7
"resolver": "0x231b0Ee14048e9dCcD1d247744d114a4EB5E8E63",
8
"coinTypes": {
9
"ETH": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045"
10
}
11
}
12
}
1
{
2
"jsonrpc": "2.0",
3
"id": 1,
4
"result": {
5
"ensName": "vitalik.eth",
6
"walletAddress": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
7
"resolver": "0x231b0Ee14048e9dCcD1d247744d114a4EB5E8E63",
8
"coinTypes": {
9
"ETH": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045"
10
}
11
}
12
}
Don't have an account yet?
Create your Quicknode endpoint in seconds and start building
Get started for free