-
Notifications
You must be signed in to change notification settings - Fork 124
fix: add 08-22-2026 fixes #370
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
Closed
Closed
Changes from 2 commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
619ebaf
feat: add v7.3.2 upgrade with evm fork v0.6.2-fork.1
mattkii 402521e
docs: add public release for hotfix
mattkii 393491a
fix: block vesting account creation in ante
mattkii c3b0c70
fix: test
mattkii adc90ef
fix: block vesting account creation in ante (#371)
mattkii 66b06bd
feat: create v7.4.0 upgrade handler
AndresRamirez9912 3cd9fbb
feat: add upgrade plan v7.4.0 and update preblocker
AndresRamirez9912 9fbfad9
chore: add validations for the upgrade to be done only on mainnet
AndresRamirez9912 a0b14cf
feat: add blacklist for block address
mattkii b15ce26
fix: block through BankKeeper
mattkii a4f2abc
fix: remove from ante and go through bank
mattkii 8fd143a
fix: rebase to v7.4.0
mattkii 8e52765
feat: ignore token transfer in chains different than mainnet
AndresRamirez9912 e9ea648
feat: Prepare v7.4.0 (#373)
AndresRamirez9912 c5bc65b
Merge remote-tracking branch 'origin/feat/v7.3.2-evm-hotfix' into fix…
AndresRamirez9912 49f6764
chore: centralize list of blocked address
AndresRamirez9912 f1da507
fix: remove convert blocked address list to hashmap
AndresRamirez9912 af89098
feat: add blacklist for blocked addresses (#372)
AndresRamirez9912 6338227
chore: bump evm to fork 2 (#374)
jhelison File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,18 @@ | ||
| package v732 | ||
|
|
||
| import ( | ||
| "github.com/kiichain/kiichain/v7/app/upgrades" | ||
| ) | ||
|
|
||
| const ( | ||
| // UpgradeName is the name of the upgrade | ||
| UpgradeName = "v7.3.2" | ||
| ) | ||
|
|
||
| // Upgrade defines the coordinated upgrade that ships the August 2026 Cosmos EVM | ||
| // hotfix. No store migrations are required; the handler only runs pending | ||
| // module migrations so validators switch binaries at the same height. | ||
| var Upgrade = upgrades.Upgrade{ | ||
| UpgradeName: UpgradeName, | ||
| CreateUpgradeHandler: CreateUpgradeHandler, | ||
| } |
This file contains hidden or 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,36 @@ | ||
| package v732 | ||
|
|
||
| import ( | ||
| "context" | ||
|
|
||
| upgradetypes "cosmossdk.io/x/upgrade/types" | ||
|
|
||
| sdk "github.com/cosmos/cosmos-sdk/types" | ||
| "github.com/cosmos/cosmos-sdk/types/module" | ||
|
|
||
| "github.com/kiichain/kiichain/v7/app/keepers" | ||
| ) | ||
|
|
||
| // CreateUpgradeHandler creates the upgrade handler for the v7.3.2 upgrade. | ||
| // This upgrade coordinates the binary switch for the August 2026 Cosmos EVM | ||
| // hotfix. No custom state migrations are needed, so the handler only runs | ||
| // pending module migrations. | ||
| func CreateUpgradeHandler( | ||
| mm *module.Manager, | ||
| configurator module.Configurator, | ||
| _ *keepers.AppKeepers, | ||
| ) upgradetypes.UpgradeHandler { | ||
| return func(c context.Context, _ upgradetypes.Plan, vm module.VersionMap) (module.VersionMap, error) { | ||
| ctx := sdk.UnwrapSDKContext(c) | ||
|
|
||
| ctx.Logger().Info("Starting module migrations for v7.3.2...") | ||
|
|
||
| vm, err := mm.RunMigrations(ctx, configurator, vm) | ||
| if err != nil { | ||
| return vm, err | ||
| } | ||
|
|
||
| ctx.Logger().Info("Upgrade v7.3.2 complete") | ||
| return vm, nil | ||
| } | ||
| } |
This file contains hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.