Get Community Members Introduced by the Membership Plugin
Gets the list of addresses able to participate in a Membership proposal for a given DAO that has the Membership plugin installed.
import { MultisigClient } from"@aragon/sdk-client";import { context } from"../index";// Instantiate a Multisig plugin client.constmultisigClient:MultisigClient=newMultisigClient(context);constdaoPluginAddress:string="0x1234548357023847502348"; // The address of the plugin that DAO has installed. You can find this through calling `getDao(daoAddress)` and getting the DAO details .constmultisigMembers:string[] =awaitmultisigClient.methods.getMembers( { pluginAddress: daoPluginAddress },);console.log(multisigMembers);