Param change

Generate a parameter change proposal transaction

Generate a parameter change proposal transaction

POSThttps://akt.nownodes.io/gov/proposals/param_change
Body

The parameter change proposal body that contains all parameter changes

base_reqobject
titlestring
descriptionstring
proposerstring

bech32 encoded address

Example: "cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27"
depositarray of object
changesarray of object
Response

The transaction was succesfully generated

Body
msgarray of string
feeobject
memostring
signatureobject
Request
const response = await fetch('https://akt.nownodes.io/gov/proposals/param_change', {
    method: 'POST',
    headers: {
      "Content-Type": "application/json"
    },
    body: JSON.stringify({}),
});
const data = await response.json();
Response
{
  "msg": [
    "text"
  ],
  "fee": {
    "gas": "text",
    "amount": [
      {
        "denom": "stake",
        "amount": "50"
      }
    ]
  },
  "memo": "text",
  "signature": {
    "signature": "MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY=",
    "pub_key": {
      "type": "tendermint/PubKeySecp256k1",
      "value": "Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH"
    },
    "account_number": "0",
    "sequence": "0"
  }
}