@unstoppabledomains/resolution
Version:
Domain Resolution for blockchain domains
14 lines (13 loc) • 463 B
TypeScript
import type { BlockchainType } from '../types/publicTypes';
declare type TldsMeta = Record<string, {
namingService: 'UNS' | 'ENS' | 'ZNS' | 'DNS';
registrationBlockchain: BlockchainType;
}>;
export default class Tlds {
private static supportedTlds;
private static tldsMeta;
private static loadSupportedTldsData;
static getSupportedTlds(): Promise<ReadonlyArray<string>>;
static getTldsMeta(): Promise<Readonly<TldsMeta>>;
}
export {};