cli
cli copied to clipboard
Would be nice to have a `ignite module list` command
Right now it's a bit much to dive into app.go to figure it out. It looks like there are a lot of modules in there, although on http://0.0.0.0:12345/#/ it tells me that "We've installed the auth, bank, and staking modules for you."
What would the module list do? Analyze app.go dynamically and tell, which modules are installed? Could be useful, perhaps.
Under the current Cosmos-SDK, all the used modules are passed to module.NewManager method, we could then list them from this call if this feature makes sense.
Though this way of passing modules could change with the future refacto
Done in module registry app poc.