Veto #403
Answered
by
solimander
cdt-eth
asked this question in
Solidity / smart contracts
Veto
#403
-
Can someone explain to me how the “Veto” works in the noun governance? I’d like to be able implement something like this. I’m working on establishing governance of a treasury via 44 ERC-721s. |
Beta Was this translation helpful? Give feedback.
Answered by
solimander
Mar 30, 2022
Replies: 1 comment
-
Veto is an additional state on a proposal that can only be set by a “vetoer” address. It’s a terminal state so once a proposal is vetoed it cant be set to another state. The code for it is mostly taken from the |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
solimander
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Veto is an additional state on a proposal that can only be set by a “vetoer” address. It’s a terminal state so once a proposal is vetoed it cant be set to another state. The code for it is mostly taken from the
cancel
function and you can think of it that way: once a proposal has been cancelled or vetoed it can’t be voted on, queued, or executed.