cli
cli copied to clipboard
Ignite is a CLI tool and hub designed for constructing Proof of Stake Blockchains rooted in Cosmos-SDK
- [ ] rm need of `--chain-id` by using `APPD_CHAIN_ID=xxx` on start - [ ] use `~/.app` - [ ] warn if `~/.app` exists on `app` cmd. - [ ]...
**Is your feature request related to a problem? Please describe.** It is very good to have a command which helps in creating all the necessary files, methods, and registrations for...
- [ ] https://github.com/ignite/cli/issues/2658 - [x] Remove [`cosmosibckeeper`](https://github.com/ignite/cli/tree/v0.23.0/ignite/pkg/cosmosibckeeper) Context: https://github.com/CosmWasm/wasmd/issues/941#issuecomment-1222452587
Add a flag `--no-registration` to only scaffold module without registering it to the `app.go` so the module is part of the codebase but not part of the blockchain Example usage:...
The next version of Cosmos SDK has an NFT module. Let's make sure users can add it as a dependency for a module they scaffold.
**To Reproduce** ``` starport scaffold chain github.com/cosmonaut/hello ``` ``` error while running command /tmp/protoc3149348761: : fork/exec /tmp/protoc3149348761: permission denied ``` From Discord, waiting for more details.
Adding the field type name `list()` (or other format), that would allow to scaffold a nested `list` inside a type ``` starport scaffold type comment content starport scaffold list post...
**Describe the bug** When running the following commands I get an issue with adding module with `auth` dependency becuase it doesn't cotain AuthKeeper. This error is also very unclear and...
Inside a brand new chain: ``` ~/blog % starport s message create-post foo bar modify proto/blog/tx.proto create testutil/nullify/nullify.go modify x/blog/client/cli/tx.go create x/blog/client/cli/tx_create_post.go modify x/blog/handler.go create x/blog/keeper/msg_server_create_post.go modify x/blog/types/codec.go create x/blog/types/message_create_post.go...
Depends on: https://github.com/tendermint/starport/pull/1733 Scaffold the tests associated to an indexed list: - cli tests - keeper tests - type tests - genesis tests - simapp tests (depends on https://github.com/tendermint/starport/pull/1731)