Skip to content

Commit 02f3e9d

Browse files
authored
release: v2.6.0 (#2360)
* add v2.6.0 upgrade * wire upgrade handler
1 parent 0ac12cc commit 02f3e9d

File tree

3 files changed

+19
-0
lines changed

3 files changed

+19
-0
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ changelog format](https://keepachangelog.com/en/1.0.0/).
4646
See https://github.com/dangoslen/changelog-enforcer.
4747
-->
4848

49+
## [v2.6.0](https://github.com/NibiruChain/nibiru/releases/tag/v2.6.0) - 2025-08-05
50+
4951
- [#2331](https://github.com/NibiruChain/nibiru/pull/2331) - test(evm-e2e): WNIBI tests for deposit, transfer and total supply
5052
- [#2334](https://gittub.com/NibiruChain/nibiru/pull/2334) - feat(evm-embeds): Publish new version for `@nibiruchain/[email protected]`, which updates `NibiruOracleChainLinkLike.sol` to have additional methods used by Aave.
5153
- [#2340](https://github.com/NibiruChain/nibiru/pull/2340) - fix: evm indexer proper parsing of the start block

app/upgrades.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ import (
2929
"github.com/NibiruChain/nibiru/v2/app/upgrades/v2_3_0"
3030
"github.com/NibiruChain/nibiru/v2/app/upgrades/v2_4_0"
3131
"github.com/NibiruChain/nibiru/v2/app/upgrades/v2_5_0"
32+
"github.com/NibiruChain/nibiru/v2/app/upgrades/v2_6_0"
3233
)
3334

3435
var Upgrades = []upgrades.Upgrade{
@@ -46,6 +47,7 @@ var Upgrades = []upgrades.Upgrade{
4647
v2_3_0.Upgrade,
4748
v2_4_0.Upgrade,
4849
v2_5_0.Upgrade,
50+
v2_6_0.Upgrade,
4951
}
5052

5153
func (app *NibiruApp) setupUpgrades() {

app/upgrades/v2_6_0/constants.go

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
package v2_6_0
2+
3+
import (
4+
storetypes "github.com/cosmos/cosmos-sdk/store/types"
5+
6+
"github.com/NibiruChain/nibiru/v2/app/upgrades"
7+
)
8+
9+
const UpgradeName = "v2.6.0"
10+
11+
var Upgrade = upgrades.Upgrade{
12+
UpgradeName: UpgradeName,
13+
CreateUpgradeHandler: upgrades.DefaultUpgradeHandler,
14+
StoreUpgrades: storetypes.StoreUpgrades{},
15+
}

0 commit comments

Comments
 (0)