useProfiles

Retrieves all linked profiles for the current wallet.

Example

import { use } from "thirdweb/react";
const { data: profiles } = useProfiles();
console.log("Type:", profiles[0].type); // "discord"
console.log("Email:", profiles[0].email); // "john.doe@example.com"

Returns

A React Query result containing the linked profiles for the connected in-app wallet.