Module versions

ModuleVersions queries the list of module versions from state.

Since: cosmos-sdk 0.43

GEThttps://stride.nownodes.io/cosmos/upgrade/v1beta1/module_versions
Query parameters
Response

A successful response.

Body
module_versionsarray of object

module_versions is a list of module names with their consensus versions.

Request
const response = await fetch('https://stride.nownodes.io/cosmos/upgrade/v1beta1/module_versions', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "module_versions": [
    {
      "name": "text",
      "version": "text"
    }
  ]
}