DocsComponentsFollowers you know

Followers you know

The Followers you know component displays a list of common followers between two Ethereum addresses or ENS names, showing their avatars and names.

⚠️

Both connectedAddress and lookupAddress must be valid Ethereum addresses or ENS names for the component to work properly.

Add to your project

import { FollowersYouKnow } from 'ethereum-identity-kit'
 
export default function Home() {
  return <FollowersYouKnow connectedAddress="0x1234...abcd" lookupAddress="0xabcd...1234" />
}
Try it out! - https://playground.ethidentitykit.com/?path=/docs/molecules-followers-you-know--component-docs

Parameters

ParameterDescriptionRequiredDefault Value
lookupAddressThe Ethereum address or ENS name to find common followers with.Yes-
connectedAddressThe Ethereum address of the currently connected user.No-
showEmptyWhether to display the component when there are no common followers.Notrue
showLoadingWhether to show loading state indicators.Notrue
hasModalWhether to display the modal with all common followers.Nofalse
onProfileClickThe function to call when a profile is clicked.No-
classNameAdditional CSS class names to apply to the component.No-
propsAdditional props for the <div> element containing the common followers.No-

The component supports both ENS names and Ethereum addresses. When using ENS names, they will be automatically resolved to their corresponding addresses.