Resolve Name

Use this endpoint to retrieve the main name, address, and service associated with a specific name.

Example use cases:

  • A user wants to retrieve the main information associated with a specific domain name.
  • A developer wants to programmatically retrieve the address associated with a specific name.
import PulsarSDK from 'pulsar_sdk_js'

const sdk = new PulsarSDK(API_KEY)
sdk.name_services.resolve_name('dogemos.cosmos').then((resolved_name) => {
    console.log(resolved_name)
})
from pulsar_sdk_py import PulsarSDK

sdk = PulsarSDK(API_KEY)
resolved_name = sdk.name_service.resolve_name(name="dogemos.cosmos")

Resolve Address

Use this endpoint to retrieve the main name and service associated with a specific address.

Example use cases:

  • A user wants to retrieve the main information associated with a specific cryptocurrency wallet address.
  • A developer wants to build a tool that resolves the name associated with a specific address.
import PulsarSDK from 'pulsar_sdk_js'

const sdk = new PulsarSDK(API_KEY)
sdk.name_services.resolve_address('cosmos1z98eg2ztdp2glyla62629nrlvczg8s7f0tm3dx').then((resolved_address) => {
    console.log(resolved_address)
})
from pulsar_sdk_py import PulsarSDK

sdk = PulsarSDK(API_KEY)
resolved_address = sdk.name_service.resolve_address(address="cosmos1z98eg2ztdp2glyla62629nrlvczg8s7f0tm3dx")