Optional
limit?: InputMaybe<LimitType>Optional
orderThe order by which to sort the profiles - note if your looking at your own followers it always be DESC
const { data, loading, error } = useProfileFollowers({
of: '0x123',
});
Experimental
Fetch profiles that follow a requested profile.
This signature supports React Suspense.
const { data } = useProfileFollowers({
of: '0x123',
suspense: true,
});
console.log(data);
This API can change without notice
Fetch profiles that follow a requested profile.