IsSubnameAvailable

The isSubnameAvailable method allows you to check whether a specific subname is available for registration.

Usage Example

const response = client.isSubnameAvailable("ns.myensname.eth");
const isAvailable = response.isAvailable;

Return Type

export interface GetAvailableResponse {
  isAvailable: boolean;
}

isAvailable — A boolean value indicating whether the provided subname is available (true) or already taken (false).

Last updated