Gets a proposal's tally result at the current time. If the proposal is pending deposits (i.e status 'DepositPeriod') it returns an empty tally result.
proposal id
"2"
OK
"0.0000000000"
const response = await fetch('https://akt.nownodes.io/gov/proposals/{proposalId}/tally', { method: 'GET', headers: {}, }); const data = await response.json();
{ "yes": "0.0000000000", "abstain": "0.0000000000", "no": "0.0000000000", "no_with_veto": "0.0000000000" }