Adds the fetchBlockList method which can fetch a list of who's blocking who. A list of blocked users can be pulled by providing a blocker_fid or a list of users who blocked someone by providing the blocked_fid
Example
# index.js
const result = await client.fetchBlockList({blockerFid: 419871})
// Stringify and log the response
console.log(JSON.stringify(result));
Overview
Adds the
fetchBlockList
method which can fetch a list of who's blocking who. A list of blocked users can be pulled by providing ablocker_fid
or a list of users who blocked someone by providing theblocked_fid
Example