Skip to content
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
3 changes: 2 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,11 @@
### 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.
- [#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.
- [#4601](https://github.com/ignite/cli/pull/4601) Add `appregistry` as default plugin

### Fixes

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

const (
PluginRelayerVersion = "hermes/v0.2.8"
PluginRelayerPath = "github.com/ignite/apps/hermes@" + PluginRelayerVersion
PluginRelayerVersion = "hermes/v0.2.8"
PluginRelayerPath = "github.com/ignite/apps/hermes@" + PluginRelayerVersion
PluginAppRegistryVersion = "appregistry/v0.1.2"
PluginAppRegistryPath = "github.com/ignite/apps/appregistry@" + PluginAppRegistryVersion
)

// defaultPlugins holds the plugin that are considered trustable and for which
Expand All @@ -30,6 +32,12 @@ var defaultPlugins = []defaultPlugin{
aliases: []string{"r"},
path: PluginRelayerPath,
},
{
use: "appregistry",
short: "Browse the Ignite App Registry App",
aliases: []string{"mp"},
path: PluginAppRegistryPath,
},
}

// ensureDefaultPlugins ensures that all defaultPlugins are whether registered
Expand Down