import { Avatar, Badge, Identity, Name } from '@/identity'; import { COINBASE_VERIFIED_ACCOUNT_SCHEMA_ID } from '@/identity/constants'; import { useNFTContext } from '@/nft/components/NFTProvider'; import { cn } from '@/styles/theme'; import type { EASSchemaUid } from '@/identity/types'; type NFTCreatorProps = { className?: string; schemaId?: EASSchemaUid | null; }; export function NFTCreator({ className, schemaId }: NFTCreatorProps) { const { creatorAddress } = useNFTContext(); if (!creatorAddress) { return null; } return (
); }