@kryptogo/kryptogokit-sdk-react
Version:
KryptogoKit offers a comprehensive web3 wallet solution with seamless KryptoGO Auth integration and multi-wallet connection support. Designed for users. Built for developers.
17 lines (16 loc) • 449 B
TypeScript
import type { Address } from 'viem';
interface UseProfileParameters {
address?: Address;
includeBalance?: boolean;
}
export declare function useProfile({ address, includeBalance }: UseProfileParameters): {
ensName: string;
ensAvatar: import("viem").GetEnsAvatarReturnType | undefined;
balance: {
decimals: number;
formatted: string;
symbol: string;
value: bigint;
} | undefined;
};
export {};