Skip to content

Commit 38464f1

Browse files
committed
Merge branch 'main' into rehearsals/v10.0.x
2 parents 5eb160b + 3347e56 commit 38464f1

File tree

694 files changed

+3877
-3569
lines changed

Some content is hidden

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

694 files changed

+3877
-3569
lines changed

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ ifeq ($(WITH_CLEVELDB),yes)
5151
build_tags += gcc
5252
endif
5353
build_tags += $(BUILD_TAGS)
54+
build_tags += pebbledb
5455
build_tags := $(strip $(build_tags))
5556

5657
build_tags_test_binary = $(build_tags)

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
@@ -12,39 +12,39 @@ import (
1212

1313
"cosmossdk.io/math"
1414

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

3131
"github.com/cosmos/cosmos-sdk/x/staking"
3232
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"
3333

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

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

40-
"github.com/neutron-org/neutron/v9/x/dynamicfees"
41-
ibcratelimit "github.com/neutron-org/neutron/v9/x/ibc-rate-limit"
40+
"github.com/neutron-org/neutron/v10/x/dynamicfees"
41+
ibcratelimit "github.com/neutron-org/neutron/v10/x/ibc-rate-limit"
4242

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

47-
appconfig "github.com/neutron-org/neutron/v9/app/config"
47+
appconfig "github.com/neutron-org/neutron/v10/app/config"
4848

4949
"github.com/skip-mev/slinky/abci/strategies/aggregator"
5050
"github.com/skip-mev/slinky/x/oracle"
@@ -59,8 +59,8 @@ import (
5959
oracleclient "github.com/skip-mev/slinky/service/clients/oracle"
6060
servicemetrics "github.com/skip-mev/slinky/service/metrics"
6161

62-
"github.com/neutron-org/neutron/v9/x/globalfee"
63-
globalfeetypes "github.com/neutron-org/neutron/v9/x/globalfee/types"
62+
"github.com/neutron-org/neutron/v10/x/globalfee"
63+
globalfeetypes "github.com/neutron-org/neutron/v10/x/globalfee/types"
6464

6565
"cosmossdk.io/log"
6666
db "github.com/cosmos/cosmos-db"
@@ -74,11 +74,11 @@ import (
7474
genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types"
7575
tendermint "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint"
7676

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

79-
"github.com/neutron-org/neutron/v9/app/upgrades"
79+
"github.com/neutron-org/neutron/v10/app/upgrades"
8080

81-
"github.com/neutron-org/neutron/v9/x/cron"
81+
"github.com/neutron-org/neutron/v10/x/cron"
8282

8383
"cosmossdk.io/x/evidence"
8484
evidencekeeper "cosmossdk.io/x/evidence/keeper"
@@ -134,9 +134,9 @@ import (
134134
slashingkeeper "github.com/cosmos/cosmos-sdk/x/slashing/keeper"
135135
slashingtypes "github.com/cosmos/cosmos-sdk/x/slashing/types"
136136

137-
"github.com/neutron-org/neutron/v9/x/revenue"
138-
revenuekeeper "github.com/neutron-org/neutron/v9/x/revenue/keeper"
139-
revenuetypes "github.com/neutron-org/neutron/v9/x/revenue/types"
137+
"github.com/neutron-org/neutron/v10/x/revenue"
138+
revenuekeeper "github.com/neutron-org/neutron/v10/x/revenue/keeper"
139+
revenuetypes "github.com/neutron-org/neutron/v10/x/revenue/types"
140140

141141
// "github.com/cosmos/gaia/v11/x/globalfee"
142142
ica "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts"
@@ -152,8 +152,8 @@ import (
152152
ibcclienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" //nolint:staticcheck
153153
ibcconnectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types"
154154

155-
ibcratelimitkeeper "github.com/neutron-org/neutron/v9/x/ibc-rate-limit/keeper"
156-
ibcratelimittypes "github.com/neutron-org/neutron/v9/x/ibc-rate-limit/types"
155+
ibcratelimitkeeper "github.com/neutron-org/neutron/v10/x/ibc-rate-limit/keeper"
156+
ibcratelimittypes "github.com/neutron-org/neutron/v10/x/ibc-rate-limit/types"
157157

158158
//nolint:staticcheck
159159
ibcporttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types"
@@ -164,15 +164,15 @@ import (
164164

165165
govv1beta1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1"
166166

167-
cronkeeper "github.com/neutron-org/neutron/v9/x/cron/keeper"
168-
crontypes "github.com/neutron-org/neutron/v9/x/cron/types"
167+
cronkeeper "github.com/neutron-org/neutron/v10/x/cron/keeper"
168+
crontypes "github.com/neutron-org/neutron/v10/x/cron/types"
169169

170-
coinfactorykeeper "github.com/neutron-org/neutron/v9/x/coinfactory/keeper"
171-
"github.com/neutron-org/neutron/v9/x/tokenfactory"
172-
tokenfactorykeeper "github.com/neutron-org/neutron/v9/x/tokenfactory/keeper"
173-
tokenfactorytypes "github.com/neutron-org/neutron/v9/x/tokenfactory/types"
170+
coinfactorykeeper "github.com/neutron-org/neutron/v10/x/coinfactory/keeper"
171+
"github.com/neutron-org/neutron/v10/x/tokenfactory"
172+
tokenfactorykeeper "github.com/neutron-org/neutron/v10/x/tokenfactory/keeper"
173+
tokenfactorytypes "github.com/neutron-org/neutron/v10/x/tokenfactory/types"
174174

175-
coinfactorytypes "github.com/neutron-org/neutron/v9/x/coinfactory/types"
175+
coinfactorytypes "github.com/neutron-org/neutron/v10/x/coinfactory/types"
176176

177177
"github.com/cosmos/admin-module/v2/x/adminmodule"
178178
adminmodulecli "github.com/cosmos/admin-module/v2/x/adminmodule/client/cli"
@@ -181,29 +181,29 @@ import (
181181
govclient "github.com/cosmos/cosmos-sdk/x/gov/client"
182182
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"
183183

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

208208
storetypes "cosmossdk.io/store/types"
209209
"github.com/cosmos/cosmos-sdk/x/consensus"
@@ -212,12 +212,12 @@ import (
212212
pfmkeeper "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v10/packetforward/keeper"
213213
pfmtypes "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v10/packetforward/types"
214214

215-
"github.com/neutron-org/neutron/v9/x/dex"
216-
dexkeeper "github.com/neutron-org/neutron/v9/x/dex/keeper"
217-
dextypes "github.com/neutron-org/neutron/v9/x/dex/types"
215+
"github.com/neutron-org/neutron/v10/x/dex"
216+
dexkeeper "github.com/neutron-org/neutron/v10/x/dex/keeper"
217+
dextypes "github.com/neutron-org/neutron/v10/x/dex/types"
218218

219-
globalfeekeeper "github.com/neutron-org/neutron/v9/x/globalfee/keeper"
220-
gmpmiddleware "github.com/neutron-org/neutron/v9/x/gmp"
219+
globalfeekeeper "github.com/neutron-org/neutron/v10/x/globalfee/keeper"
220+
gmpmiddleware "github.com/neutron-org/neutron/v10/x/gmp"
221221

222222
// Block-sdk imports
223223
blocksdkabci "github.com/skip-mev/block-sdk/v2/abci"
@@ -230,8 +230,8 @@ import (
230230
oraclekeeper "github.com/skip-mev/slinky/x/oracle/keeper"
231231
oracletypes "github.com/skip-mev/slinky/x/oracle/types"
232232

233-
harpoonkeeper "github.com/neutron-org/neutron/v9/x/harpoon/keeper"
234-
harpoontypes "github.com/neutron-org/neutron/v9/x/harpoon/types"
233+
harpoonkeeper "github.com/neutron-org/neutron/v10/x/harpoon/keeper"
234+
harpoontypes "github.com/neutron-org/neutron/v10/x/harpoon/types"
235235

236236
runtimeservices "github.com/cosmos/cosmos-sdk/runtime/services"
237237
)
@@ -250,7 +250,7 @@ var (
250250
v820.Upgrade,
251251
v900.Upgrade,
252252
v910.Upgrade,
253-
nextupgrade.Upgrade,
253+
v10_0_0.Upgrade,
254254
}
255255

256256
// 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{

0 commit comments

Comments
 (0)