base-v1.9.0 to base-v1.10.0
Since the release of v1.10.0
we added votingPowerTokenUnit
to the config setup.
Previously we have defaulted the voting power to be the staking denom but this may not always be the case so we have updated our config making it easier to set the voting power. Please refer to #614
Update your chain's base branch
$ git fetch --tags
$ git checkout <your chain base>
$ git checkout -b merge/v1.10.0
$ git merge base-v1.10.0
Fix all merge conflicts.
Update votingPowerTokenUnit
Replace the value with the token unit that represents the correct exponent for voting power. For example:
"primaryTokenUnit": "nanolike",
"votingPowerTokenUnit": "ulike",
"tokenUnits": {
"nanolike": {
"display": "like",
"exponent": 9
},
"ulike": {
"display": "like",
"exponent": 6
}
},