Poll List

Browse all polls from the subgraph

Active Polls

Vote directly on any poll below.

Loading from: subgraph

Visual Theme:Minimal

Flat colors, subtle shadows, simple interactions

Widget Size:Medium

Balanced size for most use cases (default)

Data Source:Auto

Try subgraph first, fallback to contract if needed

Loading polls...

SDK Usage Example:

// Fetch list of polls
const { polls, isLoading, error, activeSource } = usePollsList({
  limit: 20,
  offset: 0,
})

// Render as embedded voting widgets
{polls?.map((poll) => (
  <PollWidget
    key={poll.id}
    pollId={poll.id}
  />
))}