Common Followers
The Common Followers component displays a list of common followers between two Ethereum addresses or ENS names, showing their avatars and names.
Common followers is a relation of addresses that connectedAddress
follows and lookupAddress
is being followed by.
Add to your project
import { CommonFollowers } from '@encrypteddegen/identity-kit'
export default function Home() {
return <CommonFollowers 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 |
className | Additional CSS class names to apply to the component. | No | - |
props | Additional props for the <div> element containing the common followers. | No | - |