diff --git a/packages/react/src/hooks/useEnsCredentials.ts b/packages/react/src/hooks/useEnsCredentials.ts index ad78ac1b..e3854184 100644 --- a/packages/react/src/hooks/useEnsCredentials.ts +++ b/packages/react/src/hooks/useEnsCredentials.ts @@ -15,6 +15,8 @@ export type UseEnsCredentialsReturnType = ExternalCredential[] * * @param params - {@link UseEnsCredentialsParams} * @returns - {@link UseEnsCredentialsReturnType} + * + * @beta */ export const useEnsCredentials = ( params: UseEnsCredentialsParams, diff --git a/packages/react/src/hooks/useEnsRecordsWrite.ts b/packages/react/src/hooks/useEnsRecordsWrite.ts index 900985c4..fa943966 100644 --- a/packages/react/src/hooks/useEnsRecordsWrite.ts +++ b/packages/react/src/hooks/useEnsRecordsWrite.ts @@ -3,7 +3,16 @@ import type { ParamWithClients } from '../client.js' export type UseEnsRecordsWriteParams = ParamWithClients<{}> -// eslint-disable-next-line @typescript-eslint/no-unused-vars +/** + * Allows you to write records to a name, provided the name supports it and the signed in user has the required permissions + * + * You can use the {@link resolverInterfaces} shorthand, or manually specify a Hex value + * + * @param params - {@link UseEnsResolverInterfacesParams} + * @returns - {@link boolean[]} + * + * @alpha + */ export const useEnsRecordsWrite = ( _params: UseEnsRecordsWriteParams, config?: any,