创建提案 (Creating Proposals)

通过创建和支持新提案参与 Sei 治理 Participate in Sei governance by creating and supporting new proposals

创建新提案 (Creating a New Proposal)

Anybody can create a governance proposal which will start in the deposit period, and will be promoted to voting period once the minimum deposit amount is met. Anyone can deposit to a proposal in deposit period.

任何人都可以创建一个治理提案,该提案将从存入质押代币开始,一旦达到最低质押额就将被提升到投票期。任何人都可以在质押期内存款到提案。

To submit a new proposal, you can send a transaction with the proposal details and a specified deposit amount. This deposit amount doesn't have to be greater than the MinDeposit (minimum to enter voting) amount, but until the overall deposit amount is met, the proposal will remain in deposit period.

要提交新提案,您可以发送包含提案详细信息和指定质押存款金额的交易。此存款金额不必大于 MinDeposit(进入投票的最低金额),在满足总体存款金额之前,该提案将一直处于存款期。

A submit-proposal transaction must include a nonzero positive deposit amount 提交提案交易必须包含非零正存款金额

例子 Example

seid tx gov submit-proposal param-change proposal.json --from {proposer_key}

You can also view existing proposal details and the state of the proposal (deposit period, voting period, etc) by querying for a specific proposal id.

您还可以通过查询特定提案 ID 来查看现有提案详情和状态(存款期、投票期等)。

例子 Example

seid query gov proposal {proposal_id}

You can also query for the proposer for a specified proposal to view the address that initially submitted the proposal

也可以查询指定提案的提案人(proposer),查看最初提交提案的地址

例子 Example

seid query gov proposer {proposal_id}

If a created proposal is in a pending deposit period, you can add to the deposits in order to contribute for the proposal to enter the voting period. The deposit amount is denominated in amount to deposit and the deposit token such as 10000sei.

如果创建的提案处于待定的存款期,您可以添加存款,来帮助提案进入投票期。存款金额用待存入的金额和代币(例如“10000sei”)表示。

If a proposal fails to meet MinDeposit before the deposit period ends, ALL deposits are burned 如果提案在存款期结束前未能满足 MinDeposit,则所有存款将被销毁

例子 Example

seid tx gov deposit {proposal_id} {deposit_amount} --from {your_key}

A user can query the deposit made by a specific address on a specific proposal. This can be used to see your current deposit amount or to see the amount another account deposited.

用户可以查询特定地址对特定提案的存款。这可用于查看您当前存款金额或查看另一个帐户存入的金额。

例子 Example

seid query gov deposit {proposal_id} {depositor_addr}

You can also query all deposits made for a proposal with a separate query command.

您还可以使用单独的查询命令来查询向提案发出的所有存款。

例子 Example

seid query gov deposits {proposal_id}

最后更新于