useProfilesOwnedBy
useProfilesOwnedBy
is a React Hook that lets you query the profiles owned by a specific wallet address.
const { data, loading, hasMore, next } = useProfilesOwnedBy(args)
Usage
import { useProfilesOwnedBy } from '@lens-protocol/react-web';
function ProfilesOwnedBy() {
const {
data: profiles,
loading,
hasMore,
next,
} = useProfilesOwnedBy({
address: "0x0000000000000000000000000000000000000000"
limit: 10,
});
}
Reference
useProfilesOwnedBy(args)
useProfilesOwnedBy(args)
Parameters
address: string
(required)
- The address to query for to view profiles owned
observerId: string
(optional)
- The id of the profile who is running the query, usually the logged in/active profile
limit: number
(optional)
- The amount of items to return
Returns
{
data: ProfileFragment[],
loading: boolean,
hasMore: boolean, // whether there are more profles after the current batch
next(): () => void, // fetches the next profiles and appends to the data
}
Updated 6 months ago