github.com/Finschia/finschia-sdk@v0.48.1/x/gov/spec/06_params.md (about)

     1  <!--
     2  order: 6
     3  -->
     4  
     5  # Parameters
     6  
     7  The governance module contains the following parameters:
     8  
     9  | Key           | Type   | Example                                                                                            |
    10  |---------------|--------|----------------------------------------------------------------------------------------------------|
    11  | depositparams | object | {"min_deposit":[{"denom":"uatom","amount":"10000000"}],"max_deposit_period":"172800000000000"}     |
    12  | votingparams  | object | {"voting_period":"172800000000000"}                                                                |
    13  | tallyparams   | object | {"quorum":"0.334000000000000000","threshold":"0.500000000000000000","veto":"0.334000000000000000"} |
    14  
    15  ## SubKeys
    16  
    17  | Key                | Type             | Example                                 |
    18  |--------------------|------------------|-----------------------------------------|
    19  | min_deposit        | array (coins)    | [{"denom":"uatom","amount":"10000000"}] |
    20  | max_deposit_period | string (time ns) | "172800000000000"                       |
    21  | voting_period      | string (time ns) | "172800000000000"                       |
    22  | quorum             | string (dec)     | "0.334000000000000000"                  |
    23  | threshold          | string (dec)     | "0.500000000000000000"                  |
    24  | veto               | string (dec)     | "0.334000000000000000"                  |
    25  
    26  __NOTE__: The governance module contains parameters that are objects unlike other
    27  modules. If only a subset of parameters are desired to be changed, only they need
    28  to be included and not the entire parameter object structure.