For the complete documentation index, see llms.txt. This page is also available as Markdown.

Blockchain Parameter Change Proposal

Proposal Structure

This proposal requires information to be passed in JSON file as follows:

{
    "title": "<Proposal Title>",
    "description": "<Description of Proposal>",
    "changes": [
      {
        "subspace": "<Module Name>",
        "key": "<Module's param name in UpperCamelCase>",
        "value": "<Proposed value>"
      }
    ],
    "deposit": "<Deposit (in uhid) for the proposal>"
}

Example:

{
    "title": "Change in Validator Node Downtime Penalty",
    "description": "This proposal brings about change in the validator node downtime penalty to 0.365",
    "changes": [
      {
        "subspace": "slashing",
        "key": "SlashFractionDowntime",
        "value": "0.365000000000000000"
      }
    ],
    "deposit": "50000000uhid"
}

CLI

  • Run the following to submit a blockchain parameter change proposal:

Last updated