useFetchProposal QUERY
Fetches a TokenVoting
proposal
import { useFetchProposal } from '@daobox/use-aragon'
Usage
import { useFetchProposal } from '@daobox/use-aragon'
function App() {
const { data, isLoading, isError } = useFetchProposal({
// required
proposalId: '0x1234567890123456789012345678901234567890_0x0',
})
if (isLoading) return <div>Loading...</div>
if (isError) return <div>Error!!!</div>
return (
<pre style={{ whiteSpace: 'pre-wrap' }}>
{JSON.stringify(data, null, 2)}
</pre>
)
}
Required Parameters
- Name
proposalId
- Type
- string
- Description
The address of the plugin to fetch the members of.
Return Data
data: TokenVotingProposal | null
Return Data example
TokenVotingProposal: {
id: "0x1234567890123456789012345678901234567890_0x0",
dao: {
address: "0x1234567890123456789012345678901234567890",
name: "Cool DAO"
},
creatorAddress: "0x1234567890123456789012345678901234567890",
metadata: {
title: "Test Proposal",
summary: "test proposal summary",
description: "this is a long description",
resources: [
{
url: "https://dicord.com/...",
name: "Discord"
},
{
url: "https://docs.com/...",
"name: "Document"
}
],
media: {
header: "https://.../image.jpeg",
logo: "https://.../image.jpeg"
}
},
startDate: <Date>,
endDate: <Date>,
creationDate: <Date>,
creationBlockNumber: 812345,
executionDate: <Date>,
executionBlockNumber: 812345,
actions: [
{
to: "0x12345..."
value: 10n
data: [12,13,154...]
}
],
result {
yes: 700000n,
no: 300000n,
abstain: 0n
}
settings:{
minParticipation: 0.5,
supportThreshold: 0.25,
minDuration: 7200
},
token: {
address: "0x1234567890123456789012345678901234567890,
name: "The Token",
symbol: "TOK",
decimals: 18
},
usedVotingWeight: 1000000n,
votes: [
{
address: "0x123456789123456789123456789123456789",
vote: 2, // VoteValues.YES
voteWeight: 700000n
},
{
address: "0x234567891234567891234567891234567890",
vote: 3, // VoteValues.NO
voteWeight: 300000n
}
]
status: "Executed"
}
Return Values
{
data: TokenVotingProposal | null,
error: Error | null,
isSuccess: boolean,
isError: boolean,
isLoading: boolean,
isRefetching: boolean,
}