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" />
}
Parameters
Parameter | Description | Required | Default Value |
---|---|---|---|
lookupAddress | The Ethereum address or ENS name to find common followers with. | Yes | - |
connectedAddress | The Ethereum address of the currently connected user. | No | - |
displayEmpty | Whether to display the component when there are no common followers. | No | true |
hasModal | Whether to display the modal with all common followers. | No | false |
onProfileClick | The function to call when a profile is clicked. | No | - |
className | Additional CSS class names to apply to the component. | No | - |
props | Additional 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.