diff --git a/changelog.md b/changelog.md index 9888818528..273cfbd6d2 100644 --- a/changelog.md +++ b/changelog.md @@ -27,6 +27,7 @@ ### Fixes +- [#3386](https://github.com/ignite/cli/issues/3386) Prevent scaffolding of default module called "ibc" - [#3592](https://github.com/ignite/cli/pull/3592) Fix `pkg/protoanalysis` to support HTTP rule parameter arguments - [#3598](https://github.com/ignite/cli/pull/3598) Fix consensus param keeper constructor key in `app.go` - [#3610](https://github.com/ignite/cli/pull/3610) Fix overflow issue of cosmos faucet in `pkg/cosmosfaucet/transfer.go` and `pkg/cosmosfaucet/cosmosfaucet.go` diff --git a/ignite/services/scaffolder/init.go b/ignite/services/scaffolder/init.go index 22e530a498..e1c25b9f43 100644 --- a/ignite/services/scaffolder/init.go +++ b/ignite/services/scaffolder/init.go @@ -132,6 +132,10 @@ func generate( Params: paramsFields, IsIBC: false, } + // Check if the module name is valid + if err := checkModuleName(opts.AppPath, opts.ModuleName); err != nil { + return err + } g, err = modulecreate.NewGenerator(opts) if err != nil { return err diff --git a/readme.md b/readme.md index ff12192ace..e8f542b858 100644 --- a/readme.md +++ b/readme.md @@ -1,4 +1,30 @@ -# Ignite CLI +
+

Ignite

+
+ +
+ + License: Apache-2.0 + + + GoDoc + + + Go report card + + +
+
+ + Lines Of Code + + Test Status + Lint Status +
![Ignite CLI](./assets/ignite-cli.png)