Some checks failed
CodeQL / Analyze (push) Waiting to run
golangci-lint / lint (push) Waiting to run
Tests / Code Coverage / build (amd64) (push) Waiting to run
Tests / Code Coverage / build (arm64) (push) Waiting to run
Tests / Code Coverage / unit-tests (map[additional-args:-tags="test_e2e" name:e2e path:./e2e]) (push) Waiting to run
Tests / Code Coverage / unit-tests (map[name:08-wasm path:./modules/light-clients/08-wasm]) (push) Waiting to run
Tests / Code Coverage / unit-tests (map[name:ibc-go path:.]) (push) Waiting to run
Docker Build & Push Simapp (main) / docker-build (push) Has been cancelled
86 lines
3.2 KiB
Go
86 lines
3.2 KiB
Go
package upgrades
|
|
|
|
import (
|
|
"context"
|
|
|
|
upgradetypes "cosmossdk.io/x/upgrade/types"
|
|
|
|
"git.cw.tr/mukan-network/mukan-sdk/baseapp"
|
|
"git.cw.tr/mukan-network/mukan-sdk/codec"
|
|
sdk "git.cw.tr/mukan-network/mukan-sdk/types"
|
|
"git.cw.tr/mukan-network/mukan-sdk/types/module"
|
|
consensusparamskeeper "git.cw.tr/mukan-network/mukan-sdk/x/consensus/keeper"
|
|
paramskeeper "git.cw.tr/mukan-network/mukan-sdk/x/params/keeper"
|
|
paramstypes "git.cw.tr/mukan-network/mukan-sdk/x/params/types"
|
|
|
|
clientkeeper "git.cw.tr/mukan-network/mukan-ibc/modules/core/02-client/keeper"
|
|
"git.cw.tr/mukan-network/mukan-ibc/modules/core/exported"
|
|
ibctmmigrations "git.cw.tr/mukan-network/mukan-ibc/modules/light-clients/07-tendermint/migrations"
|
|
)
|
|
|
|
const (
|
|
// V7 defines the upgrade name for the ibc-go/v7 upgrade handler.
|
|
V7 = "v7"
|
|
// V7_1 defines the upgrade name for the ibc-go/v7.1 upgrade handler.
|
|
V7_1 = "v7.1"
|
|
// V8 defines the upgrade name for the ibc-go/v8 upgrade handler.
|
|
V8 = "v8"
|
|
// V8_1 defines the upgrade name for the ibc-go/v8.1 upgrade handler.
|
|
V8_1 = "v8.1"
|
|
// V10 defines the upgrade name for the ibc-go/v10 upgrade handler.
|
|
V10 = "v10"
|
|
)
|
|
|
|
// CreateDefaultUpgradeHandler creates an upgrade handler which can be used for regular upgrade tests
|
|
// that do not require special logic
|
|
func CreateDefaultUpgradeHandler(
|
|
mm *module.Manager,
|
|
configurator module.Configurator,
|
|
) upgradetypes.UpgradeHandler {
|
|
return func(ctx context.Context, _ upgradetypes.Plan, vm module.VersionMap) (module.VersionMap, error) {
|
|
return mm.RunMigrations(ctx, configurator, vm)
|
|
}
|
|
}
|
|
|
|
// CreateV7UpgradeHandler creates an upgrade handler for the ibc-go/v7 SimApp upgrade.
|
|
func CreateV7UpgradeHandler(
|
|
mm *module.Manager,
|
|
configurator module.Configurator,
|
|
cdc codec.BinaryCodec,
|
|
clientKeeper clientkeeper.Keeper,
|
|
consensusParamsKeeper consensusparamskeeper.Keeper,
|
|
paramsKeeper paramskeeper.Keeper,
|
|
) upgradetypes.UpgradeHandler {
|
|
return func(goCtx context.Context, _ upgradetypes.Plan, vm module.VersionMap) (module.VersionMap, error) {
|
|
ctx := sdk.UnwrapSDKContext(goCtx)
|
|
// OPTIONAL: prune expired tendermint consensus states to save storage space
|
|
if _, err := ibctmmigrations.PruneExpiredConsensusStates(ctx, cdc, &clientKeeper); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
legacyBaseAppSubspace := paramsKeeper.Subspace(baseapp.Paramspace).WithKeyTable(paramstypes.ConsensusParamsKeyTable())
|
|
err := baseapp.MigrateParams(ctx, legacyBaseAppSubspace, consensusParamsKeeper.ParamsStore)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
return mm.RunMigrations(goCtx, configurator, vm)
|
|
}
|
|
}
|
|
|
|
// CreateV7LocalhostUpgradeHandler creates an upgrade handler for the ibc-go/v7.1 SimApp upgrade.
|
|
func CreateV7LocalhostUpgradeHandler(
|
|
mm *module.Manager,
|
|
configurator module.Configurator,
|
|
clientKeeper clientkeeper.Keeper,
|
|
) upgradetypes.UpgradeHandler {
|
|
return func(goCtx context.Context, _ upgradetypes.Plan, vm module.VersionMap) (module.VersionMap, error) {
|
|
ctx := sdk.UnwrapSDKContext(goCtx)
|
|
// explicitly update the IBC 02-client params, adding the localhost client type
|
|
params := clientKeeper.GetParams(ctx)
|
|
params.AllowedClients = append(params.AllowedClients, exported.Localhost)
|
|
clientKeeper.SetParams(ctx, params)
|
|
|
|
return mm.RunMigrations(goCtx, configurator, vm)
|
|
}
|
|
}
|