-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
169 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package v4 | ||
|
||
// UpgradeName defines the on-chain upgrade name for the Migaloo v3.0.2 upgrade. | ||
// this upgrade includes the fix for pfm | ||
const UpgradeName = "v4.1.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
package v4 | ||
|
||
import ( | ||
"github.com/cosmos/cosmos-sdk/baseapp" | ||
sdk "github.com/cosmos/cosmos-sdk/types" | ||
"github.com/cosmos/cosmos-sdk/types/module" | ||
consensuskeeper "github.com/cosmos/cosmos-sdk/x/consensus/keeper" | ||
paramskeeper "github.com/cosmos/cosmos-sdk/x/params/keeper" | ||
paramstypes "github.com/cosmos/cosmos-sdk/x/params/types" | ||
upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" | ||
icacontrollerkeeper "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/keeper" | ||
icacontrollertypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" | ||
clientkeeper "github.com/cosmos/ibc-go/v7/modules/core/02-client/keeper" | ||
ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" | ||
) | ||
|
||
// CreateUpgradeHandler small security fix, can be a no-op, running mm.RunMigarions just to be sure | ||
func CreateUpgradeHandler( | ||
mm *module.Manager, | ||
configurator module.Configurator, | ||
clientKeeper clientkeeper.Keeper, | ||
paramsKeeper paramskeeper.Keeper, | ||
consensusParamsKeeper consensuskeeper.Keeper, | ||
icacontrollerKeeper icacontrollerkeeper.Keeper, | ||
) upgradetypes.UpgradeHandler { | ||
return func(ctx sdk.Context, _plan upgradetypes.Plan, fromVM module.VersionMap) (module.VersionMap, error) { | ||
// READ: https://github.com/cosmos/cosmos-sdk/blob/v0.47.4/UPGRADING.md#xconsensus | ||
baseAppLegacySS := paramsKeeper.Subspace(baseapp.Paramspace). | ||
WithKeyTable(paramstypes.ConsensusParamsKeyTable()) | ||
baseapp.MigrateParams(ctx, baseAppLegacySS, &consensusParamsKeeper) | ||
|
||
// READ: https://github.com/cosmos/ibc-go/blob/v7.2.0/docs/migrations/v7-to-v7_1.md#chains | ||
params := clientKeeper.GetParams(ctx) | ||
params.AllowedClients = append(params.AllowedClients, ibcexported.Localhost) | ||
clientKeeper.SetParams(ctx, params) | ||
|
||
// READ: https://github.com/terra-money/core/issues/166 | ||
icacontrollerKeeper.SetParams(ctx, icacontrollertypes.DefaultParams()) | ||
|
||
return mm.RunMigrations(ctx, configurator, fromVM) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
package v4_test | ||
|
||
import ( | ||
"testing" | ||
|
||
apptesting "github.com/White-Whale-Defi-Platform/migaloo-chain/v4/app" | ||
abci "github.com/cometbft/cometbft/abci/types" | ||
upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" | ||
"github.com/stretchr/testify/suite" | ||
) | ||
|
||
const ( | ||
v4UpgradeHeight = int64(10) | ||
) | ||
|
||
type UpgradeTestSuite struct { | ||
apptesting.KeeperTestHelper | ||
} | ||
|
||
func TestUpgradeTestSuite(t *testing.T) { | ||
suite.Run(t, new(UpgradeTestSuite)) | ||
} | ||
|
||
func (suite *UpgradeTestSuite) TestUpgrade() { | ||
suite.Setup(suite.T(), apptesting.SimAppChainID) | ||
dummyUpgrade(suite) | ||
feeBurnParam := suite.App.FeeBurnKeeper.GetParams(suite.Ctx) | ||
suite.Require().Equal("0", feeBurnParam.GetTxFeeBurnPercent()) | ||
} | ||
|
||
func dummyUpgrade(s *UpgradeTestSuite) { | ||
s.Ctx = s.Ctx.WithBlockHeight(v4UpgradeHeight - 1) | ||
plan := upgradetypes.Plan{Name: "v4.1.0", Height: v4UpgradeHeight} | ||
err := s.App.UpgradeKeeper.ScheduleUpgrade(s.Ctx, plan) | ||
s.Require().NoError(err) | ||
_, exists := s.App.UpgradeKeeper.GetUpgradePlan(s.Ctx) | ||
s.Require().True(exists) | ||
|
||
s.Ctx = s.Ctx.WithBlockHeight(v4UpgradeHeight) | ||
|
||
s.Require().NotPanics(func() { | ||
beginBlockRequest := abci.RequestBeginBlock{} | ||
s.App.BeginBlocker(s.Ctx, beginBlockRequest) | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package v4 | ||
|
||
const ( | ||
UpgradeHeight = 226753 | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package v4 | ||
|
||
import ( | ||
feeburnkeeper "github.com/White-Whale-Defi-Platform/migaloo-chain/v4/x/feeburn/keeper" | ||
sdk "github.com/cosmos/cosmos-sdk/types" | ||
authkeeper "github.com/cosmos/cosmos-sdk/x/auth/keeper" | ||
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" | ||
) | ||
|
||
func UpdateAccountPermissionAndFeeBurnPercent(ctx sdk.Context, fk feeburnkeeper.Keeper, ak authkeeper.AccountKeeper) { | ||
// Burning module permissions | ||
moduleAccI := ak.GetModuleAccount(ctx, authtypes.FeeCollectorName) | ||
moduleAcc := moduleAccI.(*authtypes.ModuleAccount) | ||
moduleAcc.Permissions = []string{authtypes.Burner} | ||
ak.SetModuleAccount(ctx, moduleAcc) | ||
|
||
// set default fee_burn_percent to 10 | ||
feeBurnParams := fk.GetParams(ctx) | ||
feeBurnParams.TxFeeBurnPercent = "10" | ||
|
||
_ = fk.SetParams(ctx, feeBurnParams) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters