cosmos / chain-registry

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

how to future proof tendermint_version key?

doggystylez opened this issue · comments

cosmos-sdk has already replaced tendermint as a dependency with cometbft

generalize somehow?
e.g., consensus: "tendermint 0.3" consensus: "cometbft 2.0"

perhaps an array like

...
"consensus": [
  "type": "tendermint",
  "version": "0.34"
],
...

I like that.
minor detail, but instead of an array, should be an object?
...
"consensus": {
"type": "tendermint",
"version": "0.34"
},
...