DotSei

API wrapper for DotSei SDK

Getting Started

Get the name for a specified wallet address.

Input:

const walletAddress = '---Enter Wallet Address---'

const response = fetch(`htttps://api.dotsei.me/api/resolveAddress/${walletAddress}`)

address: stringTarget wallet address

Output:

name: stringDomain name

Get the address for a specified domain name.

Input:

const domainName = '---Enter Domain Name---'

const response = fetch(`htttps://api.dotsei.me/api/resolveName/${domainName}`)

domainName: stringTarget domain name

Output:

address: stringWallet Address

Last updated