> For the complete documentation index, see [llms.txt](https://lemonade.gitbook.io/welcome-to-lemonade/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://lemonade.gitbook.io/welcome-to-lemonade/community/wallet-membership.md).

# Wallet Membership

## Creating a Membership Plugin Client

To access the Membership plugin from your DAO, it's necessary to set up a Membership plugin Client. This involves creating a MembershipClient, which is done using the ContextPlugin.

```javascript
import { MultisigClient } from "@aragon/sdk-client";
import { context } from "../index";

// Create a plugin context from the Aragon OSx SDK context.

// Creates a Multisig plugin client.
const multisigClient: MultisigClient = new MultisigClient(context);
console.log(multisigClient);
```
