Fetches the wallet's available social profiles.
import { getSocialProfiles } from "thirdweb/social";const profiles = await getSocialProfiles({ address: "0x...", client,});
function getSocialProfiles(args: { address: string; client: ThirdwebClient;}): Promise<Array<SocialProfile>>;
The arguments to use when fetching the social profiles.
let args: { address: string; client: ThirdwebClient };
let returnType: { avatar?: string; bio?: string; metadata?: FarcasterProfile | LensProfile | EnsProfile; name?: string; type: "farcaster" | "lens" | "ens";};
A promise resolving to the array of social profiles for the given address.