Return the resolved names given address, if multiple names are resolved, the first one is the primary name.

interface ResolveNameServiceNamesParams {
    address: string;
    cursor?: null | string;
    limit?: null | number;
}

Properties

address: string

The address to resolve

cursor?: null | string
limit?: null | number