Skip to content

Commit 298cc74

Browse files
committed
bumped major version
1 parent b72f94f commit 298cc74

File tree

611 files changed

+1309
-1309
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

611 files changed

+1309
-1309
lines changed

app/ante_handler.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import (
1414
ibckeeper "github.com/cosmos/ibc-go/v10/modules/core/keeper"
1515
feemarketante "github.com/skip-mev/feemarket/x/feemarket/ante"
1616

17-
globalfeeante "github.com/neutron-org/neutron/v9/x/globalfee/ante"
18-
globalfeekeeper "github.com/neutron-org/neutron/v9/x/globalfee/keeper"
17+
globalfeeante "github.com/neutron-org/neutron/v10/x/globalfee/ante"
18+
globalfeekeeper "github.com/neutron-org/neutron/v10/x/globalfee/keeper"
1919
)
2020

2121
// HandlerOptions extend the SDK's AnteHandler options by requiring the IBC

app/app.go

Lines changed: 67 additions & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -10,39 +10,39 @@ import (
1010
"path/filepath"
1111
"time"
1212

13-
nextupgrade "github.com/neutron-org/neutron/v9/app/upgrades/nextupgrade"
14-
v700 "github.com/neutron-org/neutron/v9/app/upgrades/v7.0.0"
15-
v800 "github.com/neutron-org/neutron/v9/app/upgrades/v8.0.0"
16-
v800_rc0 "github.com/neutron-org/neutron/v9/app/upgrades/v8.0.0-rc0"
17-
v810 "github.com/neutron-org/neutron/v9/app/upgrades/v8.1.0"
18-
v820 "github.com/neutron-org/neutron/v9/app/upgrades/v8.2.0"
19-
v900 "github.com/neutron-org/neutron/v9/app/upgrades/v9.0.0"
20-
v910 "github.com/neutron-org/neutron/v9/app/upgrades/v9.1.0"
21-
"github.com/neutron-org/neutron/v9/x/coinfactory"
22-
dynamicfeestypes "github.com/neutron-org/neutron/v9/x/dynamicfees/types"
23-
stateverifier "github.com/neutron-org/neutron/v9/x/state-verifier"
24-
svkeeper "github.com/neutron-org/neutron/v9/x/state-verifier/keeper"
25-
stateverifiertypes "github.com/neutron-org/neutron/v9/x/state-verifier/types"
26-
27-
"github.com/neutron-org/neutron/v9/x/harpoon"
13+
v10_0_0 "github.com/neutron-org/neutron/v10/app/upgrades/v10.0.0"
14+
v700 "github.com/neutron-org/neutron/v10/app/upgrades/v7.0.0"
15+
v800 "github.com/neutron-org/neutron/v10/app/upgrades/v8.0.0"
16+
v800_rc0 "github.com/neutron-org/neutron/v10/app/upgrades/v8.0.0-rc0"
17+
v810 "github.com/neutron-org/neutron/v10/app/upgrades/v8.1.0"
18+
v820 "github.com/neutron-org/neutron/v10/app/upgrades/v8.2.0"
19+
v900 "github.com/neutron-org/neutron/v10/app/upgrades/v9.0.0"
20+
v910 "github.com/neutron-org/neutron/v10/app/upgrades/v9.1.0"
21+
"github.com/neutron-org/neutron/v10/x/coinfactory"
22+
dynamicfeestypes "github.com/neutron-org/neutron/v10/x/dynamicfees/types"
23+
stateverifier "github.com/neutron-org/neutron/v10/x/state-verifier"
24+
svkeeper "github.com/neutron-org/neutron/v10/x/state-verifier/keeper"
25+
stateverifiertypes "github.com/neutron-org/neutron/v10/x/state-verifier/types"
26+
27+
"github.com/neutron-org/neutron/v10/x/harpoon"
2828

2929
"github.com/cosmos/cosmos-sdk/x/staking"
3030
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"
3131

32-
v601 "github.com/neutron-org/neutron/v9/app/upgrades/v6.0.1"
32+
v601 "github.com/neutron-org/neutron/v10/app/upgrades/v6.0.1"
3333

3434
"github.com/skip-mev/feemarket/x/feemarket"
3535
feemarketkeeper "github.com/skip-mev/feemarket/x/feemarket/keeper"
3636
feemarkettypes "github.com/skip-mev/feemarket/x/feemarket/types"
3737

38-
"github.com/neutron-org/neutron/v9/x/dynamicfees"
39-
ibcratelimit "github.com/neutron-org/neutron/v9/x/ibc-rate-limit"
38+
"github.com/neutron-org/neutron/v10/x/dynamicfees"
39+
ibcratelimit "github.com/neutron-org/neutron/v10/x/ibc-rate-limit"
4040

4141
"cosmossdk.io/client/v2/autocli"
4242
"cosmossdk.io/core/appmodule"
4343
authcodec "github.com/cosmos/cosmos-sdk/x/auth/codec"
4444

45-
appconfig "github.com/neutron-org/neutron/v9/app/config"
45+
appconfig "github.com/neutron-org/neutron/v10/app/config"
4646

4747
"github.com/skip-mev/slinky/abci/strategies/aggregator"
4848
"github.com/skip-mev/slinky/x/oracle"
@@ -57,8 +57,8 @@ import (
5757
oracleclient "github.com/skip-mev/slinky/service/clients/oracle"
5858
servicemetrics "github.com/skip-mev/slinky/service/metrics"
5959

60-
"github.com/neutron-org/neutron/v9/x/globalfee"
61-
globalfeetypes "github.com/neutron-org/neutron/v9/x/globalfee/types"
60+
"github.com/neutron-org/neutron/v10/x/globalfee"
61+
globalfeetypes "github.com/neutron-org/neutron/v10/x/globalfee/types"
6262

6363
"cosmossdk.io/log"
6464
db "github.com/cosmos/cosmos-db"
@@ -72,11 +72,11 @@ import (
7272
genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types"
7373
tendermint "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint"
7474

75-
"github.com/neutron-org/neutron/v9/docs"
75+
"github.com/neutron-org/neutron/v10/docs"
7676

77-
"github.com/neutron-org/neutron/v9/app/upgrades"
77+
"github.com/neutron-org/neutron/v10/app/upgrades"
7878

79-
"github.com/neutron-org/neutron/v9/x/cron"
79+
"github.com/neutron-org/neutron/v10/x/cron"
8080

8181
"cosmossdk.io/x/evidence"
8282
evidencekeeper "cosmossdk.io/x/evidence/keeper"
@@ -132,9 +132,9 @@ import (
132132
slashingkeeper "github.com/cosmos/cosmos-sdk/x/slashing/keeper"
133133
slashingtypes "github.com/cosmos/cosmos-sdk/x/slashing/types"
134134

135-
"github.com/neutron-org/neutron/v9/x/revenue"
136-
revenuekeeper "github.com/neutron-org/neutron/v9/x/revenue/keeper"
137-
revenuetypes "github.com/neutron-org/neutron/v9/x/revenue/types"
135+
"github.com/neutron-org/neutron/v10/x/revenue"
136+
revenuekeeper "github.com/neutron-org/neutron/v10/x/revenue/keeper"
137+
revenuetypes "github.com/neutron-org/neutron/v10/x/revenue/types"
138138

139139
// "github.com/cosmos/gaia/v11/x/globalfee"
140140
ica "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts"
@@ -150,8 +150,8 @@ import (
150150
ibcclienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" //nolint:staticcheck
151151
ibcconnectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types"
152152

153-
ibcratelimitkeeper "github.com/neutron-org/neutron/v9/x/ibc-rate-limit/keeper"
154-
ibcratelimittypes "github.com/neutron-org/neutron/v9/x/ibc-rate-limit/types"
153+
ibcratelimitkeeper "github.com/neutron-org/neutron/v10/x/ibc-rate-limit/keeper"
154+
ibcratelimittypes "github.com/neutron-org/neutron/v10/x/ibc-rate-limit/types"
155155

156156
//nolint:staticcheck
157157
ibcporttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types"
@@ -162,15 +162,15 @@ import (
162162

163163
govv1beta1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1"
164164

165-
cronkeeper "github.com/neutron-org/neutron/v9/x/cron/keeper"
166-
crontypes "github.com/neutron-org/neutron/v9/x/cron/types"
165+
cronkeeper "github.com/neutron-org/neutron/v10/x/cron/keeper"
166+
crontypes "github.com/neutron-org/neutron/v10/x/cron/types"
167167

168-
coinfactorykeeper "github.com/neutron-org/neutron/v9/x/coinfactory/keeper"
169-
"github.com/neutron-org/neutron/v9/x/tokenfactory"
170-
tokenfactorykeeper "github.com/neutron-org/neutron/v9/x/tokenfactory/keeper"
171-
tokenfactorytypes "github.com/neutron-org/neutron/v9/x/tokenfactory/types"
168+
coinfactorykeeper "github.com/neutron-org/neutron/v10/x/coinfactory/keeper"
169+
"github.com/neutron-org/neutron/v10/x/tokenfactory"
170+
tokenfactorykeeper "github.com/neutron-org/neutron/v10/x/tokenfactory/keeper"
171+
tokenfactorytypes "github.com/neutron-org/neutron/v10/x/tokenfactory/types"
172172

173-
coinfactorytypes "github.com/neutron-org/neutron/v9/x/coinfactory/types"
173+
coinfactorytypes "github.com/neutron-org/neutron/v10/x/coinfactory/types"
174174

175175
"github.com/cosmos/admin-module/v2/x/adminmodule"
176176
adminmodulecli "github.com/cosmos/admin-module/v2/x/adminmodule/client/cli"
@@ -179,29 +179,29 @@ import (
179179
govclient "github.com/cosmos/cosmos-sdk/x/gov/client"
180180
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"
181181

182-
appparams "github.com/neutron-org/neutron/v9/app/params"
183-
"github.com/neutron-org/neutron/v9/wasmbinding"
184-
"github.com/neutron-org/neutron/v9/x/contractmanager"
185-
contractmanagermodulekeeper "github.com/neutron-org/neutron/v9/x/contractmanager/keeper"
186-
contractmanagermoduletypes "github.com/neutron-org/neutron/v9/x/contractmanager/types"
187-
dynamicfeeskeeper "github.com/neutron-org/neutron/v9/x/dynamicfees/keeper"
188-
"github.com/neutron-org/neutron/v9/x/feeburner"
189-
feeburnerkeeper "github.com/neutron-org/neutron/v9/x/feeburner/keeper"
190-
feeburnertypes "github.com/neutron-org/neutron/v9/x/feeburner/types"
191-
"github.com/neutron-org/neutron/v9/x/feerefunder"
192-
feekeeper "github.com/neutron-org/neutron/v9/x/feerefunder/keeper"
193-
ibchooks "github.com/neutron-org/neutron/v9/x/ibc-hooks"
194-
ibchookstypes "github.com/neutron-org/neutron/v9/x/ibc-hooks/types"
195-
"github.com/neutron-org/neutron/v9/x/interchainqueries"
196-
interchainqueriesmodulekeeper "github.com/neutron-org/neutron/v9/x/interchainqueries/keeper"
197-
interchainqueriesmoduletypes "github.com/neutron-org/neutron/v9/x/interchainqueries/types"
198-
"github.com/neutron-org/neutron/v9/x/interchaintxs"
199-
interchaintxskeeper "github.com/neutron-org/neutron/v9/x/interchaintxs/keeper"
200-
interchaintxstypes "github.com/neutron-org/neutron/v9/x/interchaintxs/types"
201-
transferSudo "github.com/neutron-org/neutron/v9/x/transfer"
202-
wrapkeeper "github.com/neutron-org/neutron/v9/x/transfer/keeper"
203-
204-
feetypes "github.com/neutron-org/neutron/v9/x/feerefunder/types"
182+
appparams "github.com/neutron-org/neutron/v10/app/params"
183+
"github.com/neutron-org/neutron/v10/wasmbinding"
184+
"github.com/neutron-org/neutron/v10/x/contractmanager"
185+
contractmanagermodulekeeper "github.com/neutron-org/neutron/v10/x/contractmanager/keeper"
186+
contractmanagermoduletypes "github.com/neutron-org/neutron/v10/x/contractmanager/types"
187+
dynamicfeeskeeper "github.com/neutron-org/neutron/v10/x/dynamicfees/keeper"
188+
"github.com/neutron-org/neutron/v10/x/feeburner"
189+
feeburnerkeeper "github.com/neutron-org/neutron/v10/x/feeburner/keeper"
190+
feeburnertypes "github.com/neutron-org/neutron/v10/x/feeburner/types"
191+
"github.com/neutron-org/neutron/v10/x/feerefunder"
192+
feekeeper "github.com/neutron-org/neutron/v10/x/feerefunder/keeper"
193+
ibchooks "github.com/neutron-org/neutron/v10/x/ibc-hooks"
194+
ibchookstypes "github.com/neutron-org/neutron/v10/x/ibc-hooks/types"
195+
"github.com/neutron-org/neutron/v10/x/interchainqueries"
196+
interchainqueriesmodulekeeper "github.com/neutron-org/neutron/v10/x/interchainqueries/keeper"
197+
interchainqueriesmoduletypes "github.com/neutron-org/neutron/v10/x/interchainqueries/types"
198+
"github.com/neutron-org/neutron/v10/x/interchaintxs"
199+
interchaintxskeeper "github.com/neutron-org/neutron/v10/x/interchaintxs/keeper"
200+
interchaintxstypes "github.com/neutron-org/neutron/v10/x/interchaintxs/types"
201+
transferSudo "github.com/neutron-org/neutron/v10/x/transfer"
202+
wrapkeeper "github.com/neutron-org/neutron/v10/x/transfer/keeper"
203+
204+
feetypes "github.com/neutron-org/neutron/v10/x/feerefunder/types"
205205

206206
storetypes "cosmossdk.io/store/types"
207207
"github.com/cosmos/cosmos-sdk/x/consensus"
@@ -210,12 +210,12 @@ import (
210210
pfmkeeper "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v10/packetforward/keeper"
211211
pfmtypes "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v10/packetforward/types"
212212

213-
"github.com/neutron-org/neutron/v9/x/dex"
214-
dexkeeper "github.com/neutron-org/neutron/v9/x/dex/keeper"
215-
dextypes "github.com/neutron-org/neutron/v9/x/dex/types"
213+
"github.com/neutron-org/neutron/v10/x/dex"
214+
dexkeeper "github.com/neutron-org/neutron/v10/x/dex/keeper"
215+
dextypes "github.com/neutron-org/neutron/v10/x/dex/types"
216216

217-
globalfeekeeper "github.com/neutron-org/neutron/v9/x/globalfee/keeper"
218-
gmpmiddleware "github.com/neutron-org/neutron/v9/x/gmp"
217+
globalfeekeeper "github.com/neutron-org/neutron/v10/x/globalfee/keeper"
218+
gmpmiddleware "github.com/neutron-org/neutron/v10/x/gmp"
219219

220220
// Block-sdk imports
221221
blocksdkabci "github.com/skip-mev/block-sdk/v2/abci"
@@ -228,8 +228,8 @@ import (
228228
oraclekeeper "github.com/skip-mev/slinky/x/oracle/keeper"
229229
oracletypes "github.com/skip-mev/slinky/x/oracle/types"
230230

231-
harpoonkeeper "github.com/neutron-org/neutron/v9/x/harpoon/keeper"
232-
harpoontypes "github.com/neutron-org/neutron/v9/x/harpoon/types"
231+
harpoonkeeper "github.com/neutron-org/neutron/v10/x/harpoon/keeper"
232+
harpoontypes "github.com/neutron-org/neutron/v10/x/harpoon/types"
233233

234234
runtimeservices "github.com/cosmos/cosmos-sdk/runtime/services"
235235
)
@@ -248,7 +248,7 @@ var (
248248
v820.Upgrade,
249249
v900.Upgrade,
250250
v910.Upgrade,
251-
nextupgrade.Upgrade,
251+
v10_0_0.Upgrade,
252252
}
253253

254254
// DefaultNodeHome default home directories for the application daemon

app/encoding.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package app
33
import (
44
"github.com/cosmos/cosmos-sdk/std"
55

6-
ethcryptocodec "github.com/neutron-org/neutron/v9/x/crypto/codec"
6+
ethcryptocodec "github.com/neutron-org/neutron/v10/x/crypto/codec"
77

8-
"github.com/neutron-org/neutron/v9/app/params"
8+
"github.com/neutron-org/neutron/v10/app/params"
99
)
1010

1111
// MakeEncodingConfig creates an EncodingConfig for testing

app/params/encoding.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"github.com/cosmos/cosmos-sdk/x/auth/tx"
1212
"github.com/cosmos/gogoproto/proto"
1313

14-
neutrontx "github.com/neutron-org/neutron/v9/tx"
14+
neutrontx "github.com/neutron-org/neutron/v10/tx"
1515
)
1616

1717
// EncodingConfig specifies the concrete encoding types to use for a given app.

app/proposals_allowlisting.go

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,23 @@ import (
1818
feemarkettypes "github.com/skip-mev/feemarket/x/feemarket/types"
1919
marketmaptypes "github.com/skip-mev/slinky/x/marketmap/types"
2020

21-
coinfactorytypes "github.com/neutron-org/neutron/v9/x/coinfactory/types"
22-
revenuetypes "github.com/neutron-org/neutron/v9/x/revenue/types"
21+
coinfactorytypes "github.com/neutron-org/neutron/v10/x/coinfactory/types"
22+
revenuetypes "github.com/neutron-org/neutron/v10/x/revenue/types"
2323

24-
harpoontypes "github.com/neutron-org/neutron/v9/x/harpoon/types"
25-
ibcratelimittypes "github.com/neutron-org/neutron/v9/x/ibc-rate-limit/types"
24+
harpoontypes "github.com/neutron-org/neutron/v10/x/harpoon/types"
25+
ibcratelimittypes "github.com/neutron-org/neutron/v10/x/ibc-rate-limit/types"
2626

27-
dynamicfeestypes "github.com/neutron-org/neutron/v9/x/dynamicfees/types"
28-
globalfeetypes "github.com/neutron-org/neutron/v9/x/globalfee/types"
27+
dynamicfeestypes "github.com/neutron-org/neutron/v10/x/dynamicfees/types"
28+
globalfeetypes "github.com/neutron-org/neutron/v10/x/globalfee/types"
2929

30-
contractmanagertypes "github.com/neutron-org/neutron/v9/x/contractmanager/types"
31-
crontypes "github.com/neutron-org/neutron/v9/x/cron/types"
32-
dextypes "github.com/neutron-org/neutron/v9/x/dex/types"
33-
feeburnertypes "github.com/neutron-org/neutron/v9/x/feeburner/types"
34-
feerefundertypes "github.com/neutron-org/neutron/v9/x/feerefunder/types"
35-
interchainqueriestypes "github.com/neutron-org/neutron/v9/x/interchainqueries/types"
36-
interchaintxstypes "github.com/neutron-org/neutron/v9/x/interchaintxs/types"
37-
tokenfactorytypes "github.com/neutron-org/neutron/v9/x/tokenfactory/types"
30+
contractmanagertypes "github.com/neutron-org/neutron/v10/x/contractmanager/types"
31+
crontypes "github.com/neutron-org/neutron/v10/x/cron/types"
32+
dextypes "github.com/neutron-org/neutron/v10/x/dex/types"
33+
feeburnertypes "github.com/neutron-org/neutron/v10/x/feeburner/types"
34+
feerefundertypes "github.com/neutron-org/neutron/v10/x/feerefunder/types"
35+
interchainqueriestypes "github.com/neutron-org/neutron/v10/x/interchainqueries/types"
36+
interchaintxstypes "github.com/neutron-org/neutron/v10/x/interchaintxs/types"
37+
tokenfactorytypes "github.com/neutron-org/neutron/v10/x/tokenfactory/types"
3838
)
3939

4040
func IsConsumerProposalAllowlisted(content govtypes.Content) bool {

app/sigverify.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111

1212
"github.com/cosmos/cosmos-sdk/x/auth/ante"
1313

14-
"github.com/neutron-org/neutron/v9/x/crypto/ethsecp256k1"
14+
"github.com/neutron-org/neutron/v10/x/crypto/ethsecp256k1"
1515

1616
"google.golang.org/protobuf/types/known/anypb"
1717

app/upgrades/types.go

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,21 @@ import (
1717
feemarketkeeper "github.com/skip-mev/feemarket/x/feemarket/keeper"
1818
marketmapkeeper "github.com/skip-mev/slinky/x/marketmap/keeper"
1919

20-
feerefunderkeeper "github.com/neutron-org/neutron/v9/x/feerefunder/keeper"
20+
feerefunderkeeper "github.com/neutron-org/neutron/v10/x/feerefunder/keeper"
2121

22-
harpoonkeeper "github.com/neutron-org/neutron/v9/x/harpoon/keeper"
23-
revenuekeeper "github.com/neutron-org/neutron/v9/x/revenue/keeper"
22+
harpoonkeeper "github.com/neutron-org/neutron/v10/x/harpoon/keeper"
23+
revenuekeeper "github.com/neutron-org/neutron/v10/x/revenue/keeper"
2424

25-
dexkeeper "github.com/neutron-org/neutron/v9/x/dex/keeper"
26-
ibcratelimitkeeper "github.com/neutron-org/neutron/v9/x/ibc-rate-limit/keeper"
25+
dexkeeper "github.com/neutron-org/neutron/v10/x/dex/keeper"
26+
ibcratelimitkeeper "github.com/neutron-org/neutron/v10/x/ibc-rate-limit/keeper"
2727

28-
dynamicfeeskeeper "github.com/neutron-org/neutron/v9/x/dynamicfees/keeper"
28+
dynamicfeeskeeper "github.com/neutron-org/neutron/v10/x/dynamicfees/keeper"
2929

30-
contractmanagerkeeper "github.com/neutron-org/neutron/v9/x/contractmanager/keeper"
31-
cronkeeper "github.com/neutron-org/neutron/v9/x/cron/keeper"
32-
feeburnerkeeper "github.com/neutron-org/neutron/v9/x/feeburner/keeper"
33-
icqkeeper "github.com/neutron-org/neutron/v9/x/interchainqueries/keeper"
34-
tokenfactorykeeper "github.com/neutron-org/neutron/v9/x/tokenfactory/keeper"
30+
contractmanagerkeeper "github.com/neutron-org/neutron/v10/x/contractmanager/keeper"
31+
cronkeeper "github.com/neutron-org/neutron/v10/x/cron/keeper"
32+
feeburnerkeeper "github.com/neutron-org/neutron/v10/x/feeburner/keeper"
33+
icqkeeper "github.com/neutron-org/neutron/v10/x/interchainqueries/keeper"
34+
tokenfactorykeeper "github.com/neutron-org/neutron/v10/x/tokenfactory/keeper"
3535

3636
paramtypes "github.com/cosmos/cosmos-sdk/x/params/types"
3737
transferkeeper "github.com/cosmos/ibc-go/v10/modules/apps/transfer/keeper"
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
package nextupgrade
1+
package v10_0_0
22

33
import (
44
storetypes "cosmossdk.io/store/types"
55

6-
"github.com/neutron-org/neutron/v9/app/upgrades"
6+
"github.com/neutron-org/neutron/v10/app/upgrades"
77
)
88

99
const (
1010
// UpgradeName defines the on-chain upgrade name.
11-
UpgradeName = "nextupgrade"
11+
UpgradeName = "v10.0.0"
1212
)
1313

1414
var Upgrade = upgrades.Upgrade{
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package nextupgrade
1+
package v10_0_0
22

33
import (
44
"context"
@@ -9,7 +9,7 @@ import (
99
sdk "github.com/cosmos/cosmos-sdk/types"
1010
"github.com/cosmos/cosmos-sdk/types/module"
1111

12-
"github.com/neutron-org/neutron/v9/app/upgrades"
12+
"github.com/neutron-org/neutron/v10/app/upgrades"
1313
)
1414

1515
func CreateUpgradeHandler(
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package nextupgrade_test
1+
package v10_0_0_test
22

33
import (
44
"testing"
@@ -7,8 +7,8 @@ import (
77
"github.com/stretchr/testify/require"
88
"github.com/stretchr/testify/suite"
99

10-
"github.com/neutron-org/neutron/v9/app/upgrades/nextupgrade"
11-
"github.com/neutron-org/neutron/v9/testutil"
10+
"github.com/neutron-org/neutron/v10/app/upgrades/v10.0.0"
11+
"github.com/neutron-org/neutron/v10/testutil"
1212
)
1313

1414
type UpgradeTestSuite struct {
@@ -29,7 +29,7 @@ func (suite *UpgradeTestSuite) TestUpgrade() {
2929
t := suite.T()
3030

3131
upgrade := upgradetypes.Plan{
32-
Name: nextupgrade.UpgradeName,
32+
Name: v10_0_0.UpgradeName,
3333
Info: "some text here",
3434
Height: 100,
3535
}

0 commit comments

Comments
 (0)