Fetch feed items.
⚠️ Requires authenticated LensClient.
Request object for the query
Array of FeedItemFragment wrapped in PaginatedResult
const result = await client.feed.fetch({
where: {
for: '0x123',
},
});
Fetch feed highlights.
⚠️ Requires authenticated LensClient.
Request object for the query
Array of publications wrapped in PaginatedResult
const result = await client.feed.highlights({
where: {
for: '0x123',
},
});
Fetch latest paid actions.
⚠️ Requires authenticated LensClient.
Request object for the query
Array of paid actions wrapped in PaginatedResult
const result = await client.feed.latestPaidActions();
Feed is one of the most fundamental element to create a successful social media site.