Invite one or many wallet addresses to join Lens Protocol.
⚠️ Requires authenticated LensClient.
Request object for the mutation
PromiseResult with void
const result = await client.invites.inviteProfile({
invites: ['0x1234567890123456789012345678901234567890'],
});
Fetch all invited profiles.
⚠️ Requires authenticated LensClient.
PromiseResult with array of InvitedResultFragment
const result = await client.invites.invitedProfiles();
Check if a wallet was already invited.
Request object for the query
boolean
const result = await client.invites.profileAlreadyInvited({
for: '0x1234567890123456789012345678901234567890',
});
Invite new users to join Lens Protocol.