Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add v2 to go.mod #388

Merged
merged 2 commits into from
Dec 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
80 changes: 40 additions & 40 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ import (
genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types"
tendermint "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint"

"github.com/neutron-org/neutron/docs"
"github.com/neutron-org/neutron/v2/docs"

"github.com/neutron-org/neutron/app/upgrades"
v030 "github.com/neutron-org/neutron/app/upgrades/v0.3.0"
v044 "github.com/neutron-org/neutron/app/upgrades/v0.4.4"
v200 "github.com/neutron-org/neutron/app/upgrades/v2.0.0"
"github.com/neutron-org/neutron/x/cron"
"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"
"github.com/neutron-org/neutron/v2/x/cron"

"github.com/CosmWasm/wasmd/x/wasm"
wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper"
Expand Down Expand Up @@ -102,12 +102,12 @@ import (

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

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

"github.com/neutron-org/neutron/x/tokenfactory"
tokenfactorykeeper "github.com/neutron-org/neutron/x/tokenfactory/keeper"
tokenfactorytypes "github.com/neutron-org/neutron/x/tokenfactory/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/cosmos/admin-module/x/adminmodule"
adminmodulecli "github.com/cosmos/admin-module/x/adminmodule/client/cli"
Expand All @@ -116,28 +116,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/app/params"
"github.com/neutron-org/neutron/wasmbinding"
"github.com/neutron-org/neutron/x/contractmanager"
contractmanagermodulekeeper "github.com/neutron-org/neutron/x/contractmanager/keeper"
contractmanagermoduletypes "github.com/neutron-org/neutron/x/contractmanager/types"
"github.com/neutron-org/neutron/x/feeburner"
feeburnerkeeper "github.com/neutron-org/neutron/x/feeburner/keeper"
feeburnertypes "github.com/neutron-org/neutron/x/feeburner/types"
"github.com/neutron-org/neutron/x/feerefunder"
feekeeper "github.com/neutron-org/neutron/x/feerefunder/keeper"
ibchooks "github.com/neutron-org/neutron/x/ibc-hooks"
ibchookstypes "github.com/neutron-org/neutron/x/ibc-hooks/types"
"github.com/neutron-org/neutron/x/interchainqueries"
interchainqueriesmodulekeeper "github.com/neutron-org/neutron/x/interchainqueries/keeper"
interchainqueriesmoduletypes "github.com/neutron-org/neutron/x/interchainqueries/types"
"github.com/neutron-org/neutron/x/interchaintxs"
interchaintxskeeper "github.com/neutron-org/neutron/x/interchaintxs/keeper"
interchaintxstypes "github.com/neutron-org/neutron/x/interchaintxs/types"
transferSudo "github.com/neutron-org/neutron/x/transfer"
wrapkeeper "github.com/neutron-org/neutron/x/transfer/keeper"

feetypes "github.com/neutron-org/neutron/x/feerefunder/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"

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

"github.com/neutron-org/neutron/x/dex"
dexkeeper "github.com/neutron-org/neutron/x/dex/keeper"
dextypes "github.com/neutron-org/neutron/x/dex/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/x/ibcswap"
ibcswapkeeper "github.com/neutron-org/neutron/x/ibcswap/keeper"
ibcswaptypes "github.com/neutron-org/neutron/x/ibcswap/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"

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

const (
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/app/params"
"github.com/neutron-org/neutron/v2/app/params"
)

// MakeEncodingConfig creates an EncodingConfig for testing
Expand Down
2 changes: 1 addition & 1 deletion app/genesis.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
ibcclienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types"
ibcchanneltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types"

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

// GenesisState is the genesis state of the blockchain represented here as a map of raw json
Expand Down
16 changes: 8 additions & 8 deletions app/proposals_allowlisting.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ import (
ibcclienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types"
ccvconsumertypes "github.com/cosmos/interchain-security/v3/x/ccv/consumer/types"

contractmanagertypes "github.com/neutron-org/neutron/x/contractmanager/types"
crontypes "github.com/neutron-org/neutron/x/cron/types"
dextypes "github.com/neutron-org/neutron/x/dex/types"
feeburnertypes "github.com/neutron-org/neutron/x/feeburner/types"
feerefundertypes "github.com/neutron-org/neutron/x/feerefunder/types"
interchainqueriestypes "github.com/neutron-org/neutron/x/interchainqueries/types"
interchaintxstypes "github.com/neutron-org/neutron/x/interchaintxs/types"
tokenfactorytypes "github.com/neutron-org/neutron/x/tokenfactory/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"
)

func IsConsumerProposalAllowlisted(content govtypes.Content) bool {
Expand Down
2 changes: 1 addition & 1 deletion app/proposals_allowlisting_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
ibctesting "github.com/cosmos/interchain-security/v3/legacy_ibc_testing/testing"
"github.com/stretchr/testify/require"

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

func TestConsumerWhitelistingKeys(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion app/simulation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package app_test
// "github.com/cosmos/cosmos-sdk/x/simulation"
// "github.com/stretchr/testify/require"
//
// "github.com/neutron-org/neutron/app"
// "github.com/neutron-org/neutron/v2/app"
//)
//
// func init() {
Expand Down
10 changes: 5 additions & 5 deletions app/upgrades/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ import (
slashingkeeper "github.com/cosmos/cosmos-sdk/x/slashing/keeper"
upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types"

contractmanagerkeeper "github.com/neutron-org/neutron/x/contractmanager/keeper"
cronkeeper "github.com/neutron-org/neutron/x/cron/keeper"
feeburnerkeeper "github.com/neutron-org/neutron/x/feeburner/keeper"
icqkeeper "github.com/neutron-org/neutron/x/interchainqueries/keeper"
tokenfactorykeeper "github.com/neutron-org/neutron/x/tokenfactory/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"

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 "github.com/cosmos/cosmos-sdk/store/types"
ccvprovider "github.com/cosmos/interchain-security/v3/x/ccv/provider/types"

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

const (
Expand Down
8 changes: 4 additions & 4 deletions app/upgrades/v0.3.0/upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ import (
"github.com/cosmos/cosmos-sdk/types/module"
upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types"

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

crontypes "github.com/neutron-org/neutron/x/cron/types"
icqtypes "github.com/neutron-org/neutron/x/interchainqueries/types"
tokenfactorytypes "github.com/neutron-org/neutron/x/tokenfactory/types"
crontypes "github.com/neutron-org/neutron/v2/x/cron/types"
icqtypes "github.com/neutron-org/neutron/v2/x/interchainqueries/types"
tokenfactorytypes "github.com/neutron-org/neutron/v2/x/tokenfactory/types"
)

func CreateUpgradeHandler(
Expand Down
2 changes: 1 addition & 1 deletion app/upgrades/v0.4.4/constants.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package v044

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

const (
Expand Down
6 changes: 3 additions & 3 deletions app/upgrades/v0.4.4/upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ import (
"github.com/cosmos/cosmos-sdk/types/module"
upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types"

feeburnertypes "github.com/neutron-org/neutron/x/feeburner/types"
tokenfactorytypes "github.com/neutron-org/neutron/x/tokenfactory/types"
feeburnertypes "github.com/neutron-org/neutron/v2/x/feeburner/types"
tokenfactorytypes "github.com/neutron-org/neutron/v2/x/tokenfactory/types"

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

func CreateUpgradeHandler(
Expand Down
4 changes: 2 additions & 2 deletions app/upgrades/v2.0.0/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
consensusparamtypes "github.com/cosmos/cosmos-sdk/x/consensus/types"
crisistypes "github.com/cosmos/cosmos-sdk/x/crisis/types"

"github.com/neutron-org/neutron/app/upgrades"
dextypes "github.com/neutron-org/neutron/x/dex/types"
"github.com/neutron-org/neutron/v2/app/upgrades"
dextypes "github.com/neutron-org/neutron/v2/x/dex/types"
)

const (
Expand Down
20 changes: 10 additions & 10 deletions app/upgrades/v2.0.0/upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
consensuskeeper "github.com/cosmos/cosmos-sdk/x/consensus/keeper"
paramstypes "github.com/cosmos/cosmos-sdk/x/params/types"

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

"github.com/cosmos/cosmos-sdk/codec"
storetypes "github.com/cosmos/cosmos-sdk/store/types"
Expand All @@ -21,15 +21,15 @@ import (
v6 "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/migrations/v6"
ccvconsumertypes "github.com/cosmos/interchain-security/v3/x/ccv/consumer/types"

"github.com/neutron-org/neutron/app/upgrades"
contractmanagerkeeper "github.com/neutron-org/neutron/x/contractmanager/keeper"
contractmanagertypes "github.com/neutron-org/neutron/x/contractmanager/types"
crontypes "github.com/neutron-org/neutron/x/cron/types"
feeburnertypes "github.com/neutron-org/neutron/x/feeburner/types"
feerefundertypes "github.com/neutron-org/neutron/x/feerefunder/types"
icqtypes "github.com/neutron-org/neutron/x/interchainqueries/types"
interchaintxstypes "github.com/neutron-org/neutron/x/interchaintxs/types"
tokenfactorytypes "github.com/neutron-org/neutron/x/tokenfactory/types"
"github.com/neutron-org/neutron/v2/app/upgrades"
contractmanagerkeeper "github.com/neutron-org/neutron/v2/x/contractmanager/keeper"
contractmanagertypes "github.com/neutron-org/neutron/v2/x/contractmanager/types"
crontypes "github.com/neutron-org/neutron/v2/x/cron/types"
feeburnertypes "github.com/neutron-org/neutron/v2/x/feeburner/types"
feerefundertypes "github.com/neutron-org/neutron/v2/x/feerefunder/types"
icqtypes "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"
)

func CreateUpgradeHandler(
Expand Down
28 changes: 14 additions & 14 deletions app/upgrades/v2.0.0/upgrades_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ import (
adminmoduletypes "github.com/cosmos/admin-module/x/adminmodule/types"
"github.com/cosmos/cosmos-sdk/types/errors"

crontypes "github.com/neutron-org/neutron/x/cron/types"
feeburnertypes "github.com/neutron-org/neutron/x/feeburner/types"
feerefundertypes "github.com/neutron-org/neutron/x/feerefunder/types"
icqtypes "github.com/neutron-org/neutron/x/interchainqueries/types"
interchaintxstypes "github.com/neutron-org/neutron/x/interchaintxs/types"
tokenfactorytypes "github.com/neutron-org/neutron/x/tokenfactory/types"
crontypes "github.com/neutron-org/neutron/v2/x/cron/types"
feeburnertypes "github.com/neutron-org/neutron/v2/x/feeburner/types"
feerefundertypes "github.com/neutron-org/neutron/v2/x/feerefunder/types"
icqtypes "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"

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

ccvconsumertypes "github.com/cosmos/interchain-security/v3/x/ccv/consumer/types"

Expand All @@ -24,8 +24,8 @@ import (
globalfeetypes "github.com/cosmos/gaia/v11/x/globalfee/types"
"github.com/stretchr/testify/suite"

v110 "github.com/neutron-org/neutron/app/upgrades/v2.0.0"
"github.com/neutron-org/neutron/testutil"
v200 "github.com/neutron-org/neutron/v2/app/upgrades/v2.0.0"
"github.com/neutron-org/neutron/v2/testutil"
)

type UpgradeTestSuite struct {
Expand Down Expand Up @@ -80,7 +80,7 @@ func (suite *UpgradeTestSuite) TestGlobalFeesUpgrade() {
suite.Require().True(globalFeeSubspace.Has(ctx, globalfeetypes.ParamStoreKeyMaxTotalBypassMinFeeMsgGasUsage))

upgrade := upgradetypes.Plan{
Name: v110.UpgradeName,
Name: v200.UpgradeName,
Info: "some text here",
Height: 100,
}
Expand Down Expand Up @@ -126,7 +126,7 @@ func (suite *UpgradeTestSuite) TestRewardDenomsUpgrade() {
suite.Require().Equal(denomsBefore, []string{params.DefaultDenom})

upgrade := upgradetypes.Plan{
Name: v110.UpgradeName,
Name: v200.UpgradeName,
Info: "some text here",
Height: 100,
}
Expand Down Expand Up @@ -154,7 +154,7 @@ func (suite *UpgradeTestSuite) TestAdminModuleUpgrade() {
suite.Require().Error(err)

upgrade := upgradetypes.Plan{
Name: v110.UpgradeName,
Name: v200.UpgradeName,
Info: "some text here",
Height: 100,
}
Expand Down Expand Up @@ -185,7 +185,7 @@ func (suite *UpgradeTestSuite) TestTokenFactoryUpgrade() {
suite.Require().Equal(denomFeeBefore, sdk.NewCoins(sdk.NewCoin(params.DefaultDenom, sdk.NewInt(100_000_000))))

upgrade := upgradetypes.Plan{
Name: v110.UpgradeName,
Name: v200.UpgradeName,
Info: "some text here",
Height: 100,
}
Expand Down Expand Up @@ -220,7 +220,7 @@ func (suite *UpgradeTestSuite) TestRegisterInterchainAccountCreationFee() {
contractAddressBeforeUpgrade := suite.InstantiateTestContract(ctx, sdk.AccAddress("neutron1_ica"), codeIDBefore)

upgrade := upgradetypes.Plan{
Name: v110.UpgradeName,
Name: v200.UpgradeName,
Info: "some text here",
Height: 100,
}
Expand Down
2 changes: 1 addition & 1 deletion cmd/neutrond/consumer.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
ccvconsumertypes "github.com/cosmos/interchain-security/v3/x/ccv/consumer/types"
"github.com/spf13/cobra"

"github.com/neutron-org/neutron/testutil/consumer"
"github.com/neutron-org/neutron/v2/testutil/consumer"
)

func AddConsumerSectionCmd(defaultNodeHome string) *cobra.Command {
Expand Down
2 changes: 1 addition & 1 deletion cmd/neutrond/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

svrcmd "github.com/cosmos/cosmos-sdk/server/cmd"

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

func main() {
Expand Down
4 changes: 2 additions & 2 deletions cmd/neutrond/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ import (
"github.com/spf13/cast"
"github.com/spf13/cobra"

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

// NewRootCmd creates a new root command for neutrond. It is called once in the
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/neutron-org/neutron
module github.com/neutron-org/neutron/v2

go 1.20

Expand Down
Loading
Loading