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

Update examples and commands of the PFG funding #323

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
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
19 changes: 9 additions & 10 deletions packages/docs/pages/users/public-goods-stewards/proposing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -19,26 +19,25 @@ Below is an example of a `PGFProposal` that a governance participant could submi
"motivation": "Nobody knows technical research better than me. Trust me. I know it. I have the best technical research. I will be the best steward. Last night, Namada called me and said, Stewie, thank you. I will make public goods funding great again",
"details": "As a genius baby, I possess an unmatched level of intelligence and a visionary mindset. I will utilize these qualities to solve the most complex problems, and direct public goods funding towards weapons of mass destruction ... i mean open source software for weapons of mass destruction"
},
"author": "stewie",
"author": "<address-of-author>",
"voting_start_epoch": 3,
"voting_end_epoch": 6,
"grace_epoch": 12
},
"data": {
"continuous": [
{
"target": {
"amount": 420,
"address": "<address-of-recipient>"
},
"action": "add"
"Internal": {
"amount": "1000",
"target": "<address-of-recipient>"
}
}
],
"retro": [
{
"target": {
"amount": 1337,
"address": "<address-of-recipient>"
"Internal": {
"amount": "1500",
"target": "<address-of-recipient>"
}
}
]
Expand All @@ -55,7 +54,7 @@ In order to submit the proposal, the governance participant can use the followin

```shell copy
namada client init-proposal \
--pgf-proposal \
--pgf-funding \
--data-path PGF_proposal.json
```

Expand Down
Loading