Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: remove network as default plugin #4586

Merged
merged 8 commits into from
Apr 2, 2025
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 2 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
### Changes

- [#4569](https://github.com/ignite/cli/pull/4569) Add flags to set coin type on commands. Add getters for bech32 prefix and coin type.
- [#4586](https://github.com/ignite/cli/pull/4586) Remove network as default plugin.
- [#4589](https://github.com/ignite/cli/pull/4589) Fix broken links
- [#4589](https://github.com/ignite/cli/pull/4589) Resolve broken links.
- [#4596](https://github.com/ignite/cli/pull/4596) Add default `openapi.yml` when skipping proto gen.

Expand Down
8 changes: 0 additions & 8 deletions ignite/cmd/plugin_default.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ type defaultPlugin struct {
}

const (
PluginNetworkVersion = "v0.2.2"
PluginNetworkPath = "github.com/ignite/cli-plugin-network@" + PluginNetworkVersion
PluginRelayerVersion = "hermes/v0.2.8"
PluginRelayerPath = "github.com/ignite/apps/hermes@" + PluginRelayerVersion
)
Expand All @@ -26,12 +24,6 @@ const (
// a command will added if the plugin is not already installed.
// When the user executes that command, the plugin is automatically installed.
var defaultPlugins = []defaultPlugin{
{
use: "network",
short: "Launch a blockchain in production",
aliases: []string{"n"},
path: PluginNetworkPath,
},
{
use: "relayer",
short: "Connect blockchains with an IBC relayer",
Expand Down
4 changes: 2 additions & 2 deletions ignite/cmd/plugin_default_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func TestEnsureDefaultPlugins(t *testing.T) {
name: "should not add because already present in config",
cfg: &pluginsconfig.Config{
Apps: []pluginsconfig.Plugin{{
Path: "github.com/ignite/cli-plugin-network@v42",
Path: PluginRelayerPath,
}},
},
expectAddedInCommand: false,
Expand All @@ -36,7 +36,7 @@ func TestEnsureDefaultPlugins(t *testing.T) {

ensureDefaultPlugins(cmd, tt.cfg)

expectedCmd := findCommandByPath(cmd, "ignite network")
expectedCmd := findCommandByPath(cmd, "ignite relayer")
if tt.expectAddedInCommand {
assert.NotNil(t, expectedCmd)
} else {
Expand Down
4 changes: 0 additions & 4 deletions ignite/internal/tools/gen-cli-docs/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,6 @@ func run() error {
if err != nil {
return err
}
cfg.Apps = append(cfg.Apps, pluginsconfig.Plugin{
// Add network plugin
Path: ignitecmd.PluginNetworkPath,
})
if err := cfg.Save(); err != nil {
return err
}
Expand Down
227 changes: 0 additions & 227 deletions integration/network/genesis.json

This file was deleted.

Loading
Loading