Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

EnsResolver

interface EnsResolver {
readonly address: string;
readonly name: string;
getAddress(coinType?: 60): Promise<null | string>;
getContentHash(): Promise<null | string>;
getText(key: string): Promise<null | string>;
}

§Properties

§
readonly address: string
[src]
§
readonly name: string
[src]

§Methods

§
getAddress(coinType?: 60): Promise<null | string>
[src]
§
getContentHash(): Promise<null | string>
[src]
§
getText(key: string): Promise<null | string>
[src]