diff --git a/app/ante.go b/app/ante.go index 47153d18e..88474a4ec 100644 --- a/app/ante.go +++ b/app/ante.go @@ -20,13 +20,13 @@ import ( govkeeper "github.com/cosmos/cosmos-sdk/x/gov/keeper" stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" - decorators "github.com/CosmosContracts/juno/v19/app/decorators" - feepayante "github.com/CosmosContracts/juno/v19/x/feepay/ante" - feepaykeeper "github.com/CosmosContracts/juno/v19/x/feepay/keeper" - feeshareante "github.com/CosmosContracts/juno/v19/x/feeshare/ante" - feesharekeeper "github.com/CosmosContracts/juno/v19/x/feeshare/keeper" - globalfeeante "github.com/CosmosContracts/juno/v19/x/globalfee/ante" - globalfeekeeper "github.com/CosmosContracts/juno/v19/x/globalfee/keeper" + decorators "github.com/CosmosContracts/juno/v20/app/decorators" + feepayante "github.com/CosmosContracts/juno/v20/x/feepay/ante" + feepaykeeper "github.com/CosmosContracts/juno/v20/x/feepay/keeper" + feeshareante "github.com/CosmosContracts/juno/v20/x/feeshare/ante" + feesharekeeper "github.com/CosmosContracts/juno/v20/x/feeshare/keeper" + globalfeeante "github.com/CosmosContracts/juno/v20/x/globalfee/ante" + globalfeekeeper "github.com/CosmosContracts/juno/v20/x/globalfee/keeper" ) // Lower back to 1 mil after https://github.com/cosmos/relayer/issues/1255 diff --git a/app/app.go b/app/app.go index b9486a130..50804ab18 100644 --- a/app/app.go +++ b/app/app.go @@ -64,24 +64,24 @@ import ( upgradeclient "github.com/cosmos/cosmos-sdk/x/upgrade/client" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - "github.com/CosmosContracts/juno/v19/app/keepers" - "github.com/CosmosContracts/juno/v19/app/openapiconsole" - upgrades "github.com/CosmosContracts/juno/v19/app/upgrades" - testnetV18alpha2 "github.com/CosmosContracts/juno/v19/app/upgrades/testnet/v18.0.0-alpha.2" - testnetV18alpha3 "github.com/CosmosContracts/juno/v19/app/upgrades/testnet/v18.0.0-alpha.3" - testnetV18alpha4 "github.com/CosmosContracts/juno/v19/app/upgrades/testnet/v18.0.0-alpha.4" - testnetV19alpha3 "github.com/CosmosContracts/juno/v19/app/upgrades/testnet/v19.0.0-alpha.3" - v10 "github.com/CosmosContracts/juno/v19/app/upgrades/v10" - v11 "github.com/CosmosContracts/juno/v19/app/upgrades/v11" - v12 "github.com/CosmosContracts/juno/v19/app/upgrades/v12" - v13 "github.com/CosmosContracts/juno/v19/app/upgrades/v13" - v14 "github.com/CosmosContracts/juno/v19/app/upgrades/v14" - v15 "github.com/CosmosContracts/juno/v19/app/upgrades/v15" - v16 "github.com/CosmosContracts/juno/v19/app/upgrades/v16" - v17 "github.com/CosmosContracts/juno/v19/app/upgrades/v17" - v18 "github.com/CosmosContracts/juno/v19/app/upgrades/v18" - v19 "github.com/CosmosContracts/juno/v19/app/upgrades/v19" - "github.com/CosmosContracts/juno/v19/docs" + "github.com/CosmosContracts/juno/v20/app/keepers" + "github.com/CosmosContracts/juno/v20/app/openapiconsole" + upgrades "github.com/CosmosContracts/juno/v20/app/upgrades" + testnetV18alpha2 "github.com/CosmosContracts/juno/v20/app/upgrades/testnet/v18.0.0-alpha.2" + testnetV18alpha3 "github.com/CosmosContracts/juno/v20/app/upgrades/testnet/v18.0.0-alpha.3" + testnetV18alpha4 "github.com/CosmosContracts/juno/v20/app/upgrades/testnet/v18.0.0-alpha.4" + testnetV19alpha3 "github.com/CosmosContracts/juno/v20/app/upgrades/testnet/v19.0.0-alpha.3" + v10 "github.com/CosmosContracts/juno/v20/app/upgrades/v10" + v11 "github.com/CosmosContracts/juno/v20/app/upgrades/v11" + v12 "github.com/CosmosContracts/juno/v20/app/upgrades/v12" + v13 "github.com/CosmosContracts/juno/v20/app/upgrades/v13" + v14 "github.com/CosmosContracts/juno/v20/app/upgrades/v14" + v15 "github.com/CosmosContracts/juno/v20/app/upgrades/v15" + v16 "github.com/CosmosContracts/juno/v20/app/upgrades/v16" + v17 "github.com/CosmosContracts/juno/v20/app/upgrades/v17" + v18 "github.com/CosmosContracts/juno/v20/app/upgrades/v18" + v19 "github.com/CosmosContracts/juno/v20/app/upgrades/v19" + "github.com/CosmosContracts/juno/v20/docs" ) const ( diff --git a/app/apptesting/test_suite.go b/app/apptesting/test_suite.go index 1ab204aaa..dd558dab4 100644 --- a/app/apptesting/test_suite.go +++ b/app/apptesting/test_suite.go @@ -35,8 +35,8 @@ import ( stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - "github.com/CosmosContracts/juno/v19/app" - appparams "github.com/CosmosContracts/juno/v19/app/params" + "github.com/CosmosContracts/juno/v20/app" + appparams "github.com/CosmosContracts/juno/v20/app/params" ) type KeeperTestHelper struct { diff --git a/app/decorators/change_rate_decorator_test.go b/app/decorators/change_rate_decorator_test.go index fb98f1d1e..049389e19 100644 --- a/app/decorators/change_rate_decorator_test.go +++ b/app/decorators/change_rate_decorator_test.go @@ -19,9 +19,9 @@ import ( stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/CosmosContracts/juno/v19/app" - decorators "github.com/CosmosContracts/juno/v19/app/decorators" - appparams "github.com/CosmosContracts/juno/v19/app/params" + "github.com/CosmosContracts/juno/v20/app" + decorators "github.com/CosmosContracts/juno/v20/app/decorators" + appparams "github.com/CosmosContracts/juno/v20/app/params" ) // Define an empty ante handle diff --git a/app/encoding.go b/app/encoding.go index 33e72f380..3a8e40ef2 100644 --- a/app/encoding.go +++ b/app/encoding.go @@ -3,7 +3,7 @@ package app import ( "github.com/cosmos/cosmos-sdk/std" - "github.com/CosmosContracts/juno/v19/app/params" + "github.com/CosmosContracts/juno/v20/app/params" ) // MakeEncodingConfig creates an EncodingConfig for testing diff --git a/app/keepers/keepers.go b/app/keepers/keepers.go index 4d9359a4d..2be77256e 100644 --- a/app/keepers/keepers.go +++ b/app/keepers/keepers.go @@ -88,25 +88,25 @@ import ( upgradekeeper "github.com/cosmos/cosmos-sdk/x/upgrade/keeper" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - junoburn "github.com/CosmosContracts/juno/v19/x/burn" - clockkeeper "github.com/CosmosContracts/juno/v19/x/clock/keeper" - clocktypes "github.com/CosmosContracts/juno/v19/x/clock/types" - cwhookskeeper "github.com/CosmosContracts/juno/v19/x/cw-hooks/keeper" - cwhookstypes "github.com/CosmosContracts/juno/v19/x/cw-hooks/types" - dripkeeper "github.com/CosmosContracts/juno/v19/x/drip/keeper" - driptypes "github.com/CosmosContracts/juno/v19/x/drip/types" - feepaykeeper "github.com/CosmosContracts/juno/v19/x/feepay/keeper" - feepaytypes "github.com/CosmosContracts/juno/v19/x/feepay/types" - feesharekeeper "github.com/CosmosContracts/juno/v19/x/feeshare/keeper" - feesharetypes "github.com/CosmosContracts/juno/v19/x/feeshare/types" - "github.com/CosmosContracts/juno/v19/x/globalfee" - globalfeekeeper "github.com/CosmosContracts/juno/v19/x/globalfee/keeper" - globalfeetypes "github.com/CosmosContracts/juno/v19/x/globalfee/types" - mintkeeper "github.com/CosmosContracts/juno/v19/x/mint/keeper" - minttypes "github.com/CosmosContracts/juno/v19/x/mint/types" - "github.com/CosmosContracts/juno/v19/x/tokenfactory/bindings" - tokenfactorykeeper "github.com/CosmosContracts/juno/v19/x/tokenfactory/keeper" - tokenfactorytypes "github.com/CosmosContracts/juno/v19/x/tokenfactory/types" + junoburn "github.com/CosmosContracts/juno/v20/x/burn" + clockkeeper "github.com/CosmosContracts/juno/v20/x/clock/keeper" + clocktypes "github.com/CosmosContracts/juno/v20/x/clock/types" + cwhookskeeper "github.com/CosmosContracts/juno/v20/x/cw-hooks/keeper" + cwhookstypes "github.com/CosmosContracts/juno/v20/x/cw-hooks/types" + dripkeeper "github.com/CosmosContracts/juno/v20/x/drip/keeper" + driptypes "github.com/CosmosContracts/juno/v20/x/drip/types" + feepaykeeper "github.com/CosmosContracts/juno/v20/x/feepay/keeper" + feepaytypes "github.com/CosmosContracts/juno/v20/x/feepay/types" + feesharekeeper "github.com/CosmosContracts/juno/v20/x/feeshare/keeper" + feesharetypes "github.com/CosmosContracts/juno/v20/x/feeshare/types" + "github.com/CosmosContracts/juno/v20/x/globalfee" + globalfeekeeper "github.com/CosmosContracts/juno/v20/x/globalfee/keeper" + globalfeetypes "github.com/CosmosContracts/juno/v20/x/globalfee/types" + mintkeeper "github.com/CosmosContracts/juno/v20/x/mint/keeper" + minttypes "github.com/CosmosContracts/juno/v20/x/mint/types" + "github.com/CosmosContracts/juno/v20/x/tokenfactory/bindings" + tokenfactorykeeper "github.com/CosmosContracts/juno/v20/x/tokenfactory/keeper" + tokenfactorytypes "github.com/CosmosContracts/juno/v20/x/tokenfactory/types" ) var ( diff --git a/app/keepers/keys.go b/app/keepers/keys.go index 4dcf528c3..269975522 100644 --- a/app/keepers/keys.go +++ b/app/keepers/keys.go @@ -32,14 +32,14 @@ import ( stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - clocktypes "github.com/CosmosContracts/juno/v19/x/clock/types" - cwhookstypes "github.com/CosmosContracts/juno/v19/x/cw-hooks/types" - driptypes "github.com/CosmosContracts/juno/v19/x/drip/types" - feepaytypes "github.com/CosmosContracts/juno/v19/x/feepay/types" - feesharetypes "github.com/CosmosContracts/juno/v19/x/feeshare/types" - globalfeetypes "github.com/CosmosContracts/juno/v19/x/globalfee/types" - minttypes "github.com/CosmosContracts/juno/v19/x/mint/types" - tokenfactorytypes "github.com/CosmosContracts/juno/v19/x/tokenfactory/types" + clocktypes "github.com/CosmosContracts/juno/v20/x/clock/types" + cwhookstypes "github.com/CosmosContracts/juno/v20/x/cw-hooks/types" + driptypes "github.com/CosmosContracts/juno/v20/x/drip/types" + feepaytypes "github.com/CosmosContracts/juno/v20/x/feepay/types" + feesharetypes "github.com/CosmosContracts/juno/v20/x/feeshare/types" + globalfeetypes "github.com/CosmosContracts/juno/v20/x/globalfee/types" + minttypes "github.com/CosmosContracts/juno/v20/x/mint/types" + tokenfactorytypes "github.com/CosmosContracts/juno/v20/x/tokenfactory/types" ) func (appKeepers *AppKeepers) GenerateKeys() { diff --git a/app/modules.go b/app/modules.go index df54900cc..ec7d1c4fe 100644 --- a/app/modules.go +++ b/app/modules.go @@ -61,21 +61,21 @@ import ( "github.com/cosmos/cosmos-sdk/x/upgrade" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - encparams "github.com/CosmosContracts/juno/v19/app/params" - "github.com/CosmosContracts/juno/v19/x/clock" - clocktypes "github.com/CosmosContracts/juno/v19/x/clock/types" - cwhooks "github.com/CosmosContracts/juno/v19/x/cw-hooks" - "github.com/CosmosContracts/juno/v19/x/drip" - driptypes "github.com/CosmosContracts/juno/v19/x/drip/types" - feepay "github.com/CosmosContracts/juno/v19/x/feepay" - feepaytypes "github.com/CosmosContracts/juno/v19/x/feepay/types" - feeshare "github.com/CosmosContracts/juno/v19/x/feeshare" - feesharetypes "github.com/CosmosContracts/juno/v19/x/feeshare/types" - "github.com/CosmosContracts/juno/v19/x/globalfee" - "github.com/CosmosContracts/juno/v19/x/mint" - minttypes "github.com/CosmosContracts/juno/v19/x/mint/types" - "github.com/CosmosContracts/juno/v19/x/tokenfactory" - tokenfactorytypes "github.com/CosmosContracts/juno/v19/x/tokenfactory/types" + encparams "github.com/CosmosContracts/juno/v20/app/params" + "github.com/CosmosContracts/juno/v20/x/clock" + clocktypes "github.com/CosmosContracts/juno/v20/x/clock/types" + cwhooks "github.com/CosmosContracts/juno/v20/x/cw-hooks" + "github.com/CosmosContracts/juno/v20/x/drip" + driptypes "github.com/CosmosContracts/juno/v20/x/drip/types" + feepay "github.com/CosmosContracts/juno/v20/x/feepay" + feepaytypes "github.com/CosmosContracts/juno/v20/x/feepay/types" + feeshare "github.com/CosmosContracts/juno/v20/x/feeshare" + feesharetypes "github.com/CosmosContracts/juno/v20/x/feeshare/types" + "github.com/CosmosContracts/juno/v20/x/globalfee" + "github.com/CosmosContracts/juno/v20/x/mint" + minttypes "github.com/CosmosContracts/juno/v20/x/mint/types" + "github.com/CosmosContracts/juno/v20/x/tokenfactory" + tokenfactorytypes "github.com/CosmosContracts/juno/v20/x/tokenfactory/types" ) // ModuleBasics defines the module BasicManager is in charge of setting up basic, diff --git a/app/test_helpers.go b/app/test_helpers.go index 656f2d21d..68631dd96 100644 --- a/app/test_helpers.go +++ b/app/test_helpers.go @@ -32,8 +32,8 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - apphelpers "github.com/CosmosContracts/juno/v19/app/helpers" - appparams "github.com/CosmosContracts/juno/v19/app/params" + apphelpers "github.com/CosmosContracts/juno/v20/app/helpers" + appparams "github.com/CosmosContracts/juno/v20/app/params" ) // SimAppChainID hardcoded chainID for simulation diff --git a/app/upgrades/testnet/v18.0.0-alpha.2/constants.go b/app/upgrades/testnet/v18.0.0-alpha.2/constants.go index d87c70b2a..6694603ff 100644 --- a/app/upgrades/testnet/v18.0.0-alpha.2/constants.go +++ b/app/upgrades/testnet/v18.0.0-alpha.2/constants.go @@ -3,7 +3,7 @@ package v18 import ( store "github.com/cosmos/cosmos-sdk/store/types" - "github.com/CosmosContracts/juno/v19/app/upgrades" + "github.com/CosmosContracts/juno/v20/app/upgrades" ) // UpgradeName defines the on-chain upgrade name for the upgrade. diff --git a/app/upgrades/testnet/v18.0.0-alpha.2/upgrade_test.go b/app/upgrades/testnet/v18.0.0-alpha.2/upgrade_test.go index be730e80f..77e0e4d58 100644 --- a/app/upgrades/testnet/v18.0.0-alpha.2/upgrade_test.go +++ b/app/upgrades/testnet/v18.0.0-alpha.2/upgrade_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/suite" - "github.com/CosmosContracts/juno/v19/app/apptesting" - v18alpha2 "github.com/CosmosContracts/juno/v19/app/upgrades/testnet/v18.0.0-alpha.2" + "github.com/CosmosContracts/juno/v20/app/apptesting" + v18alpha2 "github.com/CosmosContracts/juno/v20/app/upgrades/testnet/v18.0.0-alpha.2" ) type UpgradeTestSuite struct { diff --git a/app/upgrades/testnet/v18.0.0-alpha.3/constants.go b/app/upgrades/testnet/v18.0.0-alpha.3/constants.go index aaa03913c..a77a070d1 100644 --- a/app/upgrades/testnet/v18.0.0-alpha.3/constants.go +++ b/app/upgrades/testnet/v18.0.0-alpha.3/constants.go @@ -3,7 +3,7 @@ package v18 import ( store "github.com/cosmos/cosmos-sdk/store/types" - "github.com/CosmosContracts/juno/v19/app/upgrades" + "github.com/CosmosContracts/juno/v20/app/upgrades" ) // UpgradeName defines the on-chain upgrade name for the upgrade. diff --git a/app/upgrades/testnet/v18.0.0-alpha.3/upgrade_test.go b/app/upgrades/testnet/v18.0.0-alpha.3/upgrade_test.go index d820f5c4c..165a3bdbb 100644 --- a/app/upgrades/testnet/v18.0.0-alpha.3/upgrade_test.go +++ b/app/upgrades/testnet/v18.0.0-alpha.3/upgrade_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/suite" - "github.com/CosmosContracts/juno/v19/app/apptesting" - v18alpha3 "github.com/CosmosContracts/juno/v19/app/upgrades/testnet/v18.0.0-alpha.3" + "github.com/CosmosContracts/juno/v20/app/apptesting" + v18alpha3 "github.com/CosmosContracts/juno/v20/app/upgrades/testnet/v18.0.0-alpha.3" ) type UpgradeTestSuite struct { diff --git a/app/upgrades/testnet/v18.0.0-alpha.4/constants.go b/app/upgrades/testnet/v18.0.0-alpha.4/constants.go index 288c3049e..8e31174ba 100644 --- a/app/upgrades/testnet/v18.0.0-alpha.4/constants.go +++ b/app/upgrades/testnet/v18.0.0-alpha.4/constants.go @@ -3,7 +3,7 @@ package v18 import ( store "github.com/cosmos/cosmos-sdk/store/types" - "github.com/CosmosContracts/juno/v19/app/upgrades" + "github.com/CosmosContracts/juno/v20/app/upgrades" ) // UpgradeName defines the on-chain upgrade name for the upgrade. diff --git a/app/upgrades/testnet/v18.0.0-alpha.4/upgrade_test.go b/app/upgrades/testnet/v18.0.0-alpha.4/upgrade_test.go index e15c67a55..b8880d9c3 100644 --- a/app/upgrades/testnet/v18.0.0-alpha.4/upgrade_test.go +++ b/app/upgrades/testnet/v18.0.0-alpha.4/upgrade_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/suite" - "github.com/CosmosContracts/juno/v19/app/apptesting" - v1800alpha4 "github.com/CosmosContracts/juno/v19/app/upgrades/testnet/v18.0.0-alpha.4" + "github.com/CosmosContracts/juno/v20/app/apptesting" + v1800alpha4 "github.com/CosmosContracts/juno/v20/app/upgrades/testnet/v18.0.0-alpha.4" ) type UpgradeTestSuite struct { diff --git a/app/upgrades/testnet/v19.0.0-alpha.3/constants.go b/app/upgrades/testnet/v19.0.0-alpha.3/constants.go index 3b3f1aa29..a7c73761b 100644 --- a/app/upgrades/testnet/v19.0.0-alpha.3/constants.go +++ b/app/upgrades/testnet/v19.0.0-alpha.3/constants.go @@ -1,4 +1,4 @@ -package v18 +package v19 import ( "fmt" @@ -8,9 +8,9 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - "github.com/CosmosContracts/juno/v19/app/keepers" - "github.com/CosmosContracts/juno/v19/app/upgrades" - clocktypes "github.com/CosmosContracts/juno/v19/x/clock/types" + "github.com/CosmosContracts/juno/v20/app/keepers" + "github.com/CosmosContracts/juno/v20/app/upgrades" + clocktypes "github.com/CosmosContracts/juno/v20/x/clock/types" ) // UpgradeName defines the on-chain upgrade name for the upgrade. diff --git a/app/upgrades/testnet/v19.0.0-alpha.3/upgrade_test.go b/app/upgrades/testnet/v19.0.0-alpha.3/upgrade_test.go index a6c38e5cd..6be21f1d1 100644 --- a/app/upgrades/testnet/v19.0.0-alpha.3/upgrade_test.go +++ b/app/upgrades/testnet/v19.0.0-alpha.3/upgrade_test.go @@ -1,12 +1,12 @@ -package v18_test +package v19_test import ( "testing" "github.com/stretchr/testify/suite" - "github.com/CosmosContracts/juno/v19/app/apptesting" - v19alpha3 "github.com/CosmosContracts/juno/v19/app/upgrades/testnet/v19.0.0-alpha.3" + "github.com/CosmosContracts/juno/v20/app/apptesting" + v19alpha3 "github.com/CosmosContracts/juno/v20/app/upgrades/testnet/v19.0.0-alpha.3" ) type UpgradeTestSuite struct { diff --git a/app/upgrades/types.go b/app/upgrades/types.go index 508f8a8bf..3a1f20495 100644 --- a/app/upgrades/types.go +++ b/app/upgrades/types.go @@ -10,7 +10,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - "github.com/CosmosContracts/juno/v19/app/keepers" + "github.com/CosmosContracts/juno/v20/app/keepers" ) // BaseAppParamManager defines an interrace that BaseApp is expected to fulfil diff --git a/app/upgrades/v10/constants.go b/app/upgrades/v10/constants.go index 692d7276a..7a42c140c 100644 --- a/app/upgrades/v10/constants.go +++ b/app/upgrades/v10/constants.go @@ -6,7 +6,7 @@ import ( store "github.com/cosmos/cosmos-sdk/store/types" - "github.com/CosmosContracts/juno/v19/app/upgrades" + "github.com/CosmosContracts/juno/v20/app/upgrades" ) // UpgradeName defines the on-chain upgrade name for the Juno v10 upgrade. diff --git a/app/upgrades/v10/upgrades.go b/app/upgrades/v10/upgrades.go index 039d6e86d..97c0c19d3 100644 --- a/app/upgrades/v10/upgrades.go +++ b/app/upgrades/v10/upgrades.go @@ -15,7 +15,7 @@ import ( stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - "github.com/CosmosContracts/juno/v19/app/keepers" + "github.com/CosmosContracts/juno/v20/app/keepers" ) // CreateV10UpgradeHandler makes an upgrade handler for v10 of Juno diff --git a/app/upgrades/v11/constants.go b/app/upgrades/v11/constants.go index 625d9b625..11ee32af3 100644 --- a/app/upgrades/v11/constants.go +++ b/app/upgrades/v11/constants.go @@ -6,7 +6,7 @@ import ( store "github.com/cosmos/cosmos-sdk/store/types" - "github.com/CosmosContracts/juno/v19/app/upgrades" + "github.com/CosmosContracts/juno/v20/app/upgrades" ) // UpgradeName defines the on-chain upgrade name for the Juno v11 upgrade. diff --git a/app/upgrades/v11/upgrades.go b/app/upgrades/v11/upgrades.go index 9c6a0d133..201968bd3 100644 --- a/app/upgrades/v11/upgrades.go +++ b/app/upgrades/v11/upgrades.go @@ -15,7 +15,7 @@ import ( stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - "github.com/CosmosContracts/juno/v19/app/keepers" + "github.com/CosmosContracts/juno/v20/app/keepers" ) // CreateV11UpgradeHandler makes an upgrade handler for v11 of Juno diff --git a/app/upgrades/v12/constants.go b/app/upgrades/v12/constants.go index 28ce12465..20b5ea9d3 100644 --- a/app/upgrades/v12/constants.go +++ b/app/upgrades/v12/constants.go @@ -3,7 +3,7 @@ package v12 import ( store "github.com/cosmos/cosmos-sdk/store/types" - "github.com/CosmosContracts/juno/v19/app/upgrades" + "github.com/CosmosContracts/juno/v20/app/upgrades" ) const UpgradeName = "v12" diff --git a/app/upgrades/v12/upgrades.go b/app/upgrades/v12/upgrades.go index 46b72e1b7..e5a59a642 100644 --- a/app/upgrades/v12/upgrades.go +++ b/app/upgrades/v12/upgrades.go @@ -5,7 +5,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - "github.com/CosmosContracts/juno/v19/app/keepers" + "github.com/CosmosContracts/juno/v20/app/keepers" ) func CreateV12UpgradeHandler( diff --git a/app/upgrades/v13/constants.go b/app/upgrades/v13/constants.go index 45d40ef93..7a5fc90d5 100644 --- a/app/upgrades/v13/constants.go +++ b/app/upgrades/v13/constants.go @@ -8,9 +8,9 @@ import ( store "github.com/cosmos/cosmos-sdk/store/types" - "github.com/CosmosContracts/juno/v19/app/upgrades" - feesharetypes "github.com/CosmosContracts/juno/v19/x/feeshare/types" - tokenfactorytypes "github.com/CosmosContracts/juno/v19/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v20/app/upgrades" + feesharetypes "github.com/CosmosContracts/juno/v20/x/feeshare/types" + tokenfactorytypes "github.com/CosmosContracts/juno/v20/x/tokenfactory/types" ) // UpgradeName defines the on-chain upgrade name for the upgrade. diff --git a/app/upgrades/v13/upgrades.go b/app/upgrades/v13/upgrades.go index d1efc456a..b6b1a1dbd 100644 --- a/app/upgrades/v13/upgrades.go +++ b/app/upgrades/v13/upgrades.go @@ -13,11 +13,11 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - "github.com/CosmosContracts/juno/v19/app/keepers" - "github.com/CosmosContracts/juno/v19/app/upgrades" + "github.com/CosmosContracts/juno/v20/app/keepers" + "github.com/CosmosContracts/juno/v20/app/upgrades" // types - feesharetypes "github.com/CosmosContracts/juno/v19/x/feeshare/types" - tokenfactorytypes "github.com/CosmosContracts/juno/v19/x/tokenfactory/types" + feesharetypes "github.com/CosmosContracts/juno/v20/x/feeshare/types" + tokenfactorytypes "github.com/CosmosContracts/juno/v20/x/tokenfactory/types" ) func CreateV13UpgradeHandler( diff --git a/app/upgrades/v14/constants.go b/app/upgrades/v14/constants.go index 5cbb994ac..6c80e11c4 100644 --- a/app/upgrades/v14/constants.go +++ b/app/upgrades/v14/constants.go @@ -5,8 +5,8 @@ import ( store "github.com/cosmos/cosmos-sdk/store/types" - "github.com/CosmosContracts/juno/v19/app/upgrades" - "github.com/CosmosContracts/juno/v19/x/globalfee" + "github.com/CosmosContracts/juno/v20/app/upgrades" + "github.com/CosmosContracts/juno/v20/x/globalfee" ) // UpgradeName defines the on-chain upgrade name for the upgrade. diff --git a/app/upgrades/v14/upgrades.go b/app/upgrades/v14/upgrades.go index 3603236fa..5bf3e19e4 100644 --- a/app/upgrades/v14/upgrades.go +++ b/app/upgrades/v14/upgrades.go @@ -7,9 +7,9 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - "github.com/CosmosContracts/juno/v19/app/keepers" - "github.com/CosmosContracts/juno/v19/app/upgrades" - globalfeetypes "github.com/CosmosContracts/juno/v19/x/globalfee/types" + "github.com/CosmosContracts/juno/v20/app/keepers" + "github.com/CosmosContracts/juno/v20/app/upgrades" + globalfeetypes "github.com/CosmosContracts/juno/v20/x/globalfee/types" ) func CreateV14UpgradeHandler( diff --git a/app/upgrades/v15/constants.go b/app/upgrades/v15/constants.go index 3734f937d..2fb5b47f1 100644 --- a/app/upgrades/v15/constants.go +++ b/app/upgrades/v15/constants.go @@ -3,7 +3,7 @@ package v15 import ( store "github.com/cosmos/cosmos-sdk/store/types" - "github.com/CosmosContracts/juno/v19/app/upgrades" + "github.com/CosmosContracts/juno/v20/app/upgrades" ) // UpgradeName defines the on-chain upgrade name for the upgrade. diff --git a/app/upgrades/v15/upgrades.go b/app/upgrades/v15/upgrades.go index 7b7fee4eb..68fff6eb5 100644 --- a/app/upgrades/v15/upgrades.go +++ b/app/upgrades/v15/upgrades.go @@ -7,8 +7,8 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - "github.com/CosmosContracts/juno/v19/app/keepers" - tokenfactorytypes "github.com/CosmosContracts/juno/v19/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v20/app/keepers" + tokenfactorytypes "github.com/CosmosContracts/juno/v20/x/tokenfactory/types" ) // We now charge 2 million gas * gas price to create a denom. diff --git a/app/upgrades/v16/constants.go b/app/upgrades/v16/constants.go index 3fd5d5ef1..c8a8e6427 100644 --- a/app/upgrades/v16/constants.go +++ b/app/upgrades/v16/constants.go @@ -10,8 +10,8 @@ import ( crisistypes "github.com/cosmos/cosmos-sdk/x/crisis/types" "github.com/cosmos/cosmos-sdk/x/nft" - "github.com/CosmosContracts/juno/v19/app/upgrades" - globalfeettypes "github.com/CosmosContracts/juno/v19/x/globalfee/types" + "github.com/CosmosContracts/juno/v20/app/upgrades" + globalfeettypes "github.com/CosmosContracts/juno/v20/x/globalfee/types" ) // UpgradeName defines the on-chain upgrade name for the upgrade. diff --git a/app/upgrades/v16/upgrades.go b/app/upgrades/v16/upgrades.go index 3084ad2ef..c3513ee86 100644 --- a/app/upgrades/v16/upgrades.go +++ b/app/upgrades/v16/upgrades.go @@ -30,13 +30,13 @@ import ( stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - "github.com/CosmosContracts/juno/v19/app/keepers" - "github.com/CosmosContracts/juno/v19/app/upgrades" + "github.com/CosmosContracts/juno/v20/app/keepers" + "github.com/CosmosContracts/juno/v20/app/upgrades" // Juno modules - feesharetypes "github.com/CosmosContracts/juno/v19/x/feeshare/types" - globalfeetypes "github.com/CosmosContracts/juno/v19/x/globalfee/types" - minttypes "github.com/CosmosContracts/juno/v19/x/mint/types" - tokenfactorytypes "github.com/CosmosContracts/juno/v19/x/tokenfactory/types" + feesharetypes "github.com/CosmosContracts/juno/v20/x/feeshare/types" + globalfeetypes "github.com/CosmosContracts/juno/v20/x/globalfee/types" + minttypes "github.com/CosmosContracts/juno/v20/x/mint/types" + tokenfactorytypes "github.com/CosmosContracts/juno/v20/x/tokenfactory/types" ) func CreateV16UpgradeHandler( diff --git a/app/upgrades/v17/constants.go b/app/upgrades/v17/constants.go index 71dfd82a3..2f2e9c10e 100644 --- a/app/upgrades/v17/constants.go +++ b/app/upgrades/v17/constants.go @@ -3,9 +3,9 @@ package v17 import ( store "github.com/cosmos/cosmos-sdk/store/types" - "github.com/CosmosContracts/juno/v19/app/upgrades" - clocktypes "github.com/CosmosContracts/juno/v19/x/clock/types" - driptypes "github.com/CosmosContracts/juno/v19/x/drip/types" + "github.com/CosmosContracts/juno/v20/app/upgrades" + clocktypes "github.com/CosmosContracts/juno/v20/x/clock/types" + driptypes "github.com/CosmosContracts/juno/v20/x/drip/types" ) // UpgradeName defines the on-chain upgrade name for the upgrade. diff --git a/app/upgrades/v17/upgrades.go b/app/upgrades/v17/upgrades.go index 61976bcf8..f80df910b 100644 --- a/app/upgrades/v17/upgrades.go +++ b/app/upgrades/v17/upgrades.go @@ -14,10 +14,10 @@ import ( govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - "github.com/CosmosContracts/juno/v19/app/keepers" - "github.com/CosmosContracts/juno/v19/app/upgrades" - clocktypes "github.com/CosmosContracts/juno/v19/x/clock/types" - driptypes "github.com/CosmosContracts/juno/v19/x/drip/types" + "github.com/CosmosContracts/juno/v20/app/keepers" + "github.com/CosmosContracts/juno/v20/app/upgrades" + clocktypes "github.com/CosmosContracts/juno/v20/x/clock/types" + driptypes "github.com/CosmosContracts/juno/v20/x/drip/types" ) // Verify the following with: diff --git a/app/upgrades/v18/constants.go b/app/upgrades/v18/constants.go index bb338dc8f..fdf0482b9 100644 --- a/app/upgrades/v18/constants.go +++ b/app/upgrades/v18/constants.go @@ -3,9 +3,9 @@ package v18 import ( store "github.com/cosmos/cosmos-sdk/store/types" - "github.com/CosmosContracts/juno/v19/app/upgrades" - cwhooks "github.com/CosmosContracts/juno/v19/x/cw-hooks" - feepaytypes "github.com/CosmosContracts/juno/v19/x/feepay/types" + "github.com/CosmosContracts/juno/v20/app/upgrades" + cwhooks "github.com/CosmosContracts/juno/v20/x/cw-hooks" + feepaytypes "github.com/CosmosContracts/juno/v20/x/feepay/types" ) // UpgradeName defines the on-chain upgrade name for the upgrade. diff --git a/app/upgrades/v18/upgrade_test.go b/app/upgrades/v18/upgrade_test.go index 764fe8def..b069f4726 100644 --- a/app/upgrades/v18/upgrade_test.go +++ b/app/upgrades/v18/upgrade_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/suite" - "github.com/CosmosContracts/juno/v19/app/apptesting" - v18 "github.com/CosmosContracts/juno/v19/app/upgrades/v18" + "github.com/CosmosContracts/juno/v20/app/apptesting" + v18 "github.com/CosmosContracts/juno/v20/app/upgrades/v18" ) type UpgradeTestSuite struct { diff --git a/app/upgrades/v18/upgrades.go b/app/upgrades/v18/upgrades.go index 937949908..5919b3383 100644 --- a/app/upgrades/v18/upgrades.go +++ b/app/upgrades/v18/upgrades.go @@ -7,10 +7,10 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - "github.com/CosmosContracts/juno/v19/app/keepers" - "github.com/CosmosContracts/juno/v19/app/upgrades" - cwhookstypes "github.com/CosmosContracts/juno/v19/x/cw-hooks/types" - feepaytypes "github.com/CosmosContracts/juno/v19/x/feepay/types" + "github.com/CosmosContracts/juno/v20/app/keepers" + "github.com/CosmosContracts/juno/v20/app/upgrades" + cwhookstypes "github.com/CosmosContracts/juno/v20/x/cw-hooks/types" + feepaytypes "github.com/CosmosContracts/juno/v20/x/feepay/types" ) func CreateV18UpgradeHandler( diff --git a/app/upgrades/v19/constants.go b/app/upgrades/v19/constants.go index a2b18b060..4cb8fff48 100644 --- a/app/upgrades/v19/constants.go +++ b/app/upgrades/v19/constants.go @@ -5,7 +5,7 @@ import ( store "github.com/cosmos/cosmos-sdk/store/types" - "github.com/CosmosContracts/juno/v19/app/upgrades" + "github.com/CosmosContracts/juno/v20/app/upgrades" ) const ( diff --git a/app/upgrades/v19/mainnet_account.go b/app/upgrades/v19/mainnet_account.go index d337e4166..c74d4ac7b 100644 --- a/app/upgrades/v19/mainnet_account.go +++ b/app/upgrades/v19/mainnet_account.go @@ -9,7 +9,7 @@ import ( vestingtypes "github.com/cosmos/cosmos-sdk/x/auth/vesting/types" banktestutil "github.com/cosmos/cosmos-sdk/x/bank/testutil" - "github.com/CosmosContracts/juno/v19/app/keepers" + "github.com/CosmosContracts/juno/v20/app/keepers" ) const ( diff --git a/app/upgrades/v19/upgrade_test.go b/app/upgrades/v19/upgrade_test.go index 9a678e3ed..0bd0e3a0e 100644 --- a/app/upgrades/v19/upgrade_test.go +++ b/app/upgrades/v19/upgrade_test.go @@ -11,9 +11,9 @@ import ( vestingtypes "github.com/cosmos/cosmos-sdk/x/auth/vesting/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/CosmosContracts/juno/v19/app/apptesting" - decorators "github.com/CosmosContracts/juno/v19/app/decorators" - v19 "github.com/CosmosContracts/juno/v19/app/upgrades/v19" + "github.com/CosmosContracts/juno/v20/app/apptesting" + decorators "github.com/CosmosContracts/juno/v20/app/decorators" + v19 "github.com/CosmosContracts/juno/v20/app/upgrades/v19" ) type UpgradeTestSuite struct { diff --git a/app/upgrades/v19/upgrades.go b/app/upgrades/v19/upgrades.go index 7e3fac78e..b3d37a1c3 100644 --- a/app/upgrades/v19/upgrades.go +++ b/app/upgrades/v19/upgrades.go @@ -13,10 +13,11 @@ import ( vestingtypes "github.com/cosmos/cosmos-sdk/x/auth/vesting/types" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - decorators "github.com/CosmosContracts/juno/v19/app/decorators" - "github.com/CosmosContracts/juno/v19/app/keepers" - "github.com/CosmosContracts/juno/v19/app/upgrades" - clocktypes "github.com/CosmosContracts/juno/v19/x/clock/types" + decorators "github.com/CosmosContracts/juno/v20/app/decorators" + "github.com/CosmosContracts/juno/v20/app/keepers" + "github.com/CosmosContracts/juno/v20/app/upgrades" + + clocktypes "github.com/CosmosContracts/juno/v20/x/clock/types" ) func CreateV19UpgradeHandler( diff --git a/cmd/junod/cmd/balances_from_state_export.go b/cmd/junod/cmd/balances_from_state_export.go index 4cf65c55b..e6933bb2a 100644 --- a/cmd/junod/cmd/balances_from_state_export.go +++ b/cmd/junod/cmd/balances_from_state_export.go @@ -1,7 +1,7 @@ package cmd // modified from osmosis -// https://github.com/CosmosContracts/juno/v19/blob/main/cmd/osmosisd/cmd/balances_from_state_export.go +// https://github.com/CosmosContracts/juno/v20/blob/main/cmd/osmosisd/cmd/balances_from_state_export.go import ( "encoding/csv" @@ -24,7 +24,7 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - appparams "github.com/CosmosContracts/juno/v19/app/params" + appparams "github.com/CosmosContracts/juno/v20/app/params" ) const ( diff --git a/cmd/junod/cmd/root.go b/cmd/junod/cmd/root.go index 43530d1c2..eb18d58dc 100644 --- a/cmd/junod/cmd/root.go +++ b/cmd/junod/cmd/root.go @@ -37,8 +37,8 @@ import ( "github.com/cosmos/cosmos-sdk/x/crisis" genutilcli "github.com/cosmos/cosmos-sdk/x/genutil/client/cli" - "github.com/CosmosContracts/juno/v19/app" - "github.com/CosmosContracts/juno/v19/app/params" + "github.com/CosmosContracts/juno/v20/app" + "github.com/CosmosContracts/juno/v20/app/params" ) // NewRootCmd creates a new root command for junod. It is called once in the diff --git a/cmd/junod/main.go b/cmd/junod/main.go index 99472a37b..5d0153c17 100644 --- a/cmd/junod/main.go +++ b/cmd/junod/main.go @@ -7,8 +7,8 @@ import ( svrcmd "github.com/cosmos/cosmos-sdk/server/cmd" - "github.com/CosmosContracts/juno/v19/app" - "github.com/CosmosContracts/juno/v19/cmd/junod/cmd" + "github.com/CosmosContracts/juno/v20/app" + "github.com/CosmosContracts/juno/v20/cmd/junod/cmd" ) func main() { diff --git a/go.mod b/go.mod index 47c888cc8..750fc2464 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/CosmosContracts/juno/v19 +module github.com/CosmosContracts/juno/v20 go 1.21 diff --git a/interchaintest/chain_upgrade_test.go b/interchaintest/chain_upgrade_test.go index 49ee1d111..e2d55e19a 100644 --- a/interchaintest/chain_upgrade_test.go +++ b/interchaintest/chain_upgrade_test.go @@ -20,7 +20,7 @@ import ( const ( chainName = "juno" - upgradeName = "v19" + upgradeName = "v20" haltHeightDelta = uint64(9) // will propose upgrade this many blocks in the future blocksAfterUpgrade = uint64(7) @@ -30,7 +30,7 @@ var ( // baseChain is the current version of the chain that will be upgraded from baseChain = ibc.DockerImage{ Repository: JunoMainRepo, - Version: "v18.0.0", + Version: "v19.0.0", UidGid: "1025:1025", } ) diff --git a/interchaintest/go.mod b/interchaintest/go.mod index 818b5db04..616585dbb 100644 --- a/interchaintest/go.mod +++ b/interchaintest/go.mod @@ -8,7 +8,7 @@ replace ( github.com/ChainSafe/go-schnorrkel => github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d github.com/ChainSafe/go-schnorrkel/1 => github.com/ChainSafe/go-schnorrkel v1.0.0 // For this nested module, you always want to replace the parent reference with the current worktree. - github.com/CosmosContracts/juno/v19 v19.0.0-00010101000000-000000000000 => ../ + github.com/CosmosContracts/juno/v20 v20.0.0-00010101000000-000000000000 => ../ github.com/btcsuite/btcd => github.com/btcsuite/btcd v0.22.2 //indirect github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1 github.com/vedhavyas/go-subkey => github.com/strangelove-ventures/go-subkey v1.0.7 @@ -17,7 +17,7 @@ replace ( require ( cosmossdk.io/math v1.2.0 github.com/CosmWasm/wasmd v0.45.0 - github.com/CosmosContracts/juno/v19 v19.0.0-00010101000000-000000000000 + github.com/CosmosContracts/juno/v20 v20.0.0-00010101000000-000000000000 github.com/cosmos/cosmos-sdk v0.47.6 github.com/cosmos/gogoproto v1.4.10 github.com/cosmos/ibc-go/v7 v7.3.1 diff --git a/interchaintest/helpers/tokenfactory.go b/interchaintest/helpers/tokenfactory.go index d2f670db5..134d64a81 100644 --- a/interchaintest/helpers/tokenfactory.go +++ b/interchaintest/helpers/tokenfactory.go @@ -15,7 +15,7 @@ import ( "github.com/cosmos/cosmos-sdk/crypto/keyring" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - tokenfactorytypes "github.com/CosmosContracts/juno/v19/x/tokenfactory/types" + tokenfactorytypes "github.com/CosmosContracts/juno/v20/x/tokenfactory/types" ) func debugOutput(t *testing.T, stdout string) { diff --git a/interchaintest/module_clock_test.go b/interchaintest/module_clock_test.go index 5c49be4a7..8942afded 100644 --- a/interchaintest/module_clock_test.go +++ b/interchaintest/module_clock_test.go @@ -5,7 +5,7 @@ import ( "fmt" "testing" - clocktypes "github.com/CosmosContracts/juno/v19/x/clock/types" + clocktypes "github.com/CosmosContracts/juno/v20/x/clock/types" cosmosproto "github.com/cosmos/gogoproto/proto" "github.com/strangelove-ventures/interchaintest/v7" "github.com/strangelove-ventures/interchaintest/v7/chain/cosmos" diff --git a/interchaintest/module_globalfee_test.go b/interchaintest/module_globalfee_test.go index 4e991f322..fe78df8c9 100644 --- a/interchaintest/module_globalfee_test.go +++ b/interchaintest/module_globalfee_test.go @@ -6,7 +6,7 @@ import ( "testing" helpers "github.com/CosmosContracts/juno/tests/interchaintest/helpers" - globalfeetypes "github.com/CosmosContracts/juno/v19/x/globalfee/types" + globalfeetypes "github.com/CosmosContracts/juno/v20/x/globalfee/types" "github.com/cosmos/cosmos-sdk/crypto/keyring" sdk "github.com/cosmos/cosmos-sdk/types" cosmosproto "github.com/cosmos/gogoproto/proto" diff --git a/interchaintest/setup.go b/interchaintest/setup.go index f3603b222..0f2693eb2 100644 --- a/interchaintest/setup.go +++ b/interchaintest/setup.go @@ -18,11 +18,11 @@ import ( testutil "github.com/cosmos/cosmos-sdk/types/module/testutil" ibclocalhost "github.com/cosmos/ibc-go/v7/modules/light-clients/09-localhost" - clocktypes "github.com/CosmosContracts/juno/v19/x/clock/types" - feepaytypes "github.com/CosmosContracts/juno/v19/x/feepay/types" - feesharetypes "github.com/CosmosContracts/juno/v19/x/feeshare/types" - globalfeetypes "github.com/CosmosContracts/juno/v19/x/globalfee/types" - tokenfactorytypes "github.com/CosmosContracts/juno/v19/x/tokenfactory/types" + clocktypes "github.com/CosmosContracts/juno/v20/x/clock/types" + feepaytypes "github.com/CosmosContracts/juno/v20/x/feepay/types" + feesharetypes "github.com/CosmosContracts/juno/v20/x/feeshare/types" + globalfeetypes "github.com/CosmosContracts/juno/v20/x/globalfee/types" + tokenfactorytypes "github.com/CosmosContracts/juno/v20/x/tokenfactory/types" ) var ( diff --git a/x/burn/burner.go b/x/burn/burner.go index c6f51a254..d18f2b991 100644 --- a/x/burn/burner.go +++ b/x/burn/burner.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" - mintkeeper "github.com/CosmosContracts/juno/v19/x/mint/keeper" + mintkeeper "github.com/CosmosContracts/juno/v20/x/mint/keeper" ) // used to override Wasmd's NewBurnCoinMessageHandler diff --git a/x/clock/abci.go b/x/clock/abci.go index ca15e1489..24b97d1e4 100644 --- a/x/clock/abci.go +++ b/x/clock/abci.go @@ -8,9 +8,9 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" - helpers "github.com/CosmosContracts/juno/v19/app/helpers" - "github.com/CosmosContracts/juno/v19/x/clock/keeper" - "github.com/CosmosContracts/juno/v19/x/clock/types" + "github.com/CosmosContracts/juno/v20/app/helpers" + "github.com/CosmosContracts/juno/v20/x/clock/keeper" + "github.com/CosmosContracts/juno/v20/x/clock/types" ) var endBlockSudoMessage = []byte(types.EndBlockSudoMessage) diff --git a/x/clock/abci_test.go b/x/clock/abci_test.go index a4751d853..d32bf3101 100644 --- a/x/clock/abci_test.go +++ b/x/clock/abci_test.go @@ -17,9 +17,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" minttypes "github.com/cosmos/cosmos-sdk/x/mint/types" - "github.com/CosmosContracts/juno/v19/app" - clock "github.com/CosmosContracts/juno/v19/x/clock" - "github.com/CosmosContracts/juno/v19/x/clock/types" + "github.com/CosmosContracts/juno/v20/app" + clock "github.com/CosmosContracts/juno/v20/x/clock" + "github.com/CosmosContracts/juno/v20/x/clock/types" ) type EndBlockerTestSuite struct { diff --git a/x/clock/client/cli/query.go b/x/clock/client/cli/query.go index 92c39a73f..7d70573b3 100644 --- a/x/clock/client/cli/query.go +++ b/x/clock/client/cli/query.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" - "github.com/CosmosContracts/juno/v19/x/clock/types" + "github.com/CosmosContracts/juno/v20/x/clock/types" ) func GetQueryCmd() *cobra.Command { diff --git a/x/clock/client/cli/tx.go b/x/clock/client/cli/tx.go index 10a6afff5..82a1d5280 100644 --- a/x/clock/client/cli/tx.go +++ b/x/clock/client/cli/tx.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/client/tx" - "github.com/CosmosContracts/juno/v19/x/clock/types" + "github.com/CosmosContracts/juno/v20/x/clock/types" ) // NewTxCmd returns a root CLI command handler for certain modules/Clock diff --git a/x/clock/genesis.go b/x/clock/genesis.go index 1a840181a..d370bbcf2 100644 --- a/x/clock/genesis.go +++ b/x/clock/genesis.go @@ -6,8 +6,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/clock/keeper" - "github.com/CosmosContracts/juno/v19/x/clock/types" + "github.com/CosmosContracts/juno/v20/x/clock/keeper" + "github.com/CosmosContracts/juno/v20/x/clock/types" ) // NewGenesisState - Create a new genesis state diff --git a/x/clock/genesis_test.go b/x/clock/genesis_test.go index f89aadcb5..4bbafdcb5 100644 --- a/x/clock/genesis_test.go +++ b/x/clock/genesis_test.go @@ -10,9 +10,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/app" - clock "github.com/CosmosContracts/juno/v19/x/clock" - "github.com/CosmosContracts/juno/v19/x/clock/types" + "github.com/CosmosContracts/juno/v20/app" + clock "github.com/CosmosContracts/juno/v20/x/clock" + "github.com/CosmosContracts/juno/v20/x/clock/types" ) type GenesisTestSuite struct { diff --git a/x/clock/keeper/clock.go b/x/clock/keeper/clock.go index d646b231c..5650d6213 100644 --- a/x/clock/keeper/clock.go +++ b/x/clock/keeper/clock.go @@ -5,8 +5,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - globalerrors "github.com/CosmosContracts/juno/v19/app/helpers" - "github.com/CosmosContracts/juno/v19/x/clock/types" + "github.com/CosmosContracts/juno/v20/x/clock/types" + + globalerrors "github.com/CosmosContracts/juno/v20/app/helpers" ) // Store Keys for clock contracts (both jailed and unjailed) diff --git a/x/clock/keeper/keeper.go b/x/clock/keeper/keeper.go index 641fa109a..aed5a1fb8 100644 --- a/x/clock/keeper/keeper.go +++ b/x/clock/keeper/keeper.go @@ -10,7 +10,7 @@ import ( storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/clock/types" + "github.com/CosmosContracts/juno/v20/x/clock/types" ) // Keeper of the clock store diff --git a/x/clock/keeper/keeper_test.go b/x/clock/keeper/keeper_test.go index 77b45d11a..461063ae9 100644 --- a/x/clock/keeper/keeper_test.go +++ b/x/clock/keeper/keeper_test.go @@ -18,9 +18,9 @@ import ( bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" minttypes "github.com/cosmos/cosmos-sdk/x/mint/types" - "github.com/CosmosContracts/juno/v19/app" - "github.com/CosmosContracts/juno/v19/x/clock/keeper" - "github.com/CosmosContracts/juno/v19/x/clock/types" + "github.com/CosmosContracts/juno/v20/app" + "github.com/CosmosContracts/juno/v20/x/clock/keeper" + "github.com/CosmosContracts/juno/v20/x/clock/types" ) type IntegrationTestSuite struct { diff --git a/x/clock/keeper/msg_server.go b/x/clock/keeper/msg_server.go index 634cb1cbd..efc4a59ed 100644 --- a/x/clock/keeper/msg_server.go +++ b/x/clock/keeper/msg_server.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/CosmosContracts/juno/v19/x/clock/types" + "github.com/CosmosContracts/juno/v20/x/clock/types" ) var _ types.MsgServer = &msgServer{} diff --git a/x/clock/keeper/msg_server_test.go b/x/clock/keeper/msg_server_test.go index fa02dc5f3..32cebcc1d 100644 --- a/x/clock/keeper/msg_server_test.go +++ b/x/clock/keeper/msg_server_test.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/testutil/testdata" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/clock/types" + "github.com/CosmosContracts/juno/v20/x/clock/types" ) // Test register clock contract. diff --git a/x/clock/keeper/querier.go b/x/clock/keeper/querier.go index 83f1414f9..b08a29623 100644 --- a/x/clock/keeper/querier.go +++ b/x/clock/keeper/querier.go @@ -5,8 +5,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - globalerrors "github.com/CosmosContracts/juno/v19/app/helpers" - "github.com/CosmosContracts/juno/v19/x/clock/types" + "github.com/CosmosContracts/juno/v20/x/clock/types" + + globalerrors "github.com/CosmosContracts/juno/v20/app/helpers" ) var _ types.QueryServer = &Querier{} diff --git a/x/clock/keeper/querier_test.go b/x/clock/keeper/querier_test.go index 7a34355ed..973cf4276 100644 --- a/x/clock/keeper/querier_test.go +++ b/x/clock/keeper/querier_test.go @@ -4,7 +4,7 @@ import ( "github.com/cosmos/cosmos-sdk/testutil/testdata" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/clock/types" + "github.com/CosmosContracts/juno/v20/x/clock/types" ) // Query Clock Params diff --git a/x/clock/module.go b/x/clock/module.go index cfac70574..2c253abe4 100644 --- a/x/clock/module.go +++ b/x/clock/module.go @@ -18,9 +18,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/CosmosContracts/juno/v19/x/clock/client/cli" - "github.com/CosmosContracts/juno/v19/x/clock/keeper" - "github.com/CosmosContracts/juno/v19/x/clock/types" + "github.com/CosmosContracts/juno/v20/x/clock/client/cli" + "github.com/CosmosContracts/juno/v20/x/clock/keeper" + "github.com/CosmosContracts/juno/v20/x/clock/types" ) const ( diff --git a/x/clock/types/msgs.go b/x/clock/types/msgs.go index 4f8569ecf..451737f77 100644 --- a/x/clock/types/msgs.go +++ b/x/clock/types/msgs.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - globalerrors "github.com/CosmosContracts/juno/v19/app/helpers" + globalerrors "github.com/CosmosContracts/juno/v20/app/helpers" ) const ( diff --git a/x/clock/types/params_test.go b/x/clock/types/params_test.go index f544e07f9..a3263640e 100644 --- a/x/clock/types/params_test.go +++ b/x/clock/types/params_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/CosmosContracts/juno/v19/x/clock/types" + "github.com/CosmosContracts/juno/v20/x/clock/types" ) func TestParamsValidate(t *testing.T) { diff --git a/x/cw-hooks/client/cli/query.go b/x/cw-hooks/client/cli/query.go index 1f6803ed6..bb62aed2b 100644 --- a/x/cw-hooks/client/cli/query.go +++ b/x/cw-hooks/client/cli/query.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" - "github.com/CosmosContracts/juno/v19/x/cw-hooks/types" + "github.com/CosmosContracts/juno/v20/x/cw-hooks/types" ) func GetQueryCmd() *cobra.Command { diff --git a/x/cw-hooks/client/cli/tx.go b/x/cw-hooks/client/cli/tx.go index 285d94e00..ed3c78b2b 100644 --- a/x/cw-hooks/client/cli/tx.go +++ b/x/cw-hooks/client/cli/tx.go @@ -10,7 +10,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/tx" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/cw-hooks/types" + "github.com/CosmosContracts/juno/v20/x/cw-hooks/types" ) // NewTxCmd returns a root CLI command handler for modules diff --git a/x/cw-hooks/genesis.go b/x/cw-hooks/genesis.go index ca3bd40bc..9f15b1640 100644 --- a/x/cw-hooks/genesis.go +++ b/x/cw-hooks/genesis.go @@ -6,8 +6,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/cw-hooks/keeper" - "github.com/CosmosContracts/juno/v19/x/cw-hooks/types" + "github.com/CosmosContracts/juno/v20/x/cw-hooks/keeper" + "github.com/CosmosContracts/juno/v20/x/cw-hooks/types" ) // NewGenesisState - Create a new genesis state diff --git a/x/cw-hooks/keeper/contracts.go b/x/cw-hooks/keeper/contracts.go index 421365f88..d2bfa832b 100644 --- a/x/cw-hooks/keeper/contracts.go +++ b/x/cw-hooks/keeper/contracts.go @@ -4,7 +4,7 @@ import ( "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" - helpers "github.com/CosmosContracts/juno/v19/app/helpers" + helpers "github.com/CosmosContracts/juno/v20/app/helpers" ) func (k Keeper) SetContract(ctx sdk.Context, keyPrefix []byte, contractAddr sdk.AccAddress) { diff --git a/x/cw-hooks/keeper/gov_hooks.go b/x/cw-hooks/keeper/gov_hooks.go index e9f9e839b..b8c00feec 100644 --- a/x/cw-hooks/keeper/gov_hooks.go +++ b/x/cw-hooks/keeper/gov_hooks.go @@ -9,7 +9,7 @@ import ( govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" v1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" - "github.com/CosmosContracts/juno/v19/x/cw-hooks/types" + "github.com/CosmosContracts/juno/v20/x/cw-hooks/types" ) type GovHooks struct { diff --git a/x/cw-hooks/keeper/keeper.go b/x/cw-hooks/keeper/keeper.go index 9c0de5096..70f79e2f1 100644 --- a/x/cw-hooks/keeper/keeper.go +++ b/x/cw-hooks/keeper/keeper.go @@ -14,7 +14,7 @@ import ( govkeeper "github.com/cosmos/cosmos-sdk/x/gov/keeper" slashingtypes "github.com/cosmos/cosmos-sdk/x/slashing/types" - "github.com/CosmosContracts/juno/v19/x/cw-hooks/types" + "github.com/CosmosContracts/juno/v20/x/cw-hooks/types" ) type Keeper struct { diff --git a/x/cw-hooks/keeper/keeper_test.go b/x/cw-hooks/keeper/keeper_test.go index f315ee44e..6232eb42f 100644 --- a/x/cw-hooks/keeper/keeper_test.go +++ b/x/cw-hooks/keeper/keeper_test.go @@ -19,9 +19,9 @@ import ( minttypes "github.com/cosmos/cosmos-sdk/x/mint/types" stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" - "github.com/CosmosContracts/juno/v19/app" - "github.com/CosmosContracts/juno/v19/x/cw-hooks/keeper" - "github.com/CosmosContracts/juno/v19/x/cw-hooks/types" + "github.com/CosmosContracts/juno/v20/app" + "github.com/CosmosContracts/juno/v20/x/cw-hooks/keeper" + "github.com/CosmosContracts/juno/v20/x/cw-hooks/types" ) var _ = embed.FS{} diff --git a/x/cw-hooks/keeper/msg_server.go b/x/cw-hooks/keeper/msg_server.go index 56f6eb970..f80f64cf0 100644 --- a/x/cw-hooks/keeper/msg_server.go +++ b/x/cw-hooks/keeper/msg_server.go @@ -9,7 +9,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/CosmosContracts/juno/v19/x/cw-hooks/types" + "github.com/CosmosContracts/juno/v20/x/cw-hooks/types" ) var _ types.MsgServer = &msgServer{} diff --git a/x/cw-hooks/keeper/msg_server_test.go b/x/cw-hooks/keeper/msg_server_test.go index 701854b84..fdbacfa53 100644 --- a/x/cw-hooks/keeper/msg_server_test.go +++ b/x/cw-hooks/keeper/msg_server_test.go @@ -9,7 +9,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/CosmosContracts/juno/v19/x/cw-hooks/types" + "github.com/CosmosContracts/juno/v20/x/cw-hooks/types" ) func (s *IntegrationTestSuite) TestRegisterContracts() { diff --git a/x/cw-hooks/keeper/params.go b/x/cw-hooks/keeper/params.go index 9de2d911b..d859f5e8a 100644 --- a/x/cw-hooks/keeper/params.go +++ b/x/cw-hooks/keeper/params.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/cw-hooks/types" + "github.com/CosmosContracts/juno/v20/x/cw-hooks/types" ) // SetParams sets the x/cw-hooks module parameters. diff --git a/x/cw-hooks/keeper/querier.go b/x/cw-hooks/keeper/querier.go index 8b307b3af..3338004d6 100644 --- a/x/cw-hooks/keeper/querier.go +++ b/x/cw-hooks/keeper/querier.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/cw-hooks/types" + "github.com/CosmosContracts/juno/v20/x/cw-hooks/types" ) var _ types.QueryServer = &Querier{} diff --git a/x/cw-hooks/keeper/querier_test.go b/x/cw-hooks/keeper/querier_test.go index 9efdcce4c..f48ddbd78 100644 --- a/x/cw-hooks/keeper/querier_test.go +++ b/x/cw-hooks/keeper/querier_test.go @@ -4,7 +4,7 @@ import ( "github.com/cosmos/cosmos-sdk/testutil/testdata" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/cw-hooks/types" + "github.com/CosmosContracts/juno/v20/x/cw-hooks/types" ) func (s *IntegrationTestSuite) TestContracts() { diff --git a/x/cw-hooks/keeper/staking_hooks.go b/x/cw-hooks/keeper/staking_hooks.go index 74c8135ad..6944b8807 100644 --- a/x/cw-hooks/keeper/staking_hooks.go +++ b/x/cw-hooks/keeper/staking_hooks.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/CosmosContracts/juno/v19/x/cw-hooks/types" + "github.com/CosmosContracts/juno/v20/x/cw-hooks/types" ) // skipUntilHeight allows us to skip gentxs. diff --git a/x/cw-hooks/module.go b/x/cw-hooks/module.go index 19cdb93d9..c105ea48c 100644 --- a/x/cw-hooks/module.go +++ b/x/cw-hooks/module.go @@ -18,9 +18,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/CosmosContracts/juno/v19/x/cw-hooks/client/cli" - "github.com/CosmosContracts/juno/v19/x/cw-hooks/keeper" - "github.com/CosmosContracts/juno/v19/x/cw-hooks/types" + "github.com/CosmosContracts/juno/v20/x/cw-hooks/client/cli" + "github.com/CosmosContracts/juno/v20/x/cw-hooks/keeper" + "github.com/CosmosContracts/juno/v20/x/cw-hooks/types" ) const ( diff --git a/x/drip/client/cli/query.go b/x/drip/client/cli/query.go index 47ad1b7c0..47bc95ca9 100644 --- a/x/drip/client/cli/query.go +++ b/x/drip/client/cli/query.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" - "github.com/CosmosContracts/juno/v19/x/drip/types" + "github.com/CosmosContracts/juno/v20/x/drip/types" ) // GetQueryCmd returns the cli query commands for this module diff --git a/x/drip/client/cli/tx.go b/x/drip/client/cli/tx.go index ad847a49f..8cadaf05e 100644 --- a/x/drip/client/cli/tx.go +++ b/x/drip/client/cli/tx.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/tx" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/drip/types" + "github.com/CosmosContracts/juno/v20/x/drip/types" ) // NewTxCmd returns a root CLI command handler for certain modules transaction commands. diff --git a/x/drip/genesis.go b/x/drip/genesis.go index 89449ab5b..fdc04d573 100644 --- a/x/drip/genesis.go +++ b/x/drip/genesis.go @@ -3,8 +3,8 @@ package drip import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/drip/keeper" - "github.com/CosmosContracts/juno/v19/x/drip/types" + "github.com/CosmosContracts/juno/v20/x/drip/keeper" + "github.com/CosmosContracts/juno/v20/x/drip/types" ) // InitGenesis import module genesis diff --git a/x/drip/genesis_test.go b/x/drip/genesis_test.go index 6a8598fc4..3adb42c7b 100644 --- a/x/drip/genesis_test.go +++ b/x/drip/genesis_test.go @@ -10,9 +10,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/app" - drip "github.com/CosmosContracts/juno/v19/x/drip" - "github.com/CosmosContracts/juno/v19/x/drip/types" + "github.com/CosmosContracts/juno/v20/app" + drip "github.com/CosmosContracts/juno/v20/x/drip" + "github.com/CosmosContracts/juno/v20/x/drip/types" ) type GenesisTestSuite struct { diff --git a/x/drip/keeper/grpc_query.go b/x/drip/keeper/grpc_query.go index e1d3924c3..c26e57e92 100644 --- a/x/drip/keeper/grpc_query.go +++ b/x/drip/keeper/grpc_query.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/drip/types" + "github.com/CosmosContracts/juno/v20/x/drip/types" ) var _ types.QueryServer = Querier{} diff --git a/x/drip/keeper/grpc_query_test.go b/x/drip/keeper/grpc_query_test.go index c03ad51d1..a6a49aa44 100644 --- a/x/drip/keeper/grpc_query_test.go +++ b/x/drip/keeper/grpc_query_test.go @@ -4,7 +4,7 @@ import ( "github.com/cosmos/cosmos-sdk/testutil/testdata" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/drip/types" + "github.com/CosmosContracts/juno/v20/x/drip/types" ) func (s *IntegrationTestSuite) TestDripQueryParams() { diff --git a/x/drip/keeper/keeper.go b/x/drip/keeper/keeper.go index b0848e4eb..6c43b6bda 100644 --- a/x/drip/keeper/keeper.go +++ b/x/drip/keeper/keeper.go @@ -5,7 +5,7 @@ import ( storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" - driptypes "github.com/CosmosContracts/juno/v19/x/drip/types" + driptypes "github.com/CosmosContracts/juno/v20/x/drip/types" ) // Keeper of this module maintains distributing tokens to all stakers. diff --git a/x/drip/keeper/keeper_test.go b/x/drip/keeper/keeper_test.go index 5dca2b55f..548687a61 100644 --- a/x/drip/keeper/keeper_test.go +++ b/x/drip/keeper/keeper_test.go @@ -12,9 +12,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" minttypes "github.com/cosmos/cosmos-sdk/x/mint/types" - "github.com/CosmosContracts/juno/v19/app" - "github.com/CosmosContracts/juno/v19/x/drip/keeper" - "github.com/CosmosContracts/juno/v19/x/drip/types" + "github.com/CosmosContracts/juno/v20/app" + "github.com/CosmosContracts/juno/v20/x/drip/keeper" + "github.com/CosmosContracts/juno/v20/x/drip/types" ) type IntegrationTestSuite struct { diff --git a/x/drip/keeper/msg_server.go b/x/drip/keeper/msg_server.go index 15a7fcb6d..850c48a70 100644 --- a/x/drip/keeper/msg_server.go +++ b/x/drip/keeper/msg_server.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/CosmosContracts/juno/v19/x/drip/types" + "github.com/CosmosContracts/juno/v20/x/drip/types" ) var _ types.MsgServer = &Keeper{} diff --git a/x/drip/keeper/msg_server_test.go b/x/drip/keeper/msg_server_test.go index e655082dc..7a656ebd7 100644 --- a/x/drip/keeper/msg_server_test.go +++ b/x/drip/keeper/msg_server_test.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/testutil/testdata" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/drip/types" + "github.com/CosmosContracts/juno/v20/x/drip/types" ) func (s *IntegrationTestSuite) TestDripDistributeTokensMsgs() { diff --git a/x/drip/keeper/params.go b/x/drip/keeper/params.go index 97c691627..c3e934bd1 100644 --- a/x/drip/keeper/params.go +++ b/x/drip/keeper/params.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/drip/types" + "github.com/CosmosContracts/juno/v20/x/drip/types" ) // GetParams returns the current x/drip module parameters. diff --git a/x/drip/module.go b/x/drip/module.go index 59deee55a..a2237bdb8 100644 --- a/x/drip/module.go +++ b/x/drip/module.go @@ -19,9 +19,9 @@ import ( simtypes "github.com/cosmos/cosmos-sdk/types/simulation" authkeeper "github.com/cosmos/cosmos-sdk/x/auth/keeper" - "github.com/CosmosContracts/juno/v19/x/drip/client/cli" - "github.com/CosmosContracts/juno/v19/x/drip/keeper" - "github.com/CosmosContracts/juno/v19/x/drip/types" + "github.com/CosmosContracts/juno/v20/x/drip/client/cli" + "github.com/CosmosContracts/juno/v20/x/drip/keeper" + "github.com/CosmosContracts/juno/v20/x/drip/types" ) // type check to ensure the interface is properly implemented diff --git a/x/feepay/ante/deduct_fee.go b/x/feepay/ante/deduct_fee.go index 2713a66d0..298ea8a1f 100644 --- a/x/feepay/ante/deduct_fee.go +++ b/x/feepay/ante/deduct_fee.go @@ -15,9 +15,9 @@ import ( "github.com/cosmos/cosmos-sdk/x/auth/types" bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" - feepaykeeper "github.com/CosmosContracts/juno/v19/x/feepay/keeper" - feepaytypes "github.com/CosmosContracts/juno/v19/x/feepay/types" - globalfeekeeper "github.com/CosmosContracts/juno/v19/x/globalfee/keeper" + feepaykeeper "github.com/CosmosContracts/juno/v20/x/feepay/keeper" + feepaytypes "github.com/CosmosContracts/juno/v20/x/feepay/types" + globalfeekeeper "github.com/CosmosContracts/juno/v20/x/globalfee/keeper" ) // DeductFeeDecorator deducts fees from the first signer of the tx diff --git a/x/feepay/ante/fee_route.go b/x/feepay/ante/fee_route.go index 4f6181982..74a83a47e 100644 --- a/x/feepay/ante/fee_route.go +++ b/x/feepay/ante/fee_route.go @@ -6,9 +6,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - feepayhelpers "github.com/CosmosContracts/juno/v19/x/feepay/helpers" - feepaykeeper "github.com/CosmosContracts/juno/v19/x/feepay/keeper" - globalfeeante "github.com/CosmosContracts/juno/v19/x/globalfee/ante" + feepayhelpers "github.com/CosmosContracts/juno/v20/x/feepay/helpers" + feepaykeeper "github.com/CosmosContracts/juno/v20/x/feepay/keeper" + globalfeeante "github.com/CosmosContracts/juno/v20/x/globalfee/ante" ) // MsgFilterDecorator defines an AnteHandler decorator that only checks and saves if a diff --git a/x/feepay/client/cli/query.go b/x/feepay/client/cli/query.go index 7f050b0c0..d5e800317 100644 --- a/x/feepay/client/cli/query.go +++ b/x/feepay/client/cli/query.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" - "github.com/CosmosContracts/juno/v19/x/feepay/types" + "github.com/CosmosContracts/juno/v20/x/feepay/types" ) // NewQueryCmd returns the cli query commands for this module diff --git a/x/feepay/client/cli/tx.go b/x/feepay/client/cli/tx.go index bd65ccc03..4fe999d75 100644 --- a/x/feepay/client/cli/tx.go +++ b/x/feepay/client/cli/tx.go @@ -10,7 +10,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/tx" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/feepay/types" + "github.com/CosmosContracts/juno/v20/x/feepay/types" ) // NewTxCmd returns a root CLI command handler for certain modules/FeeShare diff --git a/x/feepay/genesis.go b/x/feepay/genesis.go index 5ed933ac6..b774a5045 100644 --- a/x/feepay/genesis.go +++ b/x/feepay/genesis.go @@ -3,8 +3,8 @@ package feepay import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/feepay/keeper" - "github.com/CosmosContracts/juno/v19/x/feepay/types" + "github.com/CosmosContracts/juno/v20/x/feepay/keeper" + "github.com/CosmosContracts/juno/v20/x/feepay/types" ) // InitGenesis import module genesis diff --git a/x/feepay/genesis_test.go b/x/feepay/genesis_test.go index 4c97c17cc..ca269607b 100644 --- a/x/feepay/genesis_test.go +++ b/x/feepay/genesis_test.go @@ -10,9 +10,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/app" - "github.com/CosmosContracts/juno/v19/x/feepay" - "github.com/CosmosContracts/juno/v19/x/feepay/types" + "github.com/CosmosContracts/juno/v20/app" + "github.com/CosmosContracts/juno/v20/x/feepay" + "github.com/CosmosContracts/juno/v20/x/feepay/types" ) type GenesisTestSuite struct { diff --git a/x/feepay/helpers/fee_pay_tx_validator.go b/x/feepay/helpers/fee_pay_tx_validator.go index 2b92583b4..a17407b74 100644 --- a/x/feepay/helpers/fee_pay_tx_validator.go +++ b/x/feepay/helpers/fee_pay_tx_validator.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - feepaykeeper "github.com/CosmosContracts/juno/v19/x/feepay/keeper" + feepaykeeper "github.com/CosmosContracts/juno/v20/x/feepay/keeper" ) // Check if a transaction should be processed as a FeePay transaction. diff --git a/x/feepay/keeper/feepay.go b/x/feepay/keeper/feepay.go index e4feed9f1..d0d8baede 100644 --- a/x/feepay/keeper/feepay.go +++ b/x/feepay/keeper/feepay.go @@ -9,8 +9,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - globalerrors "github.com/CosmosContracts/juno/v19/app/helpers" - "github.com/CosmosContracts/juno/v19/x/feepay/types" + "github.com/CosmosContracts/juno/v20/x/feepay/types" + + globalerrors "github.com/CosmosContracts/juno/v20/app/helpers" ) // Check if a contract is registered as a fee pay contract diff --git a/x/feepay/keeper/keeper.go b/x/feepay/keeper/keeper.go index 20215ec23..a83cea2fe 100644 --- a/x/feepay/keeper/keeper.go +++ b/x/feepay/keeper/keeper.go @@ -12,8 +12,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" - feepaytypes "github.com/CosmosContracts/juno/v19/x/feepay/types" - feesharetypes "github.com/CosmosContracts/juno/v19/x/feeshare/types" + feepaytypes "github.com/CosmosContracts/juno/v20/x/feepay/types" + feesharetypes "github.com/CosmosContracts/juno/v20/x/feeshare/types" ) var ( diff --git a/x/feepay/keeper/keeper_test.go b/x/feepay/keeper/keeper_test.go index 3b15b393f..75502d110 100644 --- a/x/feepay/keeper/keeper_test.go +++ b/x/feepay/keeper/keeper_test.go @@ -19,9 +19,9 @@ import ( bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" minttypes "github.com/cosmos/cosmos-sdk/x/mint/types" - "github.com/CosmosContracts/juno/v19/app" - "github.com/CosmosContracts/juno/v19/x/feepay/keeper" - "github.com/CosmosContracts/juno/v19/x/feepay/types" + "github.com/CosmosContracts/juno/v20/app" + "github.com/CosmosContracts/juno/v20/x/feepay/keeper" + "github.com/CosmosContracts/juno/v20/x/feepay/types" ) type IntegrationTestSuite struct { diff --git a/x/feepay/keeper/msg_server.go b/x/feepay/keeper/msg_server.go index 87598cf2b..bcbf57e7e 100644 --- a/x/feepay/keeper/msg_server.go +++ b/x/feepay/keeper/msg_server.go @@ -8,8 +8,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - globalerrors "github.com/CosmosContracts/juno/v19/app/helpers" - "github.com/CosmosContracts/juno/v19/x/feepay/types" + "github.com/CosmosContracts/juno/v20/x/feepay/types" + + globalerrors "github.com/CosmosContracts/juno/v20/app/helpers" ) var _ types.MsgServer = &Keeper{} diff --git a/x/feepay/keeper/msg_server_test.go b/x/feepay/keeper/msg_server_test.go index 54e4ccc01..33b9ace72 100644 --- a/x/feepay/keeper/msg_server_test.go +++ b/x/feepay/keeper/msg_server_test.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" // govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/CosmosContracts/juno/v19/x/feepay/types" + "github.com/CosmosContracts/juno/v20/x/feepay/types" ) func (s *IntegrationTestSuite) TestRegisterFeePayContract() { diff --git a/x/feepay/keeper/params.go b/x/feepay/keeper/params.go index 2e12f0d7c..45cad6907 100644 --- a/x/feepay/keeper/params.go +++ b/x/feepay/keeper/params.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/feepay/types" + "github.com/CosmosContracts/juno/v20/x/feepay/types" ) // Get the parameters for the fee pay module. diff --git a/x/feepay/keeper/querier.go b/x/feepay/keeper/querier.go index ff5d1b66e..b5d1a61f5 100644 --- a/x/feepay/keeper/querier.go +++ b/x/feepay/keeper/querier.go @@ -5,8 +5,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - globalerrors "github.com/CosmosContracts/juno/v19/app/helpers" - "github.com/CosmosContracts/juno/v19/x/feepay/types" + "github.com/CosmosContracts/juno/v20/x/feepay/types" + + globalerrors "github.com/CosmosContracts/juno/v20/app/helpers" ) var _ types.QueryServer = Querier{} diff --git a/x/feepay/keeper/querier_test.go b/x/feepay/keeper/querier_test.go index a4dfe6ebb..64b88fe31 100644 --- a/x/feepay/keeper/querier_test.go +++ b/x/feepay/keeper/querier_test.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - "github.com/CosmosContracts/juno/v19/testutil/nullify" - "github.com/CosmosContracts/juno/v19/x/feepay/types" + "github.com/CosmosContracts/juno/v20/testutil/nullify" + "github.com/CosmosContracts/juno/v20/x/feepay/types" ) func (s *IntegrationTestSuite) TestQueryContract() { diff --git a/x/feepay/module.go b/x/feepay/module.go index dab8cc16c..dd7cb9275 100644 --- a/x/feepay/module.go +++ b/x/feepay/module.go @@ -19,9 +19,9 @@ import ( simtypes "github.com/cosmos/cosmos-sdk/types/simulation" authkeeper "github.com/cosmos/cosmos-sdk/x/auth/keeper" - "github.com/CosmosContracts/juno/v19/x/feepay/client/cli" - "github.com/CosmosContracts/juno/v19/x/feepay/keeper" - "github.com/CosmosContracts/juno/v19/x/feepay/types" + "github.com/CosmosContracts/juno/v20/x/feepay/client/cli" + "github.com/CosmosContracts/juno/v20/x/feepay/keeper" + "github.com/CosmosContracts/juno/v20/x/feepay/types" ) // type check to ensure the interface is properly implemented diff --git a/x/feeshare/ante/ante.go b/x/feeshare/ante/ante.go index 7baa3d2f3..33b82a781 100644 --- a/x/feeshare/ante/ante.go +++ b/x/feeshare/ante/ante.go @@ -12,7 +12,7 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" "github.com/cosmos/cosmos-sdk/x/authz" - feeshare "github.com/CosmosContracts/juno/v19/x/feeshare/types" + feeshare "github.com/CosmosContracts/juno/v20/x/feeshare/types" ) // FeeSharePayoutDecorator Run his after we already deduct the fee from the account with diff --git a/x/feeshare/ante/ante_test.go b/x/feeshare/ante/ante_test.go index 4309415d9..ce67d43ac 100644 --- a/x/feeshare/ante/ante_test.go +++ b/x/feeshare/ante/ante_test.go @@ -17,10 +17,10 @@ import ( bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" minttypes "github.com/cosmos/cosmos-sdk/x/mint/types" - "github.com/CosmosContracts/juno/v19/app" - ante "github.com/CosmosContracts/juno/v19/x/feeshare/ante" - feesharekeeper "github.com/CosmosContracts/juno/v19/x/feeshare/keeper" - feesharetypes "github.com/CosmosContracts/juno/v19/x/feeshare/types" + "github.com/CosmosContracts/juno/v20/app" + ante "github.com/CosmosContracts/juno/v20/x/feeshare/ante" + feesharekeeper "github.com/CosmosContracts/juno/v20/x/feeshare/keeper" + feesharetypes "github.com/CosmosContracts/juno/v20/x/feeshare/types" ) // Define an empty ante handle diff --git a/x/feeshare/ante/expected_keepers.go b/x/feeshare/ante/expected_keepers.go index ac70bea4e..a27355e78 100644 --- a/x/feeshare/ante/expected_keepers.go +++ b/x/feeshare/ante/expected_keepers.go @@ -5,7 +5,7 @@ package ante import ( sdk "github.com/cosmos/cosmos-sdk/types" - revtypes "github.com/CosmosContracts/juno/v19/x/feeshare/types" + revtypes "github.com/CosmosContracts/juno/v20/x/feeshare/types" ) type BankKeeper interface { diff --git a/x/feeshare/client/cli/query.go b/x/feeshare/client/cli/query.go index 0d418eae1..d8b048d09 100644 --- a/x/feeshare/client/cli/query.go +++ b/x/feeshare/client/cli/query.go @@ -10,7 +10,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/version" - "github.com/CosmosContracts/juno/v19/x/feeshare/types" + "github.com/CosmosContracts/juno/v20/x/feeshare/types" ) // GetQueryCmd returns the cli query commands for this module diff --git a/x/feeshare/client/cli/tx.go b/x/feeshare/client/cli/tx.go index cdcfb8484..e4c9a47f4 100644 --- a/x/feeshare/client/cli/tx.go +++ b/x/feeshare/client/cli/tx.go @@ -10,7 +10,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/tx" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/feeshare/types" + "github.com/CosmosContracts/juno/v20/x/feeshare/types" ) // NewTxCmd returns a root CLI command handler for certain modules/FeeShare diff --git a/x/feeshare/genesis.go b/x/feeshare/genesis.go index 41084e03c..0f51546e3 100644 --- a/x/feeshare/genesis.go +++ b/x/feeshare/genesis.go @@ -3,8 +3,8 @@ package feeshare import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/feeshare/keeper" - "github.com/CosmosContracts/juno/v19/x/feeshare/types" + "github.com/CosmosContracts/juno/v20/x/feeshare/keeper" + "github.com/CosmosContracts/juno/v20/x/feeshare/types" ) // InitGenesis import module genesis diff --git a/x/feeshare/genesis_test.go b/x/feeshare/genesis_test.go index 06da0aff7..eca5f46cf 100644 --- a/x/feeshare/genesis_test.go +++ b/x/feeshare/genesis_test.go @@ -10,9 +10,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/app" - "github.com/CosmosContracts/juno/v19/x/feeshare" - "github.com/CosmosContracts/juno/v19/x/feeshare/types" + "github.com/CosmosContracts/juno/v20/app" + "github.com/CosmosContracts/juno/v20/x/feeshare" + "github.com/CosmosContracts/juno/v20/x/feeshare/types" ) type GenesisTestSuite struct { diff --git a/x/feeshare/integration_test.go b/x/feeshare/integration_test.go index f660d4d97..72cde8873 100644 --- a/x/feeshare/integration_test.go +++ b/x/feeshare/integration_test.go @@ -19,8 +19,8 @@ import ( simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims" sdk "github.com/cosmos/cosmos-sdk/types" - junoapp "github.com/CosmosContracts/juno/v19/app" - "github.com/CosmosContracts/juno/v19/x/mint/types" + junoapp "github.com/CosmosContracts/juno/v20/app" + "github.com/CosmosContracts/juno/v20/x/mint/types" ) // returns context and an app with updated mint keeper diff --git a/x/feeshare/keeper/feeshare.go b/x/feeshare/keeper/feeshare.go index 38f6d163c..0a7bca0e8 100644 --- a/x/feeshare/keeper/feeshare.go +++ b/x/feeshare/keeper/feeshare.go @@ -4,7 +4,7 @@ import ( "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/feeshare/types" + "github.com/CosmosContracts/juno/v20/x/feeshare/types" ) // GetFeeShares returns all registered FeeShares. diff --git a/x/feeshare/keeper/grpc_query.go b/x/feeshare/keeper/grpc_query.go index a09b0b41f..12c799542 100644 --- a/x/feeshare/keeper/grpc_query.go +++ b/x/feeshare/keeper/grpc_query.go @@ -10,7 +10,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - "github.com/CosmosContracts/juno/v19/x/feeshare/types" + "github.com/CosmosContracts/juno/v20/x/feeshare/types" ) var _ types.QueryServer = Querier{} diff --git a/x/feeshare/keeper/grpc_query_test.go b/x/feeshare/keeper/grpc_query_test.go index ce8944f8c..13b484faf 100644 --- a/x/feeshare/keeper/grpc_query_test.go +++ b/x/feeshare/keeper/grpc_query_test.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - "github.com/CosmosContracts/juno/v19/testutil/nullify" - "github.com/CosmosContracts/juno/v19/x/feeshare/types" + "github.com/CosmosContracts/juno/v20/testutil/nullify" + "github.com/CosmosContracts/juno/v20/x/feeshare/types" ) func (s *IntegrationTestSuite) TestFeeShares() { diff --git a/x/feeshare/keeper/keeper.go b/x/feeshare/keeper/keeper.go index abbc97561..63bac510c 100644 --- a/x/feeshare/keeper/keeper.go +++ b/x/feeshare/keeper/keeper.go @@ -11,7 +11,7 @@ import ( storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" - revtypes "github.com/CosmosContracts/juno/v19/x/feeshare/types" + revtypes "github.com/CosmosContracts/juno/v20/x/feeshare/types" ) // Keeper of this module maintains collections of feeshares for contracts diff --git a/x/feeshare/keeper/keeper_test.go b/x/feeshare/keeper/keeper_test.go index 79f26ea68..206aa404b 100644 --- a/x/feeshare/keeper/keeper_test.go +++ b/x/feeshare/keeper/keeper_test.go @@ -14,9 +14,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" minttypes "github.com/cosmos/cosmos-sdk/x/mint/types" - "github.com/CosmosContracts/juno/v19/app" - "github.com/CosmosContracts/juno/v19/x/feeshare/keeper" - "github.com/CosmosContracts/juno/v19/x/feeshare/types" + "github.com/CosmosContracts/juno/v20/app" + "github.com/CosmosContracts/juno/v20/x/feeshare/keeper" + "github.com/CosmosContracts/juno/v20/x/feeshare/types" ) // BankKeeper defines the expected interface needed to retrieve account balances. diff --git a/x/feeshare/keeper/migrator.go b/x/feeshare/keeper/migrator.go index cf1905b3b..999187979 100644 --- a/x/feeshare/keeper/migrator.go +++ b/x/feeshare/keeper/migrator.go @@ -3,8 +3,8 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/feeshare/exported" - v2 "github.com/CosmosContracts/juno/v19/x/feeshare/migrations/v2" + "github.com/CosmosContracts/juno/v20/x/feeshare/exported" + v2 "github.com/CosmosContracts/juno/v20/x/feeshare/migrations/v2" ) // Migrator is a struct for handling in-place state migrations. diff --git a/x/feeshare/keeper/msg_server.go b/x/feeshare/keeper/msg_server.go index 44a763b43..ead8f0513 100644 --- a/x/feeshare/keeper/msg_server.go +++ b/x/feeshare/keeper/msg_server.go @@ -11,7 +11,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/CosmosContracts/juno/v19/x/feeshare/types" + "github.com/CosmosContracts/juno/v20/x/feeshare/types" ) var _ types.MsgServer = &Keeper{} diff --git a/x/feeshare/keeper/msg_server_test.go b/x/feeshare/keeper/msg_server_test.go index eae955c48..b3a4935a5 100644 --- a/x/feeshare/keeper/msg_server_test.go +++ b/x/feeshare/keeper/msg_server_test.go @@ -11,7 +11,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/CosmosContracts/juno/v19/x/feeshare/types" + "github.com/CosmosContracts/juno/v20/x/feeshare/types" ) //go:embed testdata/reflect.wasm diff --git a/x/feeshare/keeper/params.go b/x/feeshare/keeper/params.go index f2d3dbeea..2387a5899 100644 --- a/x/feeshare/keeper/params.go +++ b/x/feeshare/keeper/params.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/feeshare/types" + "github.com/CosmosContracts/juno/v20/x/feeshare/types" ) // GetParams returns the total set of fees parameters. diff --git a/x/feeshare/migrations/v2/migrate.go b/x/feeshare/migrations/v2/migrate.go index 3fc85180e..3c3e1a1e0 100644 --- a/x/feeshare/migrations/v2/migrate.go +++ b/x/feeshare/migrations/v2/migrate.go @@ -4,8 +4,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/feeshare/exported" - "github.com/CosmosContracts/juno/v19/x/feeshare/types" + "github.com/CosmosContracts/juno/v20/x/feeshare/exported" + "github.com/CosmosContracts/juno/v20/x/feeshare/types" ) const ( diff --git a/x/feeshare/migrations/v2/migrate_test.go b/x/feeshare/migrations/v2/migrate_test.go index 188845110..dba8bbbca 100644 --- a/x/feeshare/migrations/v2/migrate_test.go +++ b/x/feeshare/migrations/v2/migrate_test.go @@ -9,10 +9,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" - "github.com/CosmosContracts/juno/v19/x/feeshare" - "github.com/CosmosContracts/juno/v19/x/feeshare/exported" - v2 "github.com/CosmosContracts/juno/v19/x/feeshare/migrations/v2" - "github.com/CosmosContracts/juno/v19/x/feeshare/types" + "github.com/CosmosContracts/juno/v20/x/feeshare" + "github.com/CosmosContracts/juno/v20/x/feeshare/exported" + v2 "github.com/CosmosContracts/juno/v20/x/feeshare/migrations/v2" + "github.com/CosmosContracts/juno/v20/x/feeshare/types" ) type mockSubspace struct { diff --git a/x/feeshare/module.go b/x/feeshare/module.go index dc7c44a05..e6392defd 100644 --- a/x/feeshare/module.go +++ b/x/feeshare/module.go @@ -19,10 +19,10 @@ import ( simtypes "github.com/cosmos/cosmos-sdk/types/simulation" authkeeper "github.com/cosmos/cosmos-sdk/x/auth/keeper" - "github.com/CosmosContracts/juno/v19/x/feeshare/client/cli" - "github.com/CosmosContracts/juno/v19/x/feeshare/exported" - "github.com/CosmosContracts/juno/v19/x/feeshare/keeper" - "github.com/CosmosContracts/juno/v19/x/feeshare/types" + "github.com/CosmosContracts/juno/v20/x/feeshare/client/cli" + "github.com/CosmosContracts/juno/v20/x/feeshare/exported" + "github.com/CosmosContracts/juno/v20/x/feeshare/keeper" + "github.com/CosmosContracts/juno/v20/x/feeshare/types" ) // type check to ensure the interface is properly implemented diff --git a/x/globalfee/alias.go b/x/globalfee/alias.go index 2592134ce..85477422b 100644 --- a/x/globalfee/alias.go +++ b/x/globalfee/alias.go @@ -1,7 +1,7 @@ package globalfee import ( - "github.com/CosmosContracts/juno/v19/x/globalfee/types" + "github.com/CosmosContracts/juno/v20/x/globalfee/types" ) const ( diff --git a/x/globalfee/ante/fee.go b/x/globalfee/ante/fee.go index 8336b4619..4e712a3cc 100644 --- a/x/globalfee/ante/fee.go +++ b/x/globalfee/ante/fee.go @@ -11,7 +11,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" - globalfeekeeper "github.com/CosmosContracts/juno/v19/x/globalfee/keeper" + globalfeekeeper "github.com/CosmosContracts/juno/v20/x/globalfee/keeper" ) // FeeWithBypassDecorator checks if the transaction's fee is at least as large diff --git a/x/globalfee/client/cli/query.go b/x/globalfee/client/cli/query.go index 2381472b0..6883978c5 100644 --- a/x/globalfee/client/cli/query.go +++ b/x/globalfee/client/cli/query.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" - "github.com/CosmosContracts/juno/v19/x/globalfee/types" + "github.com/CosmosContracts/juno/v20/x/globalfee/types" ) func GetQueryCmd() *cobra.Command { diff --git a/x/globalfee/genesis_test.go b/x/globalfee/genesis_test.go index bc1547229..2cadb6155 100644 --- a/x/globalfee/genesis_test.go +++ b/x/globalfee/genesis_test.go @@ -15,9 +15,9 @@ import ( storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" - appparams "github.com/CosmosContracts/juno/v19/app/params" - globalfeekeeper "github.com/CosmosContracts/juno/v19/x/globalfee/keeper" - "github.com/CosmosContracts/juno/v19/x/globalfee/types" + appparams "github.com/CosmosContracts/juno/v20/app/params" + globalfeekeeper "github.com/CosmosContracts/juno/v20/x/globalfee/keeper" + "github.com/CosmosContracts/juno/v20/x/globalfee/types" ) func TestDefaultGenesis(t *testing.T) { diff --git a/x/globalfee/keeper/keeper.go b/x/globalfee/keeper/keeper.go index bde6581f6..a83ef7aea 100644 --- a/x/globalfee/keeper/keeper.go +++ b/x/globalfee/keeper/keeper.go @@ -5,7 +5,7 @@ import ( storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/globalfee/types" + "github.com/CosmosContracts/juno/v20/x/globalfee/types" ) // Keeper of the globalfee store diff --git a/x/globalfee/keeper/migrator.go b/x/globalfee/keeper/migrator.go index 0f5f3b19b..1c34d2075 100644 --- a/x/globalfee/keeper/migrator.go +++ b/x/globalfee/keeper/migrator.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - v2 "github.com/CosmosContracts/juno/v19/x/globalfee/migrations/v2" + v2 "github.com/CosmosContracts/juno/v20/x/globalfee/migrations/v2" ) // Migrator is a struct for handling in-place state migrations. diff --git a/x/globalfee/keeper/msg_server.go b/x/globalfee/keeper/msg_server.go index 8b786914a..7a8e1a6b8 100644 --- a/x/globalfee/keeper/msg_server.go +++ b/x/globalfee/keeper/msg_server.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/CosmosContracts/juno/v19/x/globalfee/types" + "github.com/CosmosContracts/juno/v20/x/globalfee/types" ) var _ types.MsgServer = msgServer{} diff --git a/x/globalfee/migrations/v2/migrate.go b/x/globalfee/migrations/v2/migrate.go index bfebba134..154cf8ac0 100644 --- a/x/globalfee/migrations/v2/migrate.go +++ b/x/globalfee/migrations/v2/migrate.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/globalfee/types" + "github.com/CosmosContracts/juno/v20/x/globalfee/types" ) const ( diff --git a/x/globalfee/migrations/v2/migrator_test.go b/x/globalfee/migrations/v2/migrator_test.go index 05154b1dd..c3bfed21d 100644 --- a/x/globalfee/migrations/v2/migrator_test.go +++ b/x/globalfee/migrations/v2/migrator_test.go @@ -9,9 +9,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" - "github.com/CosmosContracts/juno/v19/x/globalfee" - v2 "github.com/CosmosContracts/juno/v19/x/globalfee/migrations/v2" - "github.com/CosmosContracts/juno/v19/x/globalfee/types" + "github.com/CosmosContracts/juno/v20/x/globalfee" + v2 "github.com/CosmosContracts/juno/v20/x/globalfee/migrations/v2" + "github.com/CosmosContracts/juno/v20/x/globalfee/types" ) func TestMigrateMainnet(t *testing.T) { diff --git a/x/globalfee/module.go b/x/globalfee/module.go index 53539149c..d985638cd 100644 --- a/x/globalfee/module.go +++ b/x/globalfee/module.go @@ -19,9 +19,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/CosmosContracts/juno/v19/x/globalfee/client/cli" - "github.com/CosmosContracts/juno/v19/x/globalfee/keeper" - "github.com/CosmosContracts/juno/v19/x/globalfee/types" + "github.com/CosmosContracts/juno/v20/x/globalfee/client/cli" + "github.com/CosmosContracts/juno/v20/x/globalfee/keeper" + "github.com/CosmosContracts/juno/v20/x/globalfee/types" ) var ( diff --git a/x/globalfee/querier.go b/x/globalfee/querier.go index 7d1233eb0..6371e08db 100644 --- a/x/globalfee/querier.go +++ b/x/globalfee/querier.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/globalfee/keeper" - "github.com/CosmosContracts/juno/v19/x/globalfee/types" + "github.com/CosmosContracts/juno/v20/x/globalfee/keeper" + "github.com/CosmosContracts/juno/v20/x/globalfee/types" ) var _ types.QueryServer = &GrpcQuerier{} diff --git a/x/globalfee/querier_test.go b/x/globalfee/querier_test.go index 5f8116d9b..3cdb3cc05 100644 --- a/x/globalfee/querier_test.go +++ b/x/globalfee/querier_test.go @@ -8,8 +8,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - globalfeekeeper "github.com/CosmosContracts/juno/v19/x/globalfee/keeper" - "github.com/CosmosContracts/juno/v19/x/globalfee/types" + globalfeekeeper "github.com/CosmosContracts/juno/v20/x/globalfee/keeper" + "github.com/CosmosContracts/juno/v20/x/globalfee/types" ) func TestQueryMinimumGasPrices(t *testing.T) { diff --git a/x/mint/abci.go b/x/mint/abci.go index 5d5c5de55..8cafc5748 100644 --- a/x/mint/abci.go +++ b/x/mint/abci.go @@ -6,8 +6,8 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/mint/keeper" - "github.com/CosmosContracts/juno/v19/x/mint/types" + "github.com/CosmosContracts/juno/v20/x/mint/keeper" + "github.com/CosmosContracts/juno/v20/x/mint/types" ) // BeginBlocker mints new tokens for the previous block. diff --git a/x/mint/client/cli/query.go b/x/mint/client/cli/query.go index 4b8040188..2c14aefe3 100644 --- a/x/mint/client/cli/query.go +++ b/x/mint/client/cli/query.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" - "github.com/CosmosContracts/juno/v19/x/mint/types" + "github.com/CosmosContracts/juno/v20/x/mint/types" ) // GetQueryCmd returns the cli query commands for the minting module. diff --git a/x/mint/client/testutil/suite.go b/x/mint/client/testutil/suite.go index 1ddf5fe30..c801abb97 100644 --- a/x/mint/client/testutil/suite.go +++ b/x/mint/client/testutil/suite.go @@ -13,8 +13,8 @@ import ( "github.com/cosmos/cosmos-sdk/testutil/network" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/mint/client/cli" - minttypes "github.com/CosmosContracts/juno/v19/x/mint/types" + "github.com/CosmosContracts/juno/v20/x/mint/client/cli" + minttypes "github.com/CosmosContracts/juno/v20/x/mint/types" ) type IntegrationTestSuite struct { diff --git a/x/mint/genesis.go b/x/mint/genesis.go index 6d0972aca..38b1d9971 100644 --- a/x/mint/genesis.go +++ b/x/mint/genesis.go @@ -3,8 +3,8 @@ package mint import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/mint/keeper" - "github.com/CosmosContracts/juno/v19/x/mint/types" + "github.com/CosmosContracts/juno/v20/x/mint/keeper" + "github.com/CosmosContracts/juno/v20/x/mint/types" ) // InitGenesis new mint genesis diff --git a/x/mint/keeper/grpc_query.go b/x/mint/keeper/grpc_query.go index 320d13e42..880cb17ab 100644 --- a/x/mint/keeper/grpc_query.go +++ b/x/mint/keeper/grpc_query.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/mint/types" + "github.com/CosmosContracts/juno/v20/x/mint/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/mint/keeper/grpc_query_test.go b/x/mint/keeper/grpc_query_test.go index b382786af..c6753f1f3 100644 --- a/x/mint/keeper/grpc_query_test.go +++ b/x/mint/keeper/grpc_query_test.go @@ -11,8 +11,8 @@ import ( "github.com/cosmos/cosmos-sdk/baseapp" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/app" - "github.com/CosmosContracts/juno/v19/x/mint/types" + "github.com/CosmosContracts/juno/v20/app" + "github.com/CosmosContracts/juno/v20/x/mint/types" ) type MintTestSuite struct { diff --git a/x/mint/keeper/keeper.go b/x/mint/keeper/keeper.go index 3562d92d6..52f67ad4f 100644 --- a/x/mint/keeper/keeper.go +++ b/x/mint/keeper/keeper.go @@ -11,7 +11,7 @@ import ( storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/mint/types" + "github.com/CosmosContracts/juno/v20/x/mint/types" ) // Keeper of the mint store diff --git a/x/mint/keeper/migrator.go b/x/mint/keeper/migrator.go index e96ee9d7f..9436184a5 100644 --- a/x/mint/keeper/migrator.go +++ b/x/mint/keeper/migrator.go @@ -3,8 +3,8 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - v2 "github.com/CosmosContracts/juno/v19/x/mint/migrations/v2" - v3 "github.com/CosmosContracts/juno/v19/x/mint/migrations/v3" + v2 "github.com/CosmosContracts/juno/v20/x/mint/migrations/v2" + v3 "github.com/CosmosContracts/juno/v20/x/mint/migrations/v3" ) // Migrator is a struct for handling in-place state migrations. diff --git a/x/mint/keeper/msg_server.go b/x/mint/keeper/msg_server.go index 8cdca623a..53069d680 100644 --- a/x/mint/keeper/msg_server.go +++ b/x/mint/keeper/msg_server.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/CosmosContracts/juno/v19/x/mint/types" + "github.com/CosmosContracts/juno/v20/x/mint/types" ) var _ types.MsgServer = msgServer{} diff --git a/x/mint/keeper/querier.go b/x/mint/keeper/querier.go index fef20eb1d..eb1978899 100644 --- a/x/mint/keeper/querier.go +++ b/x/mint/keeper/querier.go @@ -6,7 +6,7 @@ package keeper // import ( // abci "github.com/cometbft/cometbft/abci/types" -// "github.com/CosmosContracts/juno/v19/x/mint/types" +// "github.com/CosmosContracts/juno/v20/x/mint/types" // "github.com/cosmos/cosmos-sdk/codec" // sdk "github.com/cosmos/cosmos-sdk/types" // sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" diff --git a/x/mint/keeper/querier_test.go b/x/mint/keeper/querier_test.go index 8d1fb4ed3..4475c9cff 100644 --- a/x/mint/keeper/querier_test.go +++ b/x/mint/keeper/querier_test.go @@ -7,8 +7,8 @@ package keeper_test // "github.com/stretchr/testify/require" -// keep "github.com/CosmosContracts/juno/v19/x/mint/keeper" -// "github.com/CosmosContracts/juno/v19/x/mint/types" +// keep "github.com/CosmosContracts/juno/v20/x/mint/keeper" +// "github.com/CosmosContracts/juno/v20/x/mint/types" // sdk "github.com/cosmos/cosmos-sdk/types" // abci "github.com/cometbft/cometbft/abci/types" diff --git a/x/mint/migrations/v2/migrate.go b/x/mint/migrations/v2/migrate.go index cafe5b0dd..fd9eb51c8 100644 --- a/x/mint/migrations/v2/migrate.go +++ b/x/mint/migrations/v2/migrate.go @@ -4,7 +4,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/mint/types" + "github.com/CosmosContracts/juno/v20/x/mint/types" ) const ( diff --git a/x/mint/migrations/v3/migrate.go b/x/mint/migrations/v3/migrate.go index 88b5beb7c..ae113cf74 100644 --- a/x/mint/migrations/v3/migrate.go +++ b/x/mint/migrations/v3/migrate.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/mint/types" + "github.com/CosmosContracts/juno/v20/x/mint/types" ) const ( diff --git a/x/mint/migrations/v3/migrator_test.go b/x/mint/migrations/v3/migrator_test.go index 13b2ba9d6..9dca30bc5 100644 --- a/x/mint/migrations/v3/migrator_test.go +++ b/x/mint/migrations/v3/migrator_test.go @@ -9,10 +9,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" - "github.com/CosmosContracts/juno/v19/x/mint" - "github.com/CosmosContracts/juno/v19/x/mint/exported" - v3 "github.com/CosmosContracts/juno/v19/x/mint/migrations/v3" - "github.com/CosmosContracts/juno/v19/x/mint/types" + "github.com/CosmosContracts/juno/v20/x/mint" + "github.com/CosmosContracts/juno/v20/x/mint/exported" + v3 "github.com/CosmosContracts/juno/v20/x/mint/migrations/v3" + "github.com/CosmosContracts/juno/v20/x/mint/types" ) type mockSubspace struct { diff --git a/x/mint/module.go b/x/mint/module.go index e70bcf154..be5912289 100644 --- a/x/mint/module.go +++ b/x/mint/module.go @@ -17,10 +17,10 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/CosmosContracts/juno/v19/x/mint/client/cli" - "github.com/CosmosContracts/juno/v19/x/mint/keeper" - "github.com/CosmosContracts/juno/v19/x/mint/simulation" - "github.com/CosmosContracts/juno/v19/x/mint/types" + "github.com/CosmosContracts/juno/v20/x/mint/client/cli" + "github.com/CosmosContracts/juno/v20/x/mint/keeper" + "github.com/CosmosContracts/juno/v20/x/mint/simulation" + "github.com/CosmosContracts/juno/v20/x/mint/types" ) var ( diff --git a/x/mint/module_test.go b/x/mint/module_test.go index 876ce1779..83ae7c1ba 100644 --- a/x/mint/module_test.go +++ b/x/mint/module_test.go @@ -12,7 +12,7 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" "github.com/cosmos/cosmos-sdk/x/nft/testutil" - "github.com/CosmosContracts/juno/v19/x/mint/types" + "github.com/CosmosContracts/juno/v20/x/mint/types" ) func TestItCreatesModuleAccountOnInitBlock(t *testing.T) { diff --git a/x/mint/simulation/decoder.go b/x/mint/simulation/decoder.go index 9184ac7e2..1bf102dfb 100644 --- a/x/mint/simulation/decoder.go +++ b/x/mint/simulation/decoder.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec" "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/CosmosContracts/juno/v19/x/mint/types" + "github.com/CosmosContracts/juno/v20/x/mint/types" ) // NewDecodeStore returns a decoder function closure that unmarshals the KVPair's diff --git a/x/mint/simulation/decoder_test.go b/x/mint/simulation/decoder_test.go index c94ceaf06..3f3ae909e 100644 --- a/x/mint/simulation/decoder_test.go +++ b/x/mint/simulation/decoder_test.go @@ -9,9 +9,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/CosmosContracts/juno/v19/app" - "github.com/CosmosContracts/juno/v19/x/mint/simulation" - "github.com/CosmosContracts/juno/v19/x/mint/types" + "github.com/CosmosContracts/juno/v20/app" + "github.com/CosmosContracts/juno/v20/x/mint/simulation" + "github.com/CosmosContracts/juno/v20/x/mint/types" ) func TestDecodeStore(t *testing.T) { diff --git a/x/mint/simulation/genesis.go b/x/mint/simulation/genesis.go index 53b5d65f2..9f0f1d3c1 100644 --- a/x/mint/simulation/genesis.go +++ b/x/mint/simulation/genesis.go @@ -10,7 +10,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/CosmosContracts/juno/v19/x/mint/types" + "github.com/CosmosContracts/juno/v20/x/mint/types" ) // Simulation parameter constants diff --git a/x/mint/simulation/genesis_test.go b/x/mint/simulation/genesis_test.go index d50318784..838acb330 100644 --- a/x/mint/simulation/genesis_test.go +++ b/x/mint/simulation/genesis_test.go @@ -15,8 +15,8 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/CosmosContracts/juno/v19/x/mint/simulation" - "github.com/CosmosContracts/juno/v19/x/mint/types" + "github.com/CosmosContracts/juno/v20/x/mint/simulation" + "github.com/CosmosContracts/juno/v20/x/mint/types" ) // TestRandomizedGenState tests the normal scenario of applying RandomizedGenState. diff --git a/x/tokenfactory/bindings/custom_msg_test.go b/x/tokenfactory/bindings/custom_msg_test.go index 2dc03c46e..28570952c 100644 --- a/x/tokenfactory/bindings/custom_msg_test.go +++ b/x/tokenfactory/bindings/custom_msg_test.go @@ -11,9 +11,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/app" - bindings "github.com/CosmosContracts/juno/v19/x/tokenfactory/bindings/types" - "github.com/CosmosContracts/juno/v19/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v20/app" + bindings "github.com/CosmosContracts/juno/v20/x/tokenfactory/bindings/types" + "github.com/CosmosContracts/juno/v20/x/tokenfactory/types" ) func TestCreateDenomMsg(t *testing.T) { diff --git a/x/tokenfactory/bindings/custom_query_test.go b/x/tokenfactory/bindings/custom_query_test.go index ae8a226bf..d017472f9 100644 --- a/x/tokenfactory/bindings/custom_query_test.go +++ b/x/tokenfactory/bindings/custom_query_test.go @@ -10,8 +10,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/app" - bindings "github.com/CosmosContracts/juno/v19/x/tokenfactory/bindings/types" + "github.com/CosmosContracts/juno/v20/app" + bindings "github.com/CosmosContracts/juno/v20/x/tokenfactory/bindings/types" ) func TestQueryFullDenom(t *testing.T) { diff --git a/x/tokenfactory/bindings/helpers_test.go b/x/tokenfactory/bindings/helpers_test.go index 9597beb30..c3a5b3d53 100644 --- a/x/tokenfactory/bindings/helpers_test.go +++ b/x/tokenfactory/bindings/helpers_test.go @@ -15,7 +15,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" banktestutil "github.com/cosmos/cosmos-sdk/x/bank/testutil" - "github.com/CosmosContracts/juno/v19/app" + "github.com/CosmosContracts/juno/v20/app" ) func CreateTestInput(t *testing.T) (*app.App, sdk.Context) { diff --git a/x/tokenfactory/bindings/message_plugin.go b/x/tokenfactory/bindings/message_plugin.go index 2a8d86daf..6b932f998 100644 --- a/x/tokenfactory/bindings/message_plugin.go +++ b/x/tokenfactory/bindings/message_plugin.go @@ -12,9 +12,9 @@ import ( bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - bindingstypes "github.com/CosmosContracts/juno/v19/x/tokenfactory/bindings/types" - tokenfactorykeeper "github.com/CosmosContracts/juno/v19/x/tokenfactory/keeper" - tokenfactorytypes "github.com/CosmosContracts/juno/v19/x/tokenfactory/types" + bindingstypes "github.com/CosmosContracts/juno/v20/x/tokenfactory/bindings/types" + tokenfactorykeeper "github.com/CosmosContracts/juno/v20/x/tokenfactory/keeper" + tokenfactorytypes "github.com/CosmosContracts/juno/v20/x/tokenfactory/types" ) // CustomMessageDecorator returns decorator for custom CosmWasm bindings messages diff --git a/x/tokenfactory/bindings/queries.go b/x/tokenfactory/bindings/queries.go index db5db8072..205ff80b8 100644 --- a/x/tokenfactory/bindings/queries.go +++ b/x/tokenfactory/bindings/queries.go @@ -6,8 +6,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" - bindingstypes "github.com/CosmosContracts/juno/v19/x/tokenfactory/bindings/types" - tokenfactorykeeper "github.com/CosmosContracts/juno/v19/x/tokenfactory/keeper" + bindingstypes "github.com/CosmosContracts/juno/v20/x/tokenfactory/bindings/types" + tokenfactorykeeper "github.com/CosmosContracts/juno/v20/x/tokenfactory/keeper" ) type QueryPlugin struct { diff --git a/x/tokenfactory/bindings/query_plugin.go b/x/tokenfactory/bindings/query_plugin.go index 589055dab..884650ae1 100644 --- a/x/tokenfactory/bindings/query_plugin.go +++ b/x/tokenfactory/bindings/query_plugin.go @@ -10,7 +10,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - bindingstypes "github.com/CosmosContracts/juno/v19/x/tokenfactory/bindings/types" + bindingstypes "github.com/CosmosContracts/juno/v20/x/tokenfactory/bindings/types" ) // CustomQuerier dispatches custom CosmWasm bindings queries. diff --git a/x/tokenfactory/bindings/validate_msg_test.go b/x/tokenfactory/bindings/validate_msg_test.go index f0d3755de..ef710982e 100644 --- a/x/tokenfactory/bindings/validate_msg_test.go +++ b/x/tokenfactory/bindings/validate_msg_test.go @@ -8,9 +8,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - wasmbinding "github.com/CosmosContracts/juno/v19/x/tokenfactory/bindings" - bindings "github.com/CosmosContracts/juno/v19/x/tokenfactory/bindings/types" - "github.com/CosmosContracts/juno/v19/x/tokenfactory/types" + wasmbinding "github.com/CosmosContracts/juno/v20/x/tokenfactory/bindings" + bindings "github.com/CosmosContracts/juno/v20/x/tokenfactory/bindings/types" + "github.com/CosmosContracts/juno/v20/x/tokenfactory/types" ) func TestCreateDenom(t *testing.T) { diff --git a/x/tokenfactory/bindings/validate_queries_test.go b/x/tokenfactory/bindings/validate_queries_test.go index ad71988d8..466ffa1f1 100644 --- a/x/tokenfactory/bindings/validate_queries_test.go +++ b/x/tokenfactory/bindings/validate_queries_test.go @@ -9,7 +9,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - wasmbinding "github.com/CosmosContracts/juno/v19/x/tokenfactory/bindings" + wasmbinding "github.com/CosmosContracts/juno/v20/x/tokenfactory/bindings" ) func TestFullDenom(t *testing.T) { diff --git a/x/tokenfactory/bindings/wasm.go b/x/tokenfactory/bindings/wasm.go index 671d531b5..a32a56145 100644 --- a/x/tokenfactory/bindings/wasm.go +++ b/x/tokenfactory/bindings/wasm.go @@ -5,7 +5,7 @@ import ( bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" - tokenfactorykeeper "github.com/CosmosContracts/juno/v19/x/tokenfactory/keeper" + tokenfactorykeeper "github.com/CosmosContracts/juno/v20/x/tokenfactory/keeper" ) func RegisterCustomPlugins( diff --git a/x/tokenfactory/client/cli/query.go b/x/tokenfactory/client/cli/query.go index 1729a83a0..22faab57c 100644 --- a/x/tokenfactory/client/cli/query.go +++ b/x/tokenfactory/client/cli/query.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" - "github.com/CosmosContracts/juno/v19/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v20/x/tokenfactory/types" ) // GetQueryCmd returns the cli query commands for this module diff --git a/x/tokenfactory/client/cli/tx.go b/x/tokenfactory/client/cli/tx.go index 2b9970370..a1003925f 100644 --- a/x/tokenfactory/client/cli/tx.go +++ b/x/tokenfactory/client/cli/tx.go @@ -13,7 +13,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/CosmosContracts/juno/v19/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v20/x/tokenfactory/types" ) // GetTxCmd returns the transaction commands for this module diff --git a/x/tokenfactory/keeper/admins.go b/x/tokenfactory/keeper/admins.go index 7afff6881..ac7de5c21 100644 --- a/x/tokenfactory/keeper/admins.go +++ b/x/tokenfactory/keeper/admins.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v20/x/tokenfactory/types" ) // GetAuthorityMetadata returns the authority metadata for a specific denom diff --git a/x/tokenfactory/keeper/admins_test.go b/x/tokenfactory/keeper/admins_test.go index 507b8f5b1..0e9b244d4 100644 --- a/x/tokenfactory/keeper/admins_test.go +++ b/x/tokenfactory/keeper/admins_test.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/CosmosContracts/juno/v19/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v20/x/tokenfactory/types" ) func (suite *KeeperTestSuite) TestAdminMsgs() { diff --git a/x/tokenfactory/keeper/bankactions.go b/x/tokenfactory/keeper/bankactions.go index 3256ce790..a2964d997 100644 --- a/x/tokenfactory/keeper/bankactions.go +++ b/x/tokenfactory/keeper/bankactions.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v20/x/tokenfactory/types" ) func (k Keeper) mintTo(ctx sdk.Context, amount sdk.Coin, mintTo string) error { diff --git a/x/tokenfactory/keeper/createdenom.go b/x/tokenfactory/keeper/createdenom.go index 9c3002b87..fb8f4f752 100644 --- a/x/tokenfactory/keeper/createdenom.go +++ b/x/tokenfactory/keeper/createdenom.go @@ -4,7 +4,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/CosmosContracts/juno/v19/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v20/x/tokenfactory/types" ) // ConvertToBaseToken converts a fee amount in a whitelisted fee token to the base fee token amount diff --git a/x/tokenfactory/keeper/createdenom_test.go b/x/tokenfactory/keeper/createdenom_test.go index e8c5250b5..c96d4904e 100644 --- a/x/tokenfactory/keeper/createdenom_test.go +++ b/x/tokenfactory/keeper/createdenom_test.go @@ -6,8 +6,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/CosmosContracts/juno/v19/app/apptesting" - "github.com/CosmosContracts/juno/v19/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v20/app/apptesting" + "github.com/CosmosContracts/juno/v20/x/tokenfactory/types" ) func (suite *KeeperTestSuite) TestMsgCreateDenom() { diff --git a/x/tokenfactory/keeper/genesis.go b/x/tokenfactory/keeper/genesis.go index 6279fba97..a53bb0beb 100644 --- a/x/tokenfactory/keeper/genesis.go +++ b/x/tokenfactory/keeper/genesis.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v20/x/tokenfactory/types" ) // InitGenesis initializes the tokenfactory module's state from a provided genesis diff --git a/x/tokenfactory/keeper/genesis_test.go b/x/tokenfactory/keeper/genesis_test.go index 74934b27a..2fc70fe50 100644 --- a/x/tokenfactory/keeper/genesis_test.go +++ b/x/tokenfactory/keeper/genesis_test.go @@ -4,7 +4,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/CosmosContracts/juno/v19/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v20/x/tokenfactory/types" ) func (suite *KeeperTestSuite) TestGenesis() { diff --git a/x/tokenfactory/keeper/grpc_query.go b/x/tokenfactory/keeper/grpc_query.go index 417b21f65..7c0fc1f22 100644 --- a/x/tokenfactory/keeper/grpc_query.go +++ b/x/tokenfactory/keeper/grpc_query.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v20/x/tokenfactory/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/tokenfactory/keeper/keeper.go b/x/tokenfactory/keeper/keeper.go index 4963002e8..b56929c3c 100644 --- a/x/tokenfactory/keeper/keeper.go +++ b/x/tokenfactory/keeper/keeper.go @@ -11,7 +11,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/CosmosContracts/juno/v19/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v20/x/tokenfactory/types" ) type ( diff --git a/x/tokenfactory/keeper/keeper_test.go b/x/tokenfactory/keeper/keeper_test.go index 8aab8193a..683a8a8be 100644 --- a/x/tokenfactory/keeper/keeper_test.go +++ b/x/tokenfactory/keeper/keeper_test.go @@ -10,9 +10,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/CosmosContracts/juno/v19/app/apptesting" - "github.com/CosmosContracts/juno/v19/x/tokenfactory/keeper" - "github.com/CosmosContracts/juno/v19/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v20/app/apptesting" + "github.com/CosmosContracts/juno/v20/x/tokenfactory/keeper" + "github.com/CosmosContracts/juno/v20/x/tokenfactory/types" ) type KeeperTestSuite struct { diff --git a/x/tokenfactory/keeper/migrator.go b/x/tokenfactory/keeper/migrator.go index c3a0cb663..42cc4d583 100644 --- a/x/tokenfactory/keeper/migrator.go +++ b/x/tokenfactory/keeper/migrator.go @@ -6,8 +6,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/CosmosContracts/juno/v19/x/tokenfactory/exported" - v2 "github.com/CosmosContracts/juno/v19/x/tokenfactory/migrations/v2" + "github.com/CosmosContracts/juno/v20/x/tokenfactory/exported" + v2 "github.com/CosmosContracts/juno/v20/x/tokenfactory/migrations/v2" ) // Migrator is a struct for handling in-place state migrations. diff --git a/x/tokenfactory/keeper/msg_server.go b/x/tokenfactory/keeper/msg_server.go index 9a2c36642..eb19b3ebf 100644 --- a/x/tokenfactory/keeper/msg_server.go +++ b/x/tokenfactory/keeper/msg_server.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/CosmosContracts/juno/v19/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v20/x/tokenfactory/types" ) type msgServer struct { diff --git a/x/tokenfactory/keeper/msg_server_test.go b/x/tokenfactory/keeper/msg_server_test.go index cbe754890..886a01ed9 100644 --- a/x/tokenfactory/keeper/msg_server_test.go +++ b/x/tokenfactory/keeper/msg_server_test.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/CosmosContracts/juno/v19/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v20/x/tokenfactory/types" ) // TestMintDenomMsg tests TypeMsgMint message is emitted on a successful mint diff --git a/x/tokenfactory/keeper/params.go b/x/tokenfactory/keeper/params.go index 640a99ec4..d698a3821 100644 --- a/x/tokenfactory/keeper/params.go +++ b/x/tokenfactory/keeper/params.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v20/x/tokenfactory/types" ) // GetParams returns the total set params. diff --git a/x/tokenfactory/migrations/v2/migrate.go b/x/tokenfactory/migrations/v2/migrate.go index 6b2c7bd80..2a9899a69 100644 --- a/x/tokenfactory/migrations/v2/migrate.go +++ b/x/tokenfactory/migrations/v2/migrate.go @@ -4,8 +4,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v19/x/tokenfactory/exported" - "github.com/CosmosContracts/juno/v19/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v20/x/tokenfactory/exported" + "github.com/CosmosContracts/juno/v20/x/tokenfactory/types" ) const ModuleName = "tokenfactory" diff --git a/x/tokenfactory/migrations/v2/migrate_test.go b/x/tokenfactory/migrations/v2/migrate_test.go index c9c7e61cb..693b0e68d 100644 --- a/x/tokenfactory/migrations/v2/migrate_test.go +++ b/x/tokenfactory/migrations/v2/migrate_test.go @@ -9,10 +9,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" - "github.com/CosmosContracts/juno/v19/x/tokenfactory" - "github.com/CosmosContracts/juno/v19/x/tokenfactory/exported" - v2 "github.com/CosmosContracts/juno/v19/x/tokenfactory/migrations/v2" - "github.com/CosmosContracts/juno/v19/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v20/x/tokenfactory" + "github.com/CosmosContracts/juno/v20/x/tokenfactory/exported" + v2 "github.com/CosmosContracts/juno/v20/x/tokenfactory/migrations/v2" + "github.com/CosmosContracts/juno/v20/x/tokenfactory/types" ) type mockSubspace struct { diff --git a/x/tokenfactory/module.go b/x/tokenfactory/module.go index 6dd571b0f..a6d6343e2 100644 --- a/x/tokenfactory/module.go +++ b/x/tokenfactory/module.go @@ -26,11 +26,11 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/CosmosContracts/juno/v19/x/tokenfactory/client/cli" - "github.com/CosmosContracts/juno/v19/x/tokenfactory/exported" - "github.com/CosmosContracts/juno/v19/x/tokenfactory/keeper" - simulation "github.com/CosmosContracts/juno/v19/x/tokenfactory/simulation" - "github.com/CosmosContracts/juno/v19/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v20/x/tokenfactory/client/cli" + "github.com/CosmosContracts/juno/v20/x/tokenfactory/exported" + "github.com/CosmosContracts/juno/v20/x/tokenfactory/keeper" + simulation "github.com/CosmosContracts/juno/v20/x/tokenfactory/simulation" + "github.com/CosmosContracts/juno/v20/x/tokenfactory/types" ) var ( diff --git a/x/tokenfactory/simulation/genesis.go b/x/tokenfactory/simulation/genesis.go index b9c746b34..da64ed68f 100644 --- a/x/tokenfactory/simulation/genesis.go +++ b/x/tokenfactory/simulation/genesis.go @@ -6,8 +6,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - appparams "github.com/CosmosContracts/juno/v19/app/params" - "github.com/CosmosContracts/juno/v19/x/tokenfactory/types" + appparams "github.com/CosmosContracts/juno/v20/app/params" + "github.com/CosmosContracts/juno/v20/x/tokenfactory/types" ) func RandDenomCreationFeeParam(r *rand.Rand) sdk.Coins { diff --git a/x/tokenfactory/simulation/operations.go b/x/tokenfactory/simulation/operations.go index 9b3bef852..2de886931 100644 --- a/x/tokenfactory/simulation/operations.go +++ b/x/tokenfactory/simulation/operations.go @@ -10,8 +10,8 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" "github.com/cosmos/cosmos-sdk/x/simulation" - appparams "github.com/CosmosContracts/juno/v19/app/params" - "github.com/CosmosContracts/juno/v19/x/tokenfactory/types" + appparams "github.com/CosmosContracts/juno/v20/app/params" + "github.com/CosmosContracts/juno/v20/x/tokenfactory/types" ) // Simulation operation weights constants diff --git a/x/tokenfactory/types/denoms_test.go b/x/tokenfactory/types/denoms_test.go index e9268d9a3..0c7c107a7 100644 --- a/x/tokenfactory/types/denoms_test.go +++ b/x/tokenfactory/types/denoms_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/CosmosContracts/juno/v19/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v20/x/tokenfactory/types" ) func TestDeconstructDenom(t *testing.T) { diff --git a/x/tokenfactory/types/genesis_test.go b/x/tokenfactory/types/genesis_test.go index 120e9fd60..e8b326f6c 100644 --- a/x/tokenfactory/types/genesis_test.go +++ b/x/tokenfactory/types/genesis_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/CosmosContracts/juno/v19/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v20/x/tokenfactory/types" ) func TestGenesisState_Validate(t *testing.T) { diff --git a/x/tokenfactory/types/msgs_test.go b/x/tokenfactory/types/msgs_test.go index 494ae0dad..c074f12d3 100644 --- a/x/tokenfactory/types/msgs_test.go +++ b/x/tokenfactory/types/msgs_test.go @@ -11,8 +11,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/CosmosContracts/juno/v19/x/tokenfactory/testhelpers" - "github.com/CosmosContracts/juno/v19/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v20/x/tokenfactory/testhelpers" + "github.com/CosmosContracts/juno/v20/x/tokenfactory/types" ) // Test authz serialize and de-serializes for tokenfactory msg.