Skip to content

Commit 9000cf3

Browse files
authored
chore: v2.8.0 upgrade handler (#2411)
1 parent f8d9b77 commit 9000cf3

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
@@ -47,6 +47,8 @@ changelog format](https://keepachangelog.com/en/1.0.0/).
4747
See https://github.com/dangoslen/changelog-enforcer.
4848
-->
4949

50+
## [v2.8.0](https://github.com/NibiruChain/nibiru/releases/tag/v2.8.0) - 2025-10-24
51+
5052
- [#2385](https://github.com/NibiruChain/nibiru/pull/2385) - evm: 63/64 gas clamp for ERC20 calls; improved VM error surfacing; add composite Chainlink-like oracle
5153
- [#2388](https://github.com/NibiruChain/nibiru/pull/2388) - chore: erc20 token registry new tokens: cbBTC, uBTC
5254
- [#2395](https://github.com/NibiruChain/nibiru/pull/2395) - chore: erc20 token registry new token: ynETHx

app/upgrades.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ import (
3131
"github.com/NibiruChain/nibiru/v2/app/upgrades/v2_5_0"
3232
"github.com/NibiruChain/nibiru/v2/app/upgrades/v2_6_0"
3333
"github.com/NibiruChain/nibiru/v2/app/upgrades/v2_7_0"
34+
"github.com/NibiruChain/nibiru/v2/app/upgrades/v2_8_0"
3435
)
3536

3637
var Upgrades = []upgrades.Upgrade{
@@ -50,6 +51,7 @@ var Upgrades = []upgrades.Upgrade{
5051
v2_5_0.Upgrade,
5152
v2_6_0.Upgrade,
5253
v2_7_0.Upgrade,
54+
v2_8_0.Upgrade,
5355
}
5456

5557
func (app *NibiruApp) setupUpgrades() {

app/upgrades/v2_8_0/v2_8_0.go

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
package v2_8_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.8.0"
10+
11+
var Upgrade = upgrades.Upgrade{
12+
UpgradeName: UpgradeName,
13+
CreateUpgradeHandler: upgrades.DefaultUpgradeHandler,
14+
StoreUpgrades: storetypes.StoreUpgrades{},
15+
}

0 commit comments

Comments
 (0)