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

docs: update migration docs for upgrade proposal in relation to ICS27 #920

Merged
merged 4 commits into from
Feb 15, 2022
Merged
Changes from 1 commit
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
28 changes: 28 additions & 0 deletions docs/migrations/v2-to-v3.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ No genesis or in-place migrations are required when upgrading from v1 or v2 of i

## Chains


colin-axner marked this conversation as resolved.
Show resolved Hide resolved
### ICS20

The `transferkeeper.NewKeeper(...)` now takes in an ICS4Wrapper.
Expand All @@ -28,6 +29,33 @@ The ICS4Wrapper should be the IBC Channel Keeper unless ICS 20 is being connecte
ICS27 Interchain Accounts has been added as a supported IBC application of ibc-go.
Please see the [ICS27 documentation](../app-modules/interchain-accounts/overview.md) for more information.

### Upgrade Proposal

If the chain will adopt ICS27, it must set the appropriate params during the execution of the upgrade handler in `app.go`:
```go
app.UpgradeKeeper.SetUpgradeHandler("v3",
func(ctx sdk.Context, _ upgradetypes.Plan, vm module.VersionMap) (module.VersionMap, error) {
// set ICS27 Host submodule params
app.ICAHostKeeper.SetParams(ctx, icahosttypes.Params{
HostEnabled: true,
AllowMessages: []string{"/cosmos.bank.v1beta1.MsgSend", ...],
})

// set ICS27 Controller submodule params
app.ICAControllerKeeper.SetParams(ctx, icacontrollertypes.Params{
ControllerEnabled: true,
})

...

return app.mm.RunMigrations(ctx, app.configurator, fromVM)
})

```

The host and controller submodule params only need to be set if you integrate those submodules.
If a chain chooses not to integrate a controller submodule, it does not need to set the controller params.
colin-axner marked this conversation as resolved.
Show resolved Hide resolved

## IBC Apps


Expand Down