Resolve Name
Resolve supported wallet name-service addresses into concrete wallet addresses.
Resolve Wallet Name
POSThttps://api.adesic.com/v2/blockchains/resolve-name
Resolves a supported name-service wallet address, such as an ENS name, into the raw wallet address that can be used in transaction wallet creation.
Headers
| Name | Type | Description |
|---|---|---|
| apiKey* | string | Your Adesic API Key |
Request Body
| Name | Type | Description |
|---|---|---|
| address* | string | Name-service wallet address to resolve. |
| blockchain* | string | Blockchain for the address. |
Response
200: OK Success
{
"address": "0x742d35Cc6634C0532925a3b844Bc454e4438f44e",
"alias": "vitalik.eth"
}Copy & Paste Code
cURL
resolve_name.sh
curl -X POST \
-H "Content-Type: application/json" \
-H "api-key: your-api-key" \
-d '{
"address": "vitalik.eth",
"blockchain": "ethereum"
}' \
https://api.adesic.com/v2/blockchains/resolve-nameResponse Object
| Attribute Name | Data Type | Description |
|---|---|---|
| address | string | Raw wallet address resolved from the name-service address. |
| alias | string | Original name-service wallet address when resolution succeeds. |