Params

Proposals

Params module governance proposal types.

class terra_sdk.core.params.proposals.ParamChange(subspace, key, value)[source]
to_data()[source]

Converts the object to its JSON-serializable Python data representation.

Return type

dict

class terra_sdk.core.params.proposals.ParameterChangeProposal(title, description, changes)[source]

Proposal to alter the blockchain parameters. Changes would be effective as soon as the proposal is passed.

Parameters
  • title (str) – proposal title

  • description (str) – proposal description

  • change (List[ParamChange]) – list of parameter changes

to_data()[source]

Converts the object to its JSON-serializable Python data representation.

Return type

dict

type_amino = 'params/ParameterChangeProposal'
type_url = '/cosmos.params.v1beta1.ParameterChangeProposal'