You may check out the video walkthrough here: https://www.youtube.com/watch?v=5YTJgudYHs8
Get the address of the Lido DAO Aragon Voting
contract from page https://docs.lido.fi/deployed-contracts/
https://etherscan.io/address/0x2e59A20f205bB85a89C53f1936454680651E618e
Get the vote id, either from Aragon UI
or from Etherscan:
votesLength
method (number 21. on Etherscan page)votesLength - 1
as an id. If the votesLength
is 89
, last vote would have the id 88
getVote
method (number 6. on Etherscan page)Open "Contract / Write as Proxy" tab on Etherscan: https://etherscan.io/address/0x2e59A20f205bB85a89C53f1936454680651E618e#writeProxyContract
Connect Etherscan UI to Web3 with either MetaMask or WalletConnect
Use method vote
(number 6. on the Etherscan Page)
_voteId
is the vote id from the point 2._supports
is the flag of whether you're voting for (type true
) or against (type false
) the vote_executesIfDecided
is the flag to enact the vote if it could be executed right away in the tx sending the vote, true
or false
; from the experience of the previous votes, you may leave that as false
Fill in the parameters _voteId
, _supports
& _executesIsDecided
and send the transaction
That's it! 🎉