PGF 提案 (管理者专用) (PGF proposals (Stewards only))
提议资助 (Proposing funding)
格式化 proposal.json
(Formatting the proposal.json
)
proposal.json
(Formatting the proposal.json
)下面是一个管理者可能提交的 PGFProposal
的示例。请注意,只有管理者才能提交这些提案。
{
"proposal" :{
"content": {
"title": "Stewie for Steward 2024",
"authors": "stewie@heliax.dev",
"discussions-to": "forum.namada.net/t/stewies-manifesto/1",
"created": "2024-01-01T00:00:01Z",
"license": "MIT",
"abstract": "Stewie is running for steward, with a focus on technical research. The technical research I will be focused on will definitely not be for weapons of mass destruction. There is some possibility however that I may be focusing somewhat on open source software for weapons of mass destruction.",
"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",
"voting_start_epoch": 3,
"voting_end_epoch": 6,
"grace_epoch": 12,
},
"data" :
{
"continuous" : [
{
"target": {
"amount": 420,
"address": "<address-of-recipient>"
}
"action" : "add",
},
],
"retro" : [
{
"target": {
"amount": 1337,
"address": "<address-of-recipient>"
}
}
]
},
}
其中 <address-of-recipient>
应更改为资金接收者的地址。
将此文件保存为 PGF_proposal.json
,并将其保存到您的计算机上的某个容易记住的路径中。
提交提案 (Submitting the proposal)
为了提交提案,管理者可以使用以下命令:
namada client init-proposal \
--pgf-proposal \
--data-path PGF_proposal.json
然后将为提案分配一个 proposal-id
,该 id 可用于查询提案。
查询提案 (Querying the proposal)
查询提案的命令如下:
namada client query-proposal \
--proposal-id <the-proposal-id>
Last updated