Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Governance custom proposals #1056

Merged
merged 49 commits into from
Apr 13, 2023
Merged
Changes from 1 commit
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
456877b
Adds `ProposalType` and `VoteType`
grarco Jan 16, 2023
ce294e0
Renames `proposal_type`
grarco Jan 16, 2023
e18d342
Updates init proposal tx and governance VP
grarco Jan 17, 2023
19c4730
Updates governance specs with regard to PGF
grarco Jan 17, 2023
fedee04
Updates proposal tally for proposal types
grarco Jan 18, 2023
1cec4b1
Fixes governance specs
grarco Jan 18, 2023
2b120d3
Updates tally result
grarco Jan 19, 2023
82892b6
Refactors `compute_tally` and removes duplicate
grarco Jan 19, 2023
801b40c
Refactors governance `Votes`
grarco Jan 19, 2023
3818805
Clippy + fmt
grarco Jan 20, 2023
f7fa9d8
Refactors cli governance vote. Improves custom proposal vote validation
grarco Jan 24, 2023
25dcfbb
Improves governance vote command help
grarco Jan 25, 2023
e40e44c
Fixes governance VP
grarco Jan 25, 2023
c65dc2d
Pgf proposal e2e test
grarco Jan 25, 2023
6506d0d
Adds pgf e2e test to github workflow
grarco Jan 25, 2023
1fcae4c
Clippy + fmt
grarco Jan 25, 2023
ec26f2e
Fixes `ProposalType` serialization
grarco Jan 26, 2023
41f282c
Improves pgf e2e test
grarco Jan 26, 2023
070aaea
Improves governance VP vote check
grarco Jan 26, 2023
e68719c
Finalizes pgf e2e test
grarco Jan 26, 2023
ad08b8f
Refunds for pgf proposal
grarco Jan 26, 2023
1ee08a7
Fixes pgf e2e error
grarco Jan 26, 2023
f5b3bfa
Clippy + fmt
grarco Jan 26, 2023
3fe49b9
Updates eth bridge vote in gov specs
grarco Jan 27, 2023
80dd27c
Adds ETH bridge cutom proposal
grarco Jan 27, 2023
62c040e
Updates governance vp for eth votes
grarco Jan 27, 2023
539e6b8
Updates tally with eth proposals
grarco Jan 27, 2023
f6e3683
Manages eth proposals in `finalize_block`
grarco Jan 27, 2023
953bbb5
Updates cli proposal vote help
grarco Jan 27, 2023
9cdf6cc
Refactors custom proposal vote in client
grarco Jan 30, 2023
a4de695
Refactors pgf council vote to HashSet
grarco Jan 30, 2023
e1e3130
Adds e2e test for eth proposal
grarco Jan 30, 2023
7749a64
Fixes pgf e2e test and governance vp
grarco Jan 30, 2023
1528931
Fixes typos in e2e tests
grarco Jan 30, 2023
6c112de
Generates keypair for eth proposal e2e test
grarco Jan 30, 2023
5344964
Fixes length of hex message in e2e tests
grarco Jan 30, 2023
2317df4
Fixes nam value in governance eth test
grarco Jan 30, 2023
418a854
Removes comment
grarco Jan 31, 2023
24ad234
Clippy + fmt
grarco Jan 31, 2023
77a8c29
Fixes vote memo in governance docs
grarco Jan 31, 2023
2d69bf3
Misc fixes
grarco Feb 8, 2023
b45deb2
Continues governance tally if wrong vote type
grarco Feb 8, 2023
d2e7cd6
Replaces `TallyResult::Failed` with `Error`
grarco Feb 8, 2023
b13f715
Removes unwrap from `compute_tally`
grarco Feb 8, 2023
f7fe428
Fmt
grarco Feb 8, 2023
8e76e68
[ci] wasm checksums update
github-actions[bot] Feb 11, 2023
444ebb8
Updates governance user guide
grarco Feb 16, 2023
e1a62f3
Refactors proposal execution
grarco Feb 17, 2023
b5c3c5b
changelog: add #1056
grarco Jan 20, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixes vote memo in governance docs
  • Loading branch information
grarco committed Feb 11, 2023
commit 77a8c298080d694dfcd7a3540245e98a76fd7ff2
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,10 @@ Only validators and delegators can vote. Assuming you have a validator or a dele
namada client vote-proposal \
--proposal-id 0 \
--vote yay \
--memo path \
--signer validator
```

where `--vote` can be either `yay` or `nay`. The optional `memo` field represents the path to a json file econding the data to attach to the vote.
where `--vote` can be either `yay` or `nay`. An optional `memo` field can be attached to the vote for pgf and eth bridge proposals.

## Check the result

Expand Down