@1hive/connect-app-dandelion-voting
v0.0.1
Published
Access organizations and interact with Dandelion Voting apps.
Downloads
133
Readme
The Graph Connector for Dandelion Voting
Usage
const org = await connect(
<org-address>,
'thegraph',
{ chainId: <chain-id> }
)
const apps = await org.apps()
const dandelionVotingApp = apps.find(
app => app.appName === 'dandelion-voting.aragonpm.eth'
)
const dandelionVotingInstance = new DandelionVoting(
dandelionVotingApp.address,
<subgraph-url>
)
const votes = await dandelionVotingInstance.votes()