Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
- [#4167](https://github.com/ignite/cli/pull/4167) Scaffold `int64` instead of `int32` when a field type is `int`
- [#4168](https://github.com/ignite/cli/pull/4168) Bump IBC to `v8.3.1`
- [#4178](https://github.com/ignite/cli/pull/4178) Bump cosmos-sdk to `v0.50.7`
- [#4189](https://github.com/ignite/cli/pull/4189) Deprecate `ignite node` for `ignite connect` app

### Fixes

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ require (
github.com/goccy/go-yaml v1.11.3
github.com/golangci/golangci-lint v1.57.2
github.com/google/go-github/v48 v48.2.0
github.com/google/go-querystring v1.1.0
github.com/gorilla/mux v1.8.1
github.com/hashicorp/go-hclog v1.6.3
github.com/hashicorp/go-plugin v1.6.0
Expand Down Expand Up @@ -270,7 +271,6 @@ require (
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/go-containerregistry v0.19.1 // indirect
github.com/google/go-dap v0.11.0 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/google/pprof v0.0.0-20240509144519-723abb6459b7 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/gordonklaus/ineffassign v0.1.0 // indirect
Expand Down
2 changes: 1 addition & 1 deletion ignite/cmd/account.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ func NewAccount() *cobra.Command {
Short: "Create, delete, and show Ignite accounts",
Long: `Commands for managing Ignite accounts. An Ignite account is a private/public
keypair stored in a keyring. Currently Ignite accounts are used when interacting
with Ignite relayer commands and when using "ignite network" commands.
with Ignite Apps (namely ignite relayer, ignite network and ignite connect).

Note: Ignite account commands are not for managing your chain's keys and accounts. Use
you chain's binary to manage accounts from "config.yml". For example, if your
Expand Down
10 changes: 4 additions & 6 deletions ignite/cmd/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ To get started, create a blockchain:
NewScaffold(),
NewChain(),
NewGenerate(),
NewNode(),
NewAccount(),
NewDocs(),
NewVersion(),
Expand Down Expand Up @@ -148,11 +147,6 @@ func flagSetHome() *flag.FlagSet {
return fs
}

func getHome(cmd *cobra.Command) (home string) {
home, _ = cmd.Flags().GetString(flagHome)
return
}

func flagSetConfig() *flag.FlagSet {
fs := flag.NewFlagSet("", flag.ContinueOnError)
fs.StringP(flagConfig, "c", "", "path to Ignite config file (default: ./config.yml)")
Expand Down Expand Up @@ -239,6 +233,10 @@ func deprecated() []*cobra.Command {
Use: "faucet",
Deprecated: "use `ignite chain faucet` instead.",
},
{
Use: "node",
Deprecated: "use ignite connect app instead (ignite app install -g github.com/ignite/apps/connect).",
},
}
}

Expand Down
80 changes: 0 additions & 80 deletions ignite/cmd/node.go

This file was deleted.

76 changes: 0 additions & 76 deletions ignite/cmd/node_query.go

This file was deleted.

14 changes: 0 additions & 14 deletions ignite/cmd/node_query_bank.go

This file was deleted.

59 changes: 0 additions & 59 deletions ignite/cmd/node_query_bank_balances.go

This file was deleted.

45 changes: 0 additions & 45 deletions ignite/cmd/node_query_tx.go

This file was deleted.

Loading