Vote SDK | Waku Connect Docs
Vote SDK

How to Use the Waku Connect Vote SDK #

To demonstrate how to use the Waku Connect Vote SDK in your dApp, we will create a TypeScript React app from scratch.

You can then adapt the steps depending on your dApp configuration and build setup.

Only token holders can create, vote and finalize proposals. Hence, you need to have an ERC-20 token contract address ready.

The resulting code of this guide can be found in the repo at .

Here is a preview of the end result:

Create a proposal: Proposal creation

Proposal card: Proposal Card

After following the create a dApp guide you should have a dapp that can connect to wallet ready. We will continue from this point.

First, add the Vote SDK packages:

yarn add \
@waku/vote-sdk-react-components @waku/vote-sdk-react-hooks @waku/vote-poll-sdk-react-components
Get Started