File tree Expand file tree Collapse file tree 3 files changed +19
-0
lines changed
Expand file tree Collapse file tree 3 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -47,6 +47,8 @@ changelog format](https://keepachangelog.com/en/1.0.0/).
4747See 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
Original file line number Diff line number Diff 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
3637var 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
5557func (app * NibiruApp ) setupUpgrades () {
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments