Skip to content

Commit

Permalink
Merge branch 'main' into feat/sdk-50
Browse files Browse the repository at this point in the history
  • Loading branch information
pr0n00gler committed Mar 11, 2024
2 parents 153bc3f + 08c5a44 commit 9df75a2
Show file tree
Hide file tree
Showing 476 changed files with 41,940 additions and 32,555 deletions.
6 changes: 2 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,8 @@ proto-gen:
@$(protoImage) sh ./scripts/protocgen.sh

proto-swagger-gen:
@$(protoImage) sh ./scripts/protoc-swagger-gen.sh
@$(DOCKER) build proto/ -t swagger-gen
@$(DOCKER) run --rm -v $(CURDIR):/workspace --workdir /workspace swagger-gen ./scripts/protoc-swagger-gen.sh

PROTO_FORMATTER_IMAGE=bufbuild/buf:1.28.1

Expand Down Expand Up @@ -251,9 +252,6 @@ start-docker-container:
stop-docker-container:
@docker stop neutron

openapi:
ignite generate openapi

mocks:
@echo "Regenerate mocks..."
@go generate ./...
Expand Down
4 changes: 2 additions & 2 deletions app/ante_handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
"github.com/cosmos/cosmos-sdk/x/auth/ante"
paramtypes "github.com/cosmos/cosmos-sdk/x/params/types"
//globalfeeante "github.com/cosmos/gaia/v11/x/globalfee/ante"
// globalfeeante "github.com/cosmos/gaia/v11/x/globalfee/ante"
ibcante "github.com/cosmos/ibc-go/v8/modules/core/ante"
ibckeeper "github.com/cosmos/ibc-go/v8/modules/core/keeper"
consumerante "github.com/cosmos/interchain-security/v4/app/consumer/ante"
Expand Down Expand Up @@ -80,7 +80,7 @@ func NewAnteHandler(options HandlerOptions, logger log.Logger) (sdk.AnteHandler,
// In this case you should be sure that you
// implemented upgrade to set default `ParamStoreKeyMinGasPrices` global fee param with at least one record
// otherwise you will get panic
//globalfeeante.NewFeeDecorator(nil, options.GlobalFeeSubspace, nil),
// globalfeeante.NewFeeDecorator(nil, options.GlobalFeeSubspace, nil),

ante.NewDeductFeeDecorator(options.AccountKeeper, options.BankKeeper, options.FeegrantKeeper, options.TxFeeChecker),
// SetPubKeyDecorator must be called before all signature verification decorators
Expand Down
140 changes: 82 additions & 58 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"cosmossdk.io/log"
db "github.com/cosmos/cosmos-db"
"github.com/cosmos/cosmos-sdk/codec/address"
//globalfeetypes "github.com/cosmos/gaia/v11/x/globalfee/types"
// globalfeetypes "github.com/cosmos/gaia/v11/x/globalfee/types"
"github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v8/packetforward"
ibctestingtypes "github.com/cosmos/ibc-go/v8/testing/types"
"github.com/cosmos/interchain-security/v4/testutil/integration"
Expand All @@ -24,16 +24,16 @@ import (
genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types"
tendermint "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint"

"github.com/neutron-org/neutron/v2/app/upgrades/nextupgrade"
"github.com/neutron-org/neutron/v2/docs"
"github.com/neutron-org/neutron/v3/docs"

"github.com/neutron-org/neutron/v2/app/upgrades"
v030 "github.com/neutron-org/neutron/v2/app/upgrades/v0.3.0"
v044 "github.com/neutron-org/neutron/v2/app/upgrades/v0.4.4"
v200 "github.com/neutron-org/neutron/v2/app/upgrades/v2.0.0"
v202 "github.com/neutron-org/neutron/v2/app/upgrades/v2.0.2"
"github.com/neutron-org/neutron/v3/app/upgrades"
v030 "github.com/neutron-org/neutron/v3/app/upgrades/v0.3.0"
v044 "github.com/neutron-org/neutron/v3/app/upgrades/v0.4.4"
v200 "github.com/neutron-org/neutron/v3/app/upgrades/v2.0.0"
v202 "github.com/neutron-org/neutron/v3/app/upgrades/v2.0.2"
v300 "github.com/neutron-org/neutron/v3/app/upgrades/v3.0.0"

"github.com/neutron-org/neutron/v2/x/cron"
"github.com/neutron-org/neutron/v3/x/cron"

"cosmossdk.io/x/evidence"
evidencekeeper "cosmossdk.io/x/evidence/keeper"
Expand Down Expand Up @@ -109,12 +109,12 @@ import (

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

cronkeeper "github.com/neutron-org/neutron/v2/x/cron/keeper"
crontypes "github.com/neutron-org/neutron/v2/x/cron/types"
cronkeeper "github.com/neutron-org/neutron/v3/x/cron/keeper"
crontypes "github.com/neutron-org/neutron/v3/x/cron/types"

"github.com/neutron-org/neutron/v2/x/tokenfactory"
tokenfactorykeeper "github.com/neutron-org/neutron/v2/x/tokenfactory/keeper"
tokenfactorytypes "github.com/neutron-org/neutron/v2/x/tokenfactory/types"
"github.com/neutron-org/neutron/v3/x/tokenfactory"
tokenfactorykeeper "github.com/neutron-org/neutron/v3/x/tokenfactory/keeper"
tokenfactorytypes "github.com/neutron-org/neutron/v3/x/tokenfactory/types"

"github.com/cosmos/admin-module/x/adminmodule"
adminmodulecli "github.com/cosmos/admin-module/x/adminmodule/client/cli"
Expand All @@ -123,28 +123,28 @@ import (
govclient "github.com/cosmos/cosmos-sdk/x/gov/client"
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"

appparams "github.com/neutron-org/neutron/v2/app/params"
"github.com/neutron-org/neutron/v2/wasmbinding"
"github.com/neutron-org/neutron/v2/x/contractmanager"
contractmanagermodulekeeper "github.com/neutron-org/neutron/v2/x/contractmanager/keeper"
contractmanagermoduletypes "github.com/neutron-org/neutron/v2/x/contractmanager/types"
"github.com/neutron-org/neutron/v2/x/feeburner"
feeburnerkeeper "github.com/neutron-org/neutron/v2/x/feeburner/keeper"
feeburnertypes "github.com/neutron-org/neutron/v2/x/feeburner/types"
"github.com/neutron-org/neutron/v2/x/feerefunder"
feekeeper "github.com/neutron-org/neutron/v2/x/feerefunder/keeper"
ibchooks "github.com/neutron-org/neutron/v2/x/ibc-hooks"
ibchookstypes "github.com/neutron-org/neutron/v2/x/ibc-hooks/types"
"github.com/neutron-org/neutron/v2/x/interchainqueries"
interchainqueriesmodulekeeper "github.com/neutron-org/neutron/v2/x/interchainqueries/keeper"
interchainqueriesmoduletypes "github.com/neutron-org/neutron/v2/x/interchainqueries/types"
"github.com/neutron-org/neutron/v2/x/interchaintxs"
interchaintxskeeper "github.com/neutron-org/neutron/v2/x/interchaintxs/keeper"
interchaintxstypes "github.com/neutron-org/neutron/v2/x/interchaintxs/types"
transferSudo "github.com/neutron-org/neutron/v2/x/transfer"
wrapkeeper "github.com/neutron-org/neutron/v2/x/transfer/keeper"

feetypes "github.com/neutron-org/neutron/v2/x/feerefunder/types"
appparams "github.com/neutron-org/neutron/v3/app/params"
"github.com/neutron-org/neutron/v3/wasmbinding"
"github.com/neutron-org/neutron/v3/x/contractmanager"
contractmanagermodulekeeper "github.com/neutron-org/neutron/v3/x/contractmanager/keeper"
contractmanagermoduletypes "github.com/neutron-org/neutron/v3/x/contractmanager/types"
"github.com/neutron-org/neutron/v3/x/feeburner"
feeburnerkeeper "github.com/neutron-org/neutron/v3/x/feeburner/keeper"
feeburnertypes "github.com/neutron-org/neutron/v3/x/feeburner/types"
"github.com/neutron-org/neutron/v3/x/feerefunder"
feekeeper "github.com/neutron-org/neutron/v3/x/feerefunder/keeper"
ibchooks "github.com/neutron-org/neutron/v3/x/ibc-hooks"
ibchookstypes "github.com/neutron-org/neutron/v3/x/ibc-hooks/types"
"github.com/neutron-org/neutron/v3/x/interchainqueries"
interchainqueriesmodulekeeper "github.com/neutron-org/neutron/v3/x/interchainqueries/keeper"
interchainqueriesmoduletypes "github.com/neutron-org/neutron/v3/x/interchainqueries/types"
"github.com/neutron-org/neutron/v3/x/interchaintxs"
interchaintxskeeper "github.com/neutron-org/neutron/v3/x/interchaintxs/keeper"
interchaintxstypes "github.com/neutron-org/neutron/v3/x/interchaintxs/types"
transferSudo "github.com/neutron-org/neutron/v3/x/transfer"
wrapkeeper "github.com/neutron-org/neutron/v3/x/transfer/keeper"

feetypes "github.com/neutron-org/neutron/v3/x/feerefunder/types"

ccvconsumer "github.com/cosmos/interchain-security/v4/x/ccv/consumer"
ccvconsumerkeeper "github.com/cosmos/interchain-security/v4/x/ccv/consumer/keeper"
Expand All @@ -156,15 +156,15 @@ import (
pfmkeeper "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v8/packetforward/keeper"
pfmtypes "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v8/packetforward/types"

"github.com/neutron-org/neutron/v2/x/dex"
dexkeeper "github.com/neutron-org/neutron/v2/x/dex/keeper"
dextypes "github.com/neutron-org/neutron/v2/x/dex/types"
"github.com/neutron-org/neutron/v3/x/dex"
dexkeeper "github.com/neutron-org/neutron/v3/x/dex/keeper"
dextypes "github.com/neutron-org/neutron/v3/x/dex/types"

"github.com/neutron-org/neutron/v2/x/ibcswap"
ibcswapkeeper "github.com/neutron-org/neutron/v2/x/ibcswap/keeper"
ibcswaptypes "github.com/neutron-org/neutron/v2/x/ibcswap/types"
"github.com/neutron-org/neutron/v3/x/ibcswap"
ibcswapkeeper "github.com/neutron-org/neutron/v3/x/ibcswap/keeper"
ibcswaptypes "github.com/neutron-org/neutron/v3/x/ibcswap/types"

gmpmiddleware "github.com/neutron-org/neutron/v2/x/gmp"
gmpmiddleware "github.com/neutron-org/neutron/v3/x/gmp"

// Block-sdk imports
blocksdkabci "github.com/skip-mev/block-sdk/v2/abci"
Expand All @@ -183,7 +183,7 @@ const (
)

var (
Upgrades = []upgrades.Upgrade{v030.Upgrade, v044.Upgrade, v200.Upgrade, v202.Upgrade, nextupgrade.Upgrade}
Upgrades = []upgrades.Upgrade{v030.Upgrade, v044.Upgrade, v200.Upgrade, v202.Upgrade, v300.Upgrade}

// DefaultNodeHome default home directories for the application daemon
DefaultNodeHome string
Expand Down Expand Up @@ -231,7 +231,7 @@ var (
ibchooks.AppModuleBasic{},
packetforward.AppModuleBasic{},
auction.AppModuleBasic{},
//globalfee.AppModule{},
// globalfee.AppModule{},
dex.AppModuleBasic{},
ibcswap.AppModuleBasic{},
)
Expand Down Expand Up @@ -523,7 +523,14 @@ func New(
authtypes.NewModuleAddress(adminmoduletypes.ModuleName).String(),
)

app.FeeKeeper = feekeeper.NewKeeper(appCodec, keys[feetypes.StoreKey], memKeys[feetypes.MemStoreKey], app.IBCKeeper.ChannelKeeper, app.BankKeeper, authtypes.NewModuleAddress(adminmoduletypes.ModuleName).String())
app.FeeKeeper = feekeeper.NewKeeper(
appCodec,
keys[feetypes.StoreKey],
memKeys[feetypes.MemStoreKey],
app.IBCKeeper.ChannelKeeper,
app.BankKeeper,
authtypes.NewModuleAddress(adminmoduletypes.ModuleName).String(),
)
feeModule := feerefunder.NewAppModule(appCodec, *app.FeeKeeper, app.AccountKeeper, app.BankKeeper)

app.FeeBurnerKeeper = feeburnerkeeper.NewKeeper(
Expand Down Expand Up @@ -666,7 +673,7 @@ func New(
adminRouterLegacy := govv1beta1.NewRouter()
adminRouterLegacy.AddRoute(govtypes.RouterKey, govv1beta1.ProposalHandler).
AddRoute(paramproposal.RouterKey, params.NewParamChangeProposalHandler(app.ParamsKeeper)).
//AddRoute(upgradetypes.RouterKey, upgrade.NewSoftwareUpgradeProposalHandler(&app.UpgradeKeeper)).
// AddRoute(upgradetypes.RouterKey, upgrade.NewSoftwareUpgradeProposalHandler(&app.UpgradeKeeper)).
AddRoute(ibcclienttypes.RouterKey, ibcclient.NewClientProposalHandler(app.IBCKeeper.ClientKeeper))

app.AdminmoduleKeeper = *adminmodulekeeper.NewKeeper(
Expand Down Expand Up @@ -704,8 +711,24 @@ func New(
authtypes.NewModuleAddress(adminmoduletypes.ModuleName).String(),
)

app.CronKeeper = *cronkeeper.NewKeeper(appCodec, keys[crontypes.StoreKey], keys[crontypes.MemStoreKey], app.AccountKeeper, authtypes.NewModuleAddress(adminmoduletypes.ModuleName).String())
wasmOpts = append(wasmbinding.RegisterCustomPlugins(&app.InterchainTxsKeeper, &app.InterchainQueriesKeeper, app.TransferKeeper, &app.AdminmoduleKeeper, app.FeeBurnerKeeper, app.FeeKeeper, &app.BankKeeper, app.TokenFactoryKeeper, &app.CronKeeper, &app.ContractManagerKeeper), wasmOpts...)
app.CronKeeper = *cronkeeper.NewKeeper(
appCodec,
keys[crontypes.StoreKey],
keys[crontypes.MemStoreKey],
app.AccountKeeper,
authtypes.NewModuleAddress(adminmoduletypes.ModuleName).String(),
)
wasmOpts = append(wasmbinding.RegisterCustomPlugins(
&app.InterchainTxsKeeper,
&app.InterchainQueriesKeeper,
app.TransferKeeper,
&app.AdminmoduleKeeper,
app.FeeBurnerKeeper,
app.FeeKeeper, &app.BankKeeper,
app.TokenFactoryKeeper, &app.CronKeeper,
&app.ContractManagerKeeper,
&app.DexKeeper,
), wasmOpts...)

queryPlugins := wasmkeeper.WithQueryPlugins(
&wasmkeeper.QueryPlugins{Stargate: wasmkeeper.AcceptListStargateQuerier(wasmbinding.AcceptedStargateQueries(), app.GRPCQueryRouter(), appCodec)})
Expand Down Expand Up @@ -819,11 +842,12 @@ func New(
ibcHooksModule,
tokenfactory.NewAppModule(appCodec, *app.TokenFactoryKeeper, app.AccountKeeper, app.BankKeeper),
cronModule,
//globalfee.NewAppModule(app.GetSubspace(globalfee.ModuleName)),
// globalfee.NewAppModule(app.GetSubspace(globalfee.ModuleName)),
swapModule,
dexModule,
auction.NewAppModule(appCodec, app.AuctionKeeper),
crisis.NewAppModule(&app.CrisisKeeper, skipGenesisInvariants, app.GetSubspace(crisistypes.ModuleName)), // always be last to make sure that it checks for all invariants and not only part of them
// always be last to make sure that it checks for all invariants and not only part of them
crisis.NewAppModule(&app.CrisisKeeper, skipGenesisInvariants, app.GetSubspace(crisistypes.ModuleName)),
)

// During begin block slashing happens after distr.BeginBlocker so that
Expand Down Expand Up @@ -858,7 +882,7 @@ func New(
ibchookstypes.ModuleName,
pfmtypes.ModuleName,
crontypes.ModuleName,
//globalfee.ModuleName,
// globalfee.ModuleName,
ibcswaptypes.ModuleName,
dextypes.ModuleName,
)
Expand Down Expand Up @@ -891,7 +915,7 @@ func New(
ibchookstypes.ModuleName,
pfmtypes.ModuleName,
crontypes.ModuleName,
//globalfee.ModuleName,
// globalfee.ModuleName,
ibcswaptypes.ModuleName,
// NOTE: Because of the gas sensitivity of PurgeExpiredLimit order operations
// dexmodule must be the last endBlock module to run
Expand Down Expand Up @@ -931,7 +955,7 @@ func New(
ibchookstypes.ModuleName, // after auth keeper
pfmtypes.ModuleName,
crontypes.ModuleName,
//globalfee.ModuleName,
// globalfee.ModuleName,
ibcswaptypes.ModuleName,
dextypes.ModuleName,
)
Expand Down Expand Up @@ -1001,7 +1025,7 @@ func New(
WasmConfig: &wasmConfig,
TXCounterStoreService: runtime.NewKVStoreService(keys[wasmtypes.StoreKey]),
ConsumerKeeper: app.ConsumerKeeper,
//GlobalFeeSubspace: app.GetSubspace(globalfee.ModuleName),
// GlobalFeeSubspace: app.GetSubspace(globalfee.ModuleName),
AuctionKeeper: app.AuctionKeeper,
TxEncoder: app.GetTxConfig().TxEncoder(),
MEVLane: mevLane,
Expand Down Expand Up @@ -1130,7 +1154,7 @@ func (app *App) setupUpgradeHandlers() {
AdminModule: app.AdminmoduleKeeper,
ConsensusKeeper: &app.ConsensusParamsKeeper,
ConsumerKeeper: &app.ConsumerKeeper,
//GlobalFeeSubspace: app.GetSubspace(globalfee.ModuleName),
// GlobalFeeSubspace: app.GetSubspace(globalfee.ModuleName),
CcvConsumerSubspace: app.GetSubspace(ccvconsumertypes.ModuleName),
},
app,
Expand Down Expand Up @@ -1209,7 +1233,7 @@ func (app *App) TestInitChainer(ctx sdk.Context, req *abci.RequestInitChain) (*a
}

// manually set consensus params here, cause there is no way to set it using ibctesting stuff for now
//TODO: app.ConsensusParamsKeeper.Set(ctx, sims.DefaultConsensusParams)
// TODO: app.ConsensusParamsKeeper.Set(ctx, sims.DefaultConsensusParams)
app.EnsureBlockGasMeter(ctx)

app.UpgradeKeeper.SetModuleVersionMap(ctx, app.mm.GetVersionMap())
Expand Down Expand Up @@ -1331,7 +1355,7 @@ func initParamsKeeper(appCodec codec.BinaryCodec, legacyAmino *codec.LegacyAmino

paramsKeeper.Subspace(pfmtypes.ModuleName).WithKeyTable(pfmtypes.ParamKeyTable())

//paramsKeeper.Subspace(globalfee.ModuleName).WithKeyTable(globalfeetypes.ParamKeyTable())
// paramsKeeper.Subspace(globalfee.ModuleName).WithKeyTable(globalfeetypes.ParamKeyTable())

paramsKeeper.Subspace(ccvconsumertypes.ModuleName).WithKeyTable(ccv.ParamKeyTable())

Expand Down
2 changes: 1 addition & 1 deletion app/encoding.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package app
import (
"github.com/cosmos/cosmos-sdk/std"

"github.com/neutron-org/neutron/v2/app/params"
"github.com/neutron-org/neutron/v3/app/params"
)

// MakeEncodingConfig creates an EncodingConfig for testing
Expand Down
18 changes: 9 additions & 9 deletions app/proposals_allowlisting.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@ import (
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1"
minttypes "github.com/cosmos/cosmos-sdk/x/mint/types"
"github.com/cosmos/cosmos-sdk/x/params/types/proposal"
//globalfeetypes "github.com/cosmos/gaia/v11/x/globalfee/types"
// globalfeetypes "github.com/cosmos/gaia/v11/x/globalfee/types"
pfmtypes "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v8/packetforward/types"
ibcclienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types"

contractmanagertypes "github.com/neutron-org/neutron/v2/x/contractmanager/types"
crontypes "github.com/neutron-org/neutron/v2/x/cron/types"
dextypes "github.com/neutron-org/neutron/v2/x/dex/types"
feeburnertypes "github.com/neutron-org/neutron/v2/x/feeburner/types"
feerefundertypes "github.com/neutron-org/neutron/v2/x/feerefunder/types"
interchainqueriestypes "github.com/neutron-org/neutron/v2/x/interchainqueries/types"
interchaintxstypes "github.com/neutron-org/neutron/v2/x/interchaintxs/types"
tokenfactorytypes "github.com/neutron-org/neutron/v2/x/tokenfactory/types"
contractmanagertypes "github.com/neutron-org/neutron/v3/x/contractmanager/types"
crontypes "github.com/neutron-org/neutron/v3/x/cron/types"
dextypes "github.com/neutron-org/neutron/v3/x/dex/types"
feeburnertypes "github.com/neutron-org/neutron/v3/x/feeburner/types"
feerefundertypes "github.com/neutron-org/neutron/v3/x/feerefunder/types"
interchainqueriestypes "github.com/neutron-org/neutron/v3/x/interchainqueries/types"
interchaintxstypes "github.com/neutron-org/neutron/v3/x/interchaintxs/types"
tokenfactorytypes "github.com/neutron-org/neutron/v3/x/tokenfactory/types"
)

func IsConsumerProposalAllowlisted(content govtypes.Content) bool {
Expand Down
4 changes: 2 additions & 2 deletions app/proposals_allowlisting_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
icssimapp "github.com/cosmos/interchain-security/v4/testutil/ibc_testing"
"github.com/stretchr/testify/require"

"github.com/neutron-org/neutron/v2/app"
"github.com/neutron-org/neutron/v2/testutil"
"github.com/neutron-org/neutron/v3/app"
"github.com/neutron-org/neutron/v3/testutil"
)

func TestConsumerWhitelistingKeys(t *testing.T) {
Expand Down
10 changes: 5 additions & 5 deletions app/upgrades/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ import (
ccvconsumerkeeper "github.com/cosmos/interchain-security/v4/x/ccv/consumer/keeper"
auctionkeeper "github.com/skip-mev/block-sdk/v2/x/auction/keeper"

contractmanagerkeeper "github.com/neutron-org/neutron/v2/x/contractmanager/keeper"
cronkeeper "github.com/neutron-org/neutron/v2/x/cron/keeper"
feeburnerkeeper "github.com/neutron-org/neutron/v2/x/feeburner/keeper"
icqkeeper "github.com/neutron-org/neutron/v2/x/interchainqueries/keeper"
tokenfactorykeeper "github.com/neutron-org/neutron/v2/x/tokenfactory/keeper"
contractmanagerkeeper "github.com/neutron-org/neutron/v3/x/contractmanager/keeper"
cronkeeper "github.com/neutron-org/neutron/v3/x/cron/keeper"
feeburnerkeeper "github.com/neutron-org/neutron/v3/x/feeburner/keeper"
icqkeeper "github.com/neutron-org/neutron/v3/x/interchainqueries/keeper"
tokenfactorykeeper "github.com/neutron-org/neutron/v3/x/tokenfactory/keeper"

paramtypes "github.com/cosmos/cosmos-sdk/x/params/types"
)
Expand Down
2 changes: 1 addition & 1 deletion app/upgrades/v0.3.0/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
store "cosmossdk.io/store/types"
ccvprovider "github.com/cosmos/interchain-security/v4/x/ccv/provider/types"

"github.com/neutron-org/neutron/v2/app/upgrades"
"github.com/neutron-org/neutron/v3/app/upgrades"
)

const (
Expand Down
Loading

0 comments on commit 9df75a2

Please sign in to comment.