diff --git a/.golangci.yml b/.golangci.yml index 35ef949a4..5635d1c9a 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -20,7 +20,6 @@ linters: - ineffassign - misspell - nakedret - - exportloopref - staticcheck - stylecheck - typecheck @@ -45,6 +44,10 @@ linters-settings: gosec: excludes: - G404 + - G115 + govet: + disable: + - printf issues: max-issues-per-linter: 0 diff --git a/app/ante.go b/app/ante.go index 12ec9b2d3..fd44afb98 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/v23/app/decorators" - feepayante "github.com/CosmosContracts/juno/v23/x/feepay/ante" - feepaykeeper "github.com/CosmosContracts/juno/v23/x/feepay/keeper" - feeshareante "github.com/CosmosContracts/juno/v23/x/feeshare/ante" - feesharekeeper "github.com/CosmosContracts/juno/v23/x/feeshare/keeper" - globalfeeante "github.com/CosmosContracts/juno/v23/x/globalfee/ante" - globalfeekeeper "github.com/CosmosContracts/juno/v23/x/globalfee/keeper" + decorators "github.com/CosmosContracts/juno/v24/app/decorators" + feepayante "github.com/CosmosContracts/juno/v24/x/feepay/ante" + feepaykeeper "github.com/CosmosContracts/juno/v24/x/feepay/keeper" + feeshareante "github.com/CosmosContracts/juno/v24/x/feeshare/ante" + feesharekeeper "github.com/CosmosContracts/juno/v24/x/feeshare/keeper" + globalfeeante "github.com/CosmosContracts/juno/v24/x/globalfee/ante" + globalfeekeeper "github.com/CosmosContracts/juno/v24/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 149c2f24b..fa2d97910 100644 --- a/app/app.go +++ b/app/app.go @@ -64,30 +64,31 @@ import ( upgradeclient "github.com/cosmos/cosmos-sdk/x/upgrade/client" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - "github.com/CosmosContracts/juno/v23/app/keepers" - "github.com/CosmosContracts/juno/v23/app/openapiconsole" - upgrades "github.com/CosmosContracts/juno/v23/app/upgrades" - testnetV18alpha2 "github.com/CosmosContracts/juno/v23/app/upgrades/testnet/v18.0.0-alpha.2" - testnetV18alpha3 "github.com/CosmosContracts/juno/v23/app/upgrades/testnet/v18.0.0-alpha.3" - testnetV18alpha4 "github.com/CosmosContracts/juno/v23/app/upgrades/testnet/v18.0.0-alpha.4" - testnetV19alpha3 "github.com/CosmosContracts/juno/v23/app/upgrades/testnet/v19.0.0-alpha.3" - testnetV21alpha1 "github.com/CosmosContracts/juno/v23/app/upgrades/testnet/v21.0.0-alpha.1" - testnetV22alpha1 "github.com/CosmosContracts/juno/v23/app/upgrades/testnet/v22.0.0-alpha.1" - testnetV23alpha1 "github.com/CosmosContracts/juno/v23/app/upgrades/testnet/v23.0.0-alpha.1" - v10 "github.com/CosmosContracts/juno/v23/app/upgrades/v10" - v11 "github.com/CosmosContracts/juno/v23/app/upgrades/v11" - v12 "github.com/CosmosContracts/juno/v23/app/upgrades/v12" - v13 "github.com/CosmosContracts/juno/v23/app/upgrades/v13" - v14 "github.com/CosmosContracts/juno/v23/app/upgrades/v14" - v15 "github.com/CosmosContracts/juno/v23/app/upgrades/v15" - v16 "github.com/CosmosContracts/juno/v23/app/upgrades/v16" - v17 "github.com/CosmosContracts/juno/v23/app/upgrades/v17" - v18 "github.com/CosmosContracts/juno/v23/app/upgrades/v18" - v19 "github.com/CosmosContracts/juno/v23/app/upgrades/v19" - v21 "github.com/CosmosContracts/juno/v23/app/upgrades/v21" - v22 "github.com/CosmosContracts/juno/v23/app/upgrades/v22" - v23 "github.com/CosmosContracts/juno/v23/app/upgrades/v23" - "github.com/CosmosContracts/juno/v23/docs" + "github.com/CosmosContracts/juno/v24/app/keepers" + "github.com/CosmosContracts/juno/v24/app/openapiconsole" + upgrades "github.com/CosmosContracts/juno/v24/app/upgrades" + testnetV18alpha2 "github.com/CosmosContracts/juno/v24/app/upgrades/testnet/v18.0.0-alpha.2" + testnetV18alpha3 "github.com/CosmosContracts/juno/v24/app/upgrades/testnet/v18.0.0-alpha.3" + testnetV18alpha4 "github.com/CosmosContracts/juno/v24/app/upgrades/testnet/v18.0.0-alpha.4" + testnetV19alpha3 "github.com/CosmosContracts/juno/v24/app/upgrades/testnet/v19.0.0-alpha.3" + testnetV21alpha1 "github.com/CosmosContracts/juno/v24/app/upgrades/testnet/v21.0.0-alpha.1" + testnetV22alpha1 "github.com/CosmosContracts/juno/v24/app/upgrades/testnet/v22.0.0-alpha.1" + testnetV23alpha1 "github.com/CosmosContracts/juno/v24/app/upgrades/testnet/v23.0.0-alpha.1" + v10 "github.com/CosmosContracts/juno/v24/app/upgrades/v10" + v11 "github.com/CosmosContracts/juno/v24/app/upgrades/v11" + v12 "github.com/CosmosContracts/juno/v24/app/upgrades/v12" + v13 "github.com/CosmosContracts/juno/v24/app/upgrades/v13" + v14 "github.com/CosmosContracts/juno/v24/app/upgrades/v14" + v15 "github.com/CosmosContracts/juno/v24/app/upgrades/v15" + v16 "github.com/CosmosContracts/juno/v24/app/upgrades/v16" + v17 "github.com/CosmosContracts/juno/v24/app/upgrades/v17" + v18 "github.com/CosmosContracts/juno/v24/app/upgrades/v18" + v19 "github.com/CosmosContracts/juno/v24/app/upgrades/v19" + v21 "github.com/CosmosContracts/juno/v24/app/upgrades/v21" + v22 "github.com/CosmosContracts/juno/v24/app/upgrades/v22" + v23 "github.com/CosmosContracts/juno/v24/app/upgrades/v23" + v24 "github.com/CosmosContracts/juno/v24/app/upgrades/v24" + "github.com/CosmosContracts/juno/v24/docs" ) const ( @@ -131,6 +132,7 @@ var ( v21.Upgrade, v22.Upgrade, v23.Upgrade, + v24.Upgrade, } ) diff --git a/app/apptesting/test_suite.go b/app/apptesting/test_suite.go index a815e3c82..cb47520fa 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/v23/app" - appparams "github.com/CosmosContracts/juno/v23/app/params" + "github.com/CosmosContracts/juno/v24/app" + appparams "github.com/CosmosContracts/juno/v24/app/params" ) type KeeperTestHelper struct { diff --git a/app/decorators/change_rate_decorator_test.go b/app/decorators/change_rate_decorator_test.go index 3ce8e2dca..5c61a0aa8 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/v23/app" - decorators "github.com/CosmosContracts/juno/v23/app/decorators" - appparams "github.com/CosmosContracts/juno/v23/app/params" + "github.com/CosmosContracts/juno/v24/app" + decorators "github.com/CosmosContracts/juno/v24/app/decorators" + appparams "github.com/CosmosContracts/juno/v24/app/params" ) // Define an empty ante handle diff --git a/app/encoding.go b/app/encoding.go index 4889898ee..a5d7269ed 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/v23/app/params" + "github.com/CosmosContracts/juno/v24/app/params" ) // MakeEncodingConfig creates an EncodingConfig for testing diff --git a/app/keepers/keepers.go b/app/keepers/keepers.go index d2c26637d..c5d5365e3 100644 --- a/app/keepers/keepers.go +++ b/app/keepers/keepers.go @@ -89,25 +89,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/v23/x/burn" - clockkeeper "github.com/CosmosContracts/juno/v23/x/clock/keeper" - clocktypes "github.com/CosmosContracts/juno/v23/x/clock/types" - cwhookskeeper "github.com/CosmosContracts/juno/v23/x/cw-hooks/keeper" - cwhookstypes "github.com/CosmosContracts/juno/v23/x/cw-hooks/types" - dripkeeper "github.com/CosmosContracts/juno/v23/x/drip/keeper" - driptypes "github.com/CosmosContracts/juno/v23/x/drip/types" - feepaykeeper "github.com/CosmosContracts/juno/v23/x/feepay/keeper" - feepaytypes "github.com/CosmosContracts/juno/v23/x/feepay/types" - feesharekeeper "github.com/CosmosContracts/juno/v23/x/feeshare/keeper" - feesharetypes "github.com/CosmosContracts/juno/v23/x/feeshare/types" - "github.com/CosmosContracts/juno/v23/x/globalfee" - globalfeekeeper "github.com/CosmosContracts/juno/v23/x/globalfee/keeper" - globalfeetypes "github.com/CosmosContracts/juno/v23/x/globalfee/types" - mintkeeper "github.com/CosmosContracts/juno/v23/x/mint/keeper" - minttypes "github.com/CosmosContracts/juno/v23/x/mint/types" - "github.com/CosmosContracts/juno/v23/x/tokenfactory/bindings" - tokenfactorykeeper "github.com/CosmosContracts/juno/v23/x/tokenfactory/keeper" - tokenfactorytypes "github.com/CosmosContracts/juno/v23/x/tokenfactory/types" + junoburn "github.com/CosmosContracts/juno/v24/x/burn" + clockkeeper "github.com/CosmosContracts/juno/v24/x/clock/keeper" + clocktypes "github.com/CosmosContracts/juno/v24/x/clock/types" + cwhookskeeper "github.com/CosmosContracts/juno/v24/x/cw-hooks/keeper" + cwhookstypes "github.com/CosmosContracts/juno/v24/x/cw-hooks/types" + dripkeeper "github.com/CosmosContracts/juno/v24/x/drip/keeper" + driptypes "github.com/CosmosContracts/juno/v24/x/drip/types" + feepaykeeper "github.com/CosmosContracts/juno/v24/x/feepay/keeper" + feepaytypes "github.com/CosmosContracts/juno/v24/x/feepay/types" + feesharekeeper "github.com/CosmosContracts/juno/v24/x/feeshare/keeper" + feesharetypes "github.com/CosmosContracts/juno/v24/x/feeshare/types" + "github.com/CosmosContracts/juno/v24/x/globalfee" + globalfeekeeper "github.com/CosmosContracts/juno/v24/x/globalfee/keeper" + globalfeetypes "github.com/CosmosContracts/juno/v24/x/globalfee/types" + mintkeeper "github.com/CosmosContracts/juno/v24/x/mint/keeper" + minttypes "github.com/CosmosContracts/juno/v24/x/mint/types" + "github.com/CosmosContracts/juno/v24/x/tokenfactory/bindings" + tokenfactorykeeper "github.com/CosmosContracts/juno/v24/x/tokenfactory/keeper" + tokenfactorytypes "github.com/CosmosContracts/juno/v24/x/tokenfactory/types" ) var ( diff --git a/app/keepers/keys.go b/app/keepers/keys.go index 735d2458f..6bf2640b0 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/v23/x/clock/types" - cwhookstypes "github.com/CosmosContracts/juno/v23/x/cw-hooks/types" - driptypes "github.com/CosmosContracts/juno/v23/x/drip/types" - feepaytypes "github.com/CosmosContracts/juno/v23/x/feepay/types" - feesharetypes "github.com/CosmosContracts/juno/v23/x/feeshare/types" - globalfeetypes "github.com/CosmosContracts/juno/v23/x/globalfee/types" - minttypes "github.com/CosmosContracts/juno/v23/x/mint/types" - tokenfactorytypes "github.com/CosmosContracts/juno/v23/x/tokenfactory/types" + clocktypes "github.com/CosmosContracts/juno/v24/x/clock/types" + cwhookstypes "github.com/CosmosContracts/juno/v24/x/cw-hooks/types" + driptypes "github.com/CosmosContracts/juno/v24/x/drip/types" + feepaytypes "github.com/CosmosContracts/juno/v24/x/feepay/types" + feesharetypes "github.com/CosmosContracts/juno/v24/x/feeshare/types" + globalfeetypes "github.com/CosmosContracts/juno/v24/x/globalfee/types" + minttypes "github.com/CosmosContracts/juno/v24/x/mint/types" + tokenfactorytypes "github.com/CosmosContracts/juno/v24/x/tokenfactory/types" ) func (appKeepers *AppKeepers) GenerateKeys() { diff --git a/app/modules.go b/app/modules.go index 35384be2b..6a80732f6 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/v23/app/params" - "github.com/CosmosContracts/juno/v23/x/clock" - clocktypes "github.com/CosmosContracts/juno/v23/x/clock/types" - cwhooks "github.com/CosmosContracts/juno/v23/x/cw-hooks" - "github.com/CosmosContracts/juno/v23/x/drip" - driptypes "github.com/CosmosContracts/juno/v23/x/drip/types" - feepay "github.com/CosmosContracts/juno/v23/x/feepay" - feepaytypes "github.com/CosmosContracts/juno/v23/x/feepay/types" - feeshare "github.com/CosmosContracts/juno/v23/x/feeshare" - feesharetypes "github.com/CosmosContracts/juno/v23/x/feeshare/types" - "github.com/CosmosContracts/juno/v23/x/globalfee" - "github.com/CosmosContracts/juno/v23/x/mint" - minttypes "github.com/CosmosContracts/juno/v23/x/mint/types" - "github.com/CosmosContracts/juno/v23/x/tokenfactory" - tokenfactorytypes "github.com/CosmosContracts/juno/v23/x/tokenfactory/types" + encparams "github.com/CosmosContracts/juno/v24/app/params" + "github.com/CosmosContracts/juno/v24/x/clock" + clocktypes "github.com/CosmosContracts/juno/v24/x/clock/types" + cwhooks "github.com/CosmosContracts/juno/v24/x/cw-hooks" + "github.com/CosmosContracts/juno/v24/x/drip" + driptypes "github.com/CosmosContracts/juno/v24/x/drip/types" + feepay "github.com/CosmosContracts/juno/v24/x/feepay" + feepaytypes "github.com/CosmosContracts/juno/v24/x/feepay/types" + feeshare "github.com/CosmosContracts/juno/v24/x/feeshare" + feesharetypes "github.com/CosmosContracts/juno/v24/x/feeshare/types" + "github.com/CosmosContracts/juno/v24/x/globalfee" + "github.com/CosmosContracts/juno/v24/x/mint" + minttypes "github.com/CosmosContracts/juno/v24/x/mint/types" + "github.com/CosmosContracts/juno/v24/x/tokenfactory" + tokenfactorytypes "github.com/CosmosContracts/juno/v24/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 8dd11c565..622b95641 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/v23/app/helpers" - appparams "github.com/CosmosContracts/juno/v23/app/params" + apphelpers "github.com/CosmosContracts/juno/v24/app/helpers" + appparams "github.com/CosmosContracts/juno/v24/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 72836c3d3..bcdcbb61c 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/v23/app/upgrades" + "github.com/CosmosContracts/juno/v24/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 d5157c185..74b0e2388 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/v23/app/apptesting" - v18alpha2 "github.com/CosmosContracts/juno/v23/app/upgrades/testnet/v18.0.0-alpha.2" + "github.com/CosmosContracts/juno/v24/app/apptesting" + v18alpha2 "github.com/CosmosContracts/juno/v24/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 b154ee08b..a622f08bc 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/v23/app/upgrades" + "github.com/CosmosContracts/juno/v24/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 314085e6a..8162f7bb5 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/v23/app/apptesting" - v18alpha3 "github.com/CosmosContracts/juno/v23/app/upgrades/testnet/v18.0.0-alpha.3" + "github.com/CosmosContracts/juno/v24/app/apptesting" + v18alpha3 "github.com/CosmosContracts/juno/v24/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 f041407d4..e7d71b366 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/v23/app/upgrades" + "github.com/CosmosContracts/juno/v24/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 b5f80d892..f448032e5 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/v23/app/apptesting" - v1800alpha4 "github.com/CosmosContracts/juno/v23/app/upgrades/testnet/v18.0.0-alpha.4" + "github.com/CosmosContracts/juno/v24/app/apptesting" + v1800alpha4 "github.com/CosmosContracts/juno/v24/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 bab1532e5..eae2affb7 100644 --- a/app/upgrades/testnet/v19.0.0-alpha.3/constants.go +++ b/app/upgrades/testnet/v19.0.0-alpha.3/constants.go @@ -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/v23/app/keepers" - "github.com/CosmosContracts/juno/v23/app/upgrades" - clocktypes "github.com/CosmosContracts/juno/v23/x/clock/types" + "github.com/CosmosContracts/juno/v24/app/keepers" + "github.com/CosmosContracts/juno/v24/app/upgrades" + clocktypes "github.com/CosmosContracts/juno/v24/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 bb2043aa7..31a23d809 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 @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/suite" - "github.com/CosmosContracts/juno/v23/app/apptesting" - v19alpha3 "github.com/CosmosContracts/juno/v23/app/upgrades/testnet/v19.0.0-alpha.3" + "github.com/CosmosContracts/juno/v24/app/apptesting" + v19alpha3 "github.com/CosmosContracts/juno/v24/app/upgrades/testnet/v19.0.0-alpha.3" ) type UpgradeTestSuite struct { diff --git a/app/upgrades/testnet/v21.0.0-alpha.1/constants.go b/app/upgrades/testnet/v21.0.0-alpha.1/constants.go index d5b8dc596..1993003ab 100644 --- a/app/upgrades/testnet/v21.0.0-alpha.1/constants.go +++ b/app/upgrades/testnet/v21.0.0-alpha.1/constants.go @@ -8,8 +8,8 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - "github.com/CosmosContracts/juno/v23/app/keepers" - "github.com/CosmosContracts/juno/v23/app/upgrades" + "github.com/CosmosContracts/juno/v24/app/keepers" + "github.com/CosmosContracts/juno/v24/app/upgrades" ) // UpgradeName defines the on-chain upgrade name for the upgrade. diff --git a/app/upgrades/testnet/v21.0.0-alpha.1/upgrade_test.go b/app/upgrades/testnet/v21.0.0-alpha.1/upgrade_test.go index 8b668ed42..8d0ebab91 100644 --- a/app/upgrades/testnet/v21.0.0-alpha.1/upgrade_test.go +++ b/app/upgrades/testnet/v21.0.0-alpha.1/upgrade_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/suite" - "github.com/CosmosContracts/juno/v23/app/apptesting" - v19alpha3 "github.com/CosmosContracts/juno/v23/app/upgrades/testnet/v19.0.0-alpha.3" + "github.com/CosmosContracts/juno/v24/app/apptesting" + v19alpha3 "github.com/CosmosContracts/juno/v24/app/upgrades/testnet/v19.0.0-alpha.3" ) type UpgradeTestSuite struct { diff --git a/app/upgrades/testnet/v22.0.0-alpha.1/constants.go b/app/upgrades/testnet/v22.0.0-alpha.1/constants.go index 37d30106e..dcb064314 100644 --- a/app/upgrades/testnet/v22.0.0-alpha.1/constants.go +++ b/app/upgrades/testnet/v22.0.0-alpha.1/constants.go @@ -8,8 +8,8 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - "github.com/CosmosContracts/juno/v23/app/keepers" - "github.com/CosmosContracts/juno/v23/app/upgrades" + "github.com/CosmosContracts/juno/v24/app/keepers" + "github.com/CosmosContracts/juno/v24/app/upgrades" ) // UpgradeName defines the on-chain upgrade name for the upgrade. diff --git a/app/upgrades/testnet/v22.0.0-alpha.1/upgrade_test.go b/app/upgrades/testnet/v22.0.0-alpha.1/upgrade_test.go index 0fd910578..202055db3 100644 --- a/app/upgrades/testnet/v22.0.0-alpha.1/upgrade_test.go +++ b/app/upgrades/testnet/v22.0.0-alpha.1/upgrade_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/suite" - "github.com/CosmosContracts/juno/v23/app/apptesting" - v22alpha1 "github.com/CosmosContracts/juno/v23/app/upgrades/testnet/v22.0.0-alpha.1" + "github.com/CosmosContracts/juno/v24/app/apptesting" + v22alpha1 "github.com/CosmosContracts/juno/v24/app/upgrades/testnet/v22.0.0-alpha.1" ) type UpgradeTestSuite struct { diff --git a/app/upgrades/testnet/v23.0.0-alpha.1/constants.go b/app/upgrades/testnet/v23.0.0-alpha.1/constants.go index 955dac81f..852920978 100644 --- a/app/upgrades/testnet/v23.0.0-alpha.1/constants.go +++ b/app/upgrades/testnet/v23.0.0-alpha.1/constants.go @@ -10,8 +10,8 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - "github.com/CosmosContracts/juno/v23/app/keepers" - "github.com/CosmosContracts/juno/v23/app/upgrades" + "github.com/CosmosContracts/juno/v24/app/keepers" + "github.com/CosmosContracts/juno/v24/app/upgrades" ) // UpgradeName defines the on-chain upgrade name for the upgrade. diff --git a/app/upgrades/testnet/v23.0.0-alpha.1/upgrade_test.go b/app/upgrades/testnet/v23.0.0-alpha.1/upgrade_test.go index d16e773b6..8441413af 100644 --- a/app/upgrades/testnet/v23.0.0-alpha.1/upgrade_test.go +++ b/app/upgrades/testnet/v23.0.0-alpha.1/upgrade_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/suite" - "github.com/CosmosContracts/juno/v23/app/apptesting" - v23alpha1 "github.com/CosmosContracts/juno/v23/app/upgrades/testnet/v22.0.0-alpha.1" + "github.com/CosmosContracts/juno/v24/app/apptesting" + v23alpha1 "github.com/CosmosContracts/juno/v24/app/upgrades/testnet/v22.0.0-alpha.1" ) type UpgradeTestSuite struct { diff --git a/app/upgrades/types.go b/app/upgrades/types.go index efee816c3..a6142f8f5 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/v23/app/keepers" + "github.com/CosmosContracts/juno/v24/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 25d1d61d4..42e407833 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/v23/app/upgrades" + "github.com/CosmosContracts/juno/v24/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 71ec19d55..ef277eddd 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/v23/app/keepers" + "github.com/CosmosContracts/juno/v24/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 65650a24b..e6578aed7 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/v23/app/upgrades" + "github.com/CosmosContracts/juno/v24/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 5d9af0a74..3fe4382a3 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/v23/app/keepers" + "github.com/CosmosContracts/juno/v24/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 299b6c6a1..87aca7cb0 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/v23/app/upgrades" + "github.com/CosmosContracts/juno/v24/app/upgrades" ) const UpgradeName = "v12" diff --git a/app/upgrades/v12/upgrades.go b/app/upgrades/v12/upgrades.go index 51987e608..8a8dc3c7c 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/v23/app/keepers" + "github.com/CosmosContracts/juno/v24/app/keepers" ) func CreateV12UpgradeHandler( diff --git a/app/upgrades/v13/constants.go b/app/upgrades/v13/constants.go index 6c50bfb72..ca2f54731 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/v23/app/upgrades" - feesharetypes "github.com/CosmosContracts/juno/v23/x/feeshare/types" - tokenfactorytypes "github.com/CosmosContracts/juno/v23/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v24/app/upgrades" + feesharetypes "github.com/CosmosContracts/juno/v24/x/feeshare/types" + tokenfactorytypes "github.com/CosmosContracts/juno/v24/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 f7c75daaf..9027c56fc 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/v23/app/keepers" - "github.com/CosmosContracts/juno/v23/app/upgrades" + "github.com/CosmosContracts/juno/v24/app/keepers" + "github.com/CosmosContracts/juno/v24/app/upgrades" // types - feesharetypes "github.com/CosmosContracts/juno/v23/x/feeshare/types" - tokenfactorytypes "github.com/CosmosContracts/juno/v23/x/tokenfactory/types" + feesharetypes "github.com/CosmosContracts/juno/v24/x/feeshare/types" + tokenfactorytypes "github.com/CosmosContracts/juno/v24/x/tokenfactory/types" ) func CreateV13UpgradeHandler( diff --git a/app/upgrades/v14/constants.go b/app/upgrades/v14/constants.go index 269ad18a1..a9ab19700 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/v23/app/upgrades" - "github.com/CosmosContracts/juno/v23/x/globalfee" + "github.com/CosmosContracts/juno/v24/app/upgrades" + "github.com/CosmosContracts/juno/v24/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 d8ea4d67b..fa8087f6c 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/v23/app/keepers" - "github.com/CosmosContracts/juno/v23/app/upgrades" - globalfeetypes "github.com/CosmosContracts/juno/v23/x/globalfee/types" + "github.com/CosmosContracts/juno/v24/app/keepers" + "github.com/CosmosContracts/juno/v24/app/upgrades" + globalfeetypes "github.com/CosmosContracts/juno/v24/x/globalfee/types" ) func CreateV14UpgradeHandler( diff --git a/app/upgrades/v15/constants.go b/app/upgrades/v15/constants.go index 96058a5ae..b0b4d34ef 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/v23/app/upgrades" + "github.com/CosmosContracts/juno/v24/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 fcfe66004..3c5f4a912 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/v23/app/keepers" - tokenfactorytypes "github.com/CosmosContracts/juno/v23/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v24/app/keepers" + tokenfactorytypes "github.com/CosmosContracts/juno/v24/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 13cc8809b..507309b4b 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/v23/app/upgrades" - globalfeettypes "github.com/CosmosContracts/juno/v23/x/globalfee/types" + "github.com/CosmosContracts/juno/v24/app/upgrades" + globalfeettypes "github.com/CosmosContracts/juno/v24/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 fa659158c..749cc99b8 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/v23/app/keepers" - "github.com/CosmosContracts/juno/v23/app/upgrades" + "github.com/CosmosContracts/juno/v24/app/keepers" + "github.com/CosmosContracts/juno/v24/app/upgrades" // Juno modules - feesharetypes "github.com/CosmosContracts/juno/v23/x/feeshare/types" - globalfeetypes "github.com/CosmosContracts/juno/v23/x/globalfee/types" - minttypes "github.com/CosmosContracts/juno/v23/x/mint/types" - tokenfactorytypes "github.com/CosmosContracts/juno/v23/x/tokenfactory/types" + feesharetypes "github.com/CosmosContracts/juno/v24/x/feeshare/types" + globalfeetypes "github.com/CosmosContracts/juno/v24/x/globalfee/types" + minttypes "github.com/CosmosContracts/juno/v24/x/mint/types" + tokenfactorytypes "github.com/CosmosContracts/juno/v24/x/tokenfactory/types" ) func CreateV16UpgradeHandler( @@ -85,7 +85,9 @@ func CreateV16UpgradeHandler( // wasm case wasmtypes.ModuleName: - keyTable = wasmtypes.ParamKeyTable() //nolint:staticcheck + // keyTable = wasmtypes.ParamKeyTable() //nolint:staticcheck + // deprecated and old code + continue // POB case buildertypes.ModuleName: diff --git a/app/upgrades/v17/constants.go b/app/upgrades/v17/constants.go index 32c7841f0..bebab6fe4 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/v23/app/upgrades" - clocktypes "github.com/CosmosContracts/juno/v23/x/clock/types" - driptypes "github.com/CosmosContracts/juno/v23/x/drip/types" + "github.com/CosmosContracts/juno/v24/app/upgrades" + clocktypes "github.com/CosmosContracts/juno/v24/x/clock/types" + driptypes "github.com/CosmosContracts/juno/v24/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 ff2e64f3d..6cd944fb5 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/v23/app/keepers" - "github.com/CosmosContracts/juno/v23/app/upgrades" - clocktypes "github.com/CosmosContracts/juno/v23/x/clock/types" - driptypes "github.com/CosmosContracts/juno/v23/x/drip/types" + "github.com/CosmosContracts/juno/v24/app/keepers" + "github.com/CosmosContracts/juno/v24/app/upgrades" + clocktypes "github.com/CosmosContracts/juno/v24/x/clock/types" + driptypes "github.com/CosmosContracts/juno/v24/x/drip/types" ) // Verify the following with: diff --git a/app/upgrades/v18/constants.go b/app/upgrades/v18/constants.go index 85e1e22fc..9114673d6 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/v23/app/upgrades" - cwhooks "github.com/CosmosContracts/juno/v23/x/cw-hooks" - feepaytypes "github.com/CosmosContracts/juno/v23/x/feepay/types" + "github.com/CosmosContracts/juno/v24/app/upgrades" + cwhooks "github.com/CosmosContracts/juno/v24/x/cw-hooks" + feepaytypes "github.com/CosmosContracts/juno/v24/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 56f4c7c66..bd486db87 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/v23/app/apptesting" - v18 "github.com/CosmosContracts/juno/v23/app/upgrades/v18" + "github.com/CosmosContracts/juno/v24/app/apptesting" + v18 "github.com/CosmosContracts/juno/v24/app/upgrades/v18" ) type UpgradeTestSuite struct { diff --git a/app/upgrades/v18/upgrades.go b/app/upgrades/v18/upgrades.go index 4493a48fd..96fbf979c 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/v23/app/keepers" - "github.com/CosmosContracts/juno/v23/app/upgrades" - cwhookstypes "github.com/CosmosContracts/juno/v23/x/cw-hooks/types" - feepaytypes "github.com/CosmosContracts/juno/v23/x/feepay/types" + "github.com/CosmosContracts/juno/v24/app/keepers" + "github.com/CosmosContracts/juno/v24/app/upgrades" + cwhookstypes "github.com/CosmosContracts/juno/v24/x/cw-hooks/types" + feepaytypes "github.com/CosmosContracts/juno/v24/x/feepay/types" ) func CreateV18UpgradeHandler( diff --git a/app/upgrades/v19/constants.go b/app/upgrades/v19/constants.go index 2bdf627db..19325659c 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/v23/app/upgrades" + "github.com/CosmosContracts/juno/v24/app/upgrades" ) const ( diff --git a/app/upgrades/v19/mainnet_account.go b/app/upgrades/v19/mainnet_account.go index 467ee464e..9773f7288 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/v23/app/keepers" + "github.com/CosmosContracts/juno/v24/app/keepers" ) const ( diff --git a/app/upgrades/v19/upgrade_test.go b/app/upgrades/v19/upgrade_test.go index 01259d22c..c5776fbf5 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/v23/app/apptesting" - decorators "github.com/CosmosContracts/juno/v23/app/decorators" - v19 "github.com/CosmosContracts/juno/v23/app/upgrades/v19" + "github.com/CosmosContracts/juno/v24/app/apptesting" + decorators "github.com/CosmosContracts/juno/v24/app/decorators" + v19 "github.com/CosmosContracts/juno/v24/app/upgrades/v19" ) type UpgradeTestSuite struct { diff --git a/app/upgrades/v19/upgrades.go b/app/upgrades/v19/upgrades.go index 73b44e17e..8e412b76a 100644 --- a/app/upgrades/v19/upgrades.go +++ b/app/upgrades/v19/upgrades.go @@ -13,10 +13,10 @@ 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/v23/app/decorators" - "github.com/CosmosContracts/juno/v23/app/keepers" - "github.com/CosmosContracts/juno/v23/app/upgrades" - clocktypes "github.com/CosmosContracts/juno/v23/x/clock/types" + decorators "github.com/CosmosContracts/juno/v24/app/decorators" + "github.com/CosmosContracts/juno/v24/app/keepers" + "github.com/CosmosContracts/juno/v24/app/upgrades" + clocktypes "github.com/CosmosContracts/juno/v24/x/clock/types" ) func CreateV19UpgradeHandler( diff --git a/app/upgrades/v21/constants.go b/app/upgrades/v21/constants.go index cd7999d77..85029c9a7 100644 --- a/app/upgrades/v21/constants.go +++ b/app/upgrades/v21/constants.go @@ -3,7 +3,7 @@ package v21 import ( store "github.com/cosmos/cosmos-sdk/store/types" - "github.com/CosmosContracts/juno/v23/app/upgrades" + "github.com/CosmosContracts/juno/v24/app/upgrades" ) // UpgradeName defines the on-chain upgrade name for the upgrade. diff --git a/app/upgrades/v21/upgrade_test.go b/app/upgrades/v21/upgrade_test.go index 8db92f3a3..9368e1429 100644 --- a/app/upgrades/v21/upgrade_test.go +++ b/app/upgrades/v21/upgrade_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/suite" - "github.com/CosmosContracts/juno/v23/app/apptesting" - v21 "github.com/CosmosContracts/juno/v23/app/upgrades/v21" + "github.com/CosmosContracts/juno/v24/app/apptesting" + v21 "github.com/CosmosContracts/juno/v24/app/upgrades/v21" ) type UpgradeTestSuite struct { diff --git a/app/upgrades/v21/upgrades.go b/app/upgrades/v21/upgrades.go index a25d221c0..bb93c9be1 100644 --- a/app/upgrades/v21/upgrades.go +++ b/app/upgrades/v21/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/v23/app/keepers" - "github.com/CosmosContracts/juno/v23/app/upgrades" + "github.com/CosmosContracts/juno/v24/app/keepers" + "github.com/CosmosContracts/juno/v24/app/upgrades" ) func CreateV21UpgradeHandler( diff --git a/app/upgrades/v22/constants.go b/app/upgrades/v22/constants.go index b99cac228..e6026d1dd 100644 --- a/app/upgrades/v22/constants.go +++ b/app/upgrades/v22/constants.go @@ -3,7 +3,7 @@ package v22 import ( store "github.com/cosmos/cosmos-sdk/store/types" - "github.com/CosmosContracts/juno/v23/app/upgrades" + "github.com/CosmosContracts/juno/v24/app/upgrades" ) // UpgradeName defines the on-chain upgrade name for the upgrade. diff --git a/app/upgrades/v22/upgrade_test.go b/app/upgrades/v22/upgrade_test.go index eafb20d58..77cd0a06d 100644 --- a/app/upgrades/v22/upgrade_test.go +++ b/app/upgrades/v22/upgrade_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/suite" - "github.com/CosmosContracts/juno/v23/app/apptesting" - v21 "github.com/CosmosContracts/juno/v23/app/upgrades/v21" + "github.com/CosmosContracts/juno/v24/app/apptesting" + v21 "github.com/CosmosContracts/juno/v24/app/upgrades/v21" ) type UpgradeTestSuite struct { diff --git a/app/upgrades/v22/upgrades.go b/app/upgrades/v22/upgrades.go index fcfdbb1c3..92f908f60 100644 --- a/app/upgrades/v22/upgrades.go +++ b/app/upgrades/v22/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/v23/app/keepers" - "github.com/CosmosContracts/juno/v23/app/upgrades" + "github.com/CosmosContracts/juno/v24/app/keepers" + "github.com/CosmosContracts/juno/v24/app/upgrades" ) func CreateV22UpgradeHandler( diff --git a/app/upgrades/v23/constants.go b/app/upgrades/v23/constants.go index 58f0ea08c..675262461 100644 --- a/app/upgrades/v23/constants.go +++ b/app/upgrades/v23/constants.go @@ -3,7 +3,7 @@ package v23 import ( store "github.com/cosmos/cosmos-sdk/store/types" - "github.com/CosmosContracts/juno/v23/app/upgrades" + "github.com/CosmosContracts/juno/v24/app/upgrades" ) // UpgradeName defines the on-chain upgrade name for the upgrade. diff --git a/app/upgrades/v23/upgrade_test.go b/app/upgrades/v23/upgrade_test.go index 5117f212f..e2286762c 100644 --- a/app/upgrades/v23/upgrade_test.go +++ b/app/upgrades/v23/upgrade_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/suite" - "github.com/CosmosContracts/juno/v23/app/apptesting" - v23 "github.com/CosmosContracts/juno/v23/app/upgrades/v23" + "github.com/CosmosContracts/juno/v24/app/apptesting" + v23 "github.com/CosmosContracts/juno/v24/app/upgrades/v23" ) type UpgradeTestSuite struct { diff --git a/app/upgrades/v23/upgrades.go b/app/upgrades/v23/upgrades.go index 344b9a5c6..b44b2392c 100644 --- a/app/upgrades/v23/upgrades.go +++ b/app/upgrades/v23/upgrades.go @@ -11,8 +11,8 @@ import ( paramstypes "github.com/cosmos/cosmos-sdk/x/params/types" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - "github.com/CosmosContracts/juno/v23/app/keepers" - "github.com/CosmosContracts/juno/v23/app/upgrades" + "github.com/CosmosContracts/juno/v24/app/keepers" + "github.com/CosmosContracts/juno/v24/app/upgrades" ) type IndividualAccount struct { diff --git a/app/upgrades/v23/vesting.go b/app/upgrades/v23/vesting.go index 18b794f84..f2b3d8019 100644 --- a/app/upgrades/v23/vesting.go +++ b/app/upgrades/v23/vesting.go @@ -9,7 +9,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authvestingtypes "github.com/cosmos/cosmos-sdk/x/auth/vesting/types" - "github.com/CosmosContracts/juno/v23/app/keepers" + "github.com/CosmosContracts/juno/v24/app/keepers" ) // Stops a vesting account and returns all tokens back to the community pool diff --git a/app/upgrades/v24/constants.go b/app/upgrades/v24/constants.go new file mode 100644 index 000000000..e53a26a51 --- /dev/null +++ b/app/upgrades/v24/constants.go @@ -0,0 +1,16 @@ +package v24 + +import ( + store "github.com/cosmos/cosmos-sdk/store/types" + + "github.com/CosmosContracts/juno/v24/app/upgrades" +) + +// UpgradeName defines the on-chain upgrade name for the upgrade. +const UpgradeName = "v24" + +var Upgrade = upgrades.Upgrade{ + UpgradeName: UpgradeName, + CreateUpgradeHandler: CreateV24UpgradeHandler, + StoreUpgrades: store.StoreUpgrades{}, +} diff --git a/app/upgrades/v24/upgrade_test.go b/app/upgrades/v24/upgrade_test.go new file mode 100644 index 000000000..fe649158b --- /dev/null +++ b/app/upgrades/v24/upgrade_test.go @@ -0,0 +1,39 @@ +package v24_test + +import ( + "testing" + + "github.com/stretchr/testify/suite" + + "github.com/CosmosContracts/juno/v24/app/apptesting" + v24 "github.com/CosmosContracts/juno/v24/app/upgrades/v24" +) + +type UpgradeTestSuite struct { + apptesting.KeeperTestHelper +} + +func (s *UpgradeTestSuite) SetupTest() { + s.Setup() +} + +func TestKeeperTestSuite(t *testing.T) { + suite.Run(t, new(UpgradeTestSuite)) +} + +// Ensures the test does not error out. +func (s *UpgradeTestSuite) TestUpgrade() { + s.Setup() + preUpgradeChecks(s) + + upgradeHeight := int64(5) + s.ConfirmUpgradeSucceeded(v24.UpgradeName, upgradeHeight) + + postUpgradeChecks(s) +} + +func preUpgradeChecks(_ *UpgradeTestSuite) { +} + +func postUpgradeChecks(_ *UpgradeTestSuite) { +} diff --git a/app/upgrades/v24/upgrades.go b/app/upgrades/v24/upgrades.go new file mode 100644 index 000000000..7e8817f4b --- /dev/null +++ b/app/upgrades/v24/upgrades.go @@ -0,0 +1,35 @@ +package v24 + +import ( + "fmt" + + sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/types/module" + upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" + + "github.com/CosmosContracts/juno/v24/app/keepers" + "github.com/CosmosContracts/juno/v24/app/upgrades" +) + +func CreateV24UpgradeHandler( + mm *module.Manager, + cfg module.Configurator, + _ *keepers.AppKeepers, +) upgradetypes.UpgradeHandler { + return func(ctx sdk.Context, _ upgradetypes.Plan, vm module.VersionMap) (module.VersionMap, error) { + logger := ctx.Logger().With("upgrade", UpgradeName) + + nativeDenom := upgrades.GetChainsDenomToken(ctx.ChainID()) + logger.Info(fmt.Sprintf("With native denom %s", nativeDenom)) + + // Run migrations + logger.Info(fmt.Sprintf("pre migrate version map: %v", vm)) + versionMap, err := mm.RunMigrations(ctx, cfg, vm) + if err != nil { + return nil, err + } + logger.Info(fmt.Sprintf("post migrate version map: %v", versionMap)) + + return versionMap, err + } +} diff --git a/cmd/junod/cmd/balances_from_state_export.go b/cmd/junod/cmd/balances_from_state_export.go index 794a2f0d0..1d6f4689d 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/v23/blob/main/cmd/osmosisd/cmd/balances_from_state_export.go +// https://github.com/CosmosContracts/juno/v24/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/v23/app/params" + appparams "github.com/CosmosContracts/juno/v24/app/params" ) const ( diff --git a/cmd/junod/cmd/root.go b/cmd/junod/cmd/root.go index aa75f24cf..94c6841f3 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/v23/app" - "github.com/CosmosContracts/juno/v23/app/params" + "github.com/CosmosContracts/juno/v24/app" + "github.com/CosmosContracts/juno/v24/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 baa84bad3..8345cd27a 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/v23/app" - "github.com/CosmosContracts/juno/v23/cmd/junod/cmd" + "github.com/CosmosContracts/juno/v24/app" + "github.com/CosmosContracts/juno/v24/cmd/junod/cmd" ) func main() { diff --git a/go.mod b/go.mod index 3fb1c27a3..3322c29e8 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/CosmosContracts/juno/v23 +module github.com/CosmosContracts/juno/v24 go 1.22.2 @@ -8,7 +8,7 @@ require ( cosmossdk.io/log v1.3.1 cosmossdk.io/math v1.3.0 cosmossdk.io/tools/rosetta v0.2.1 - github.com/CosmWasm/wasmd v0.45.0 + github.com/CosmWasm/wasmd v0.46.0 github.com/CosmWasm/wasmvm v1.5.4 github.com/cometbft/cometbft v0.37.8 github.com/cometbft/cometbft-db v0.12.0 diff --git a/go.sum b/go.sum index a1946d2a0..c95d3c92b 100644 --- a/go.sum +++ b/go.sum @@ -215,8 +215,8 @@ github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1/go.mod h1:xomTg6 github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/ChainSafe/go-schnorrkel v1.0.0 h1:3aDA67lAykLaG1y3AOjs88dMxC88PgUuHRrLeDnvGIM= github.com/ChainSafe/go-schnorrkel v1.0.0/go.mod h1:dpzHYVxLZcp8pjlV+O+UR8K0Hp/z7vcchBSbMBEhCw4= -github.com/CosmWasm/wasmd v0.45.0 h1:9zBqrturKJwC2kVsfHvbrA++EN0PS7UTXCffCGbg6JI= -github.com/CosmWasm/wasmd v0.45.0/go.mod h1:RnSAiqbNIZu4QhO+0pd7qGZgnYAMBPGmXpzTADag944= +github.com/CosmWasm/wasmd v0.46.0 h1:78kmiobbVE8JWBcM+ssxiFV2cS+4l9lmZQqPAQ0mA04= +github.com/CosmWasm/wasmd v0.46.0/go.mod h1:BZFz+CFGdLNGomshb3IeccFyD4R+XbnS/mXpytOUyTA= github.com/CosmWasm/wasmvm v1.5.4 h1:Opqy65ubJ8bMsT08dn85VjRdsLJVPIAgIXif92qOMGc= github.com/CosmWasm/wasmvm v1.5.4/go.mod h1:Q0bSEtlktzh7W2hhEaifrFp1Erx11ckQZmjq8FLCyys= github.com/DATA-DOG/go-sqlmock v1.3.3/go.mod h1:f/Ixk793poVmq4qj/V1dPUg2JEAKC73Q5eFN3EC/SaM= diff --git a/interchaintest/go.mod b/interchaintest/go.mod index 607283983..d92157607 100644 --- a/interchaintest/go.mod +++ b/interchaintest/go.mod @@ -4,7 +4,7 @@ go 1.22.2 replace ( // For this nested module, you always want to replace the parent reference with the current worktree. - github.com/CosmosContracts/juno/v23 v23.0.0-00010101000000-000000000000 => ../ + github.com/CosmosContracts/juno/v24 v24.0.0-00010101000000-000000000000 => ../ github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1 github.com/misko9/go-substrate-rpc-client/v4 => github.com/faddat/go-substrate-rpc-client/v4 v4.0.1-0.20240402155230-48db8c110afe @@ -14,8 +14,8 @@ replace ( require ( cosmossdk.io/math v1.3.0 - github.com/CosmWasm/wasmd v0.45.0 - github.com/CosmosContracts/juno/v23 v23.0.0-00010101000000-000000000000 + github.com/CosmWasm/wasmd v0.46.0 + github.com/CosmosContracts/juno/v24 v24.0.0-00010101000000-000000000000 github.com/cosmos/cosmos-sdk v0.47.12 github.com/cosmos/gogoproto v1.4.10 github.com/cosmos/ibc-go/v7 v7.6.0 diff --git a/interchaintest/go.sum b/interchaintest/go.sum index 3ce09bc05..5efad259a 100644 --- a/interchaintest/go.sum +++ b/interchaintest/go.sum @@ -209,8 +209,8 @@ github.com/BurntSushi/toml v1.3.2 h1:o7IhLm0Msx3BaB+n3Ag7L8EVlByGnpq14C4YWiu/gL8 github.com/BurntSushi/toml v1.3.2/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= github.com/ChainSafe/go-schnorrkel v1.0.0 h1:3aDA67lAykLaG1y3AOjs88dMxC88PgUuHRrLeDnvGIM= github.com/ChainSafe/go-schnorrkel v1.0.0/go.mod h1:dpzHYVxLZcp8pjlV+O+UR8K0Hp/z7vcchBSbMBEhCw4= -github.com/CosmWasm/wasmd v0.45.0 h1:9zBqrturKJwC2kVsfHvbrA++EN0PS7UTXCffCGbg6JI= -github.com/CosmWasm/wasmd v0.45.0/go.mod h1:RnSAiqbNIZu4QhO+0pd7qGZgnYAMBPGmXpzTADag944= +github.com/CosmWasm/wasmd v0.46.0 h1:78kmiobbVE8JWBcM+ssxiFV2cS+4l9lmZQqPAQ0mA04= +github.com/CosmWasm/wasmd v0.46.0/go.mod h1:BZFz+CFGdLNGomshb3IeccFyD4R+XbnS/mXpytOUyTA= github.com/CosmWasm/wasmvm v1.5.4 h1:Opqy65ubJ8bMsT08dn85VjRdsLJVPIAgIXif92qOMGc= github.com/CosmWasm/wasmvm v1.5.4/go.mod h1:Q0bSEtlktzh7W2hhEaifrFp1Erx11ckQZmjq8FLCyys= github.com/DataDog/datadog-go v3.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ= diff --git a/interchaintest/helpers/tokenfactory.go b/interchaintest/helpers/tokenfactory.go index 679b102a5..5c1af4928 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/v23/x/tokenfactory/types" + tokenfactorytypes "github.com/CosmosContracts/juno/v24/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 f1a1b85b1..8e5610635 100644 --- a/interchaintest/module_clock_test.go +++ b/interchaintest/module_clock_test.go @@ -7,7 +7,7 @@ import ( "testing" sdkmath "cosmossdk.io/math" - clocktypes "github.com/CosmosContracts/juno/v23/x/clock/types" + clocktypes "github.com/CosmosContracts/juno/v24/x/clock/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" cosmosproto "github.com/cosmos/gogoproto/proto" "github.com/strangelove-ventures/interchaintest/v7" diff --git a/interchaintest/module_globalfee_test.go b/interchaintest/module_globalfee_test.go index 074836088..ef0ae24ab 100644 --- a/interchaintest/module_globalfee_test.go +++ b/interchaintest/module_globalfee_test.go @@ -8,7 +8,7 @@ import ( sdkmath "cosmossdk.io/math" helpers "github.com/CosmosContracts/juno/tests/interchaintest/helpers" - globalfeetypes "github.com/CosmosContracts/juno/v23/x/globalfee/types" + globalfeetypes "github.com/CosmosContracts/juno/v24/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 4cf2eb428..eee911da5 100644 --- a/interchaintest/setup.go +++ b/interchaintest/setup.go @@ -19,11 +19,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/v23/x/clock/types" - feepaytypes "github.com/CosmosContracts/juno/v23/x/feepay/types" - feesharetypes "github.com/CosmosContracts/juno/v23/x/feeshare/types" - globalfeetypes "github.com/CosmosContracts/juno/v23/x/globalfee/types" - tokenfactorytypes "github.com/CosmosContracts/juno/v23/x/tokenfactory/types" + clocktypes "github.com/CosmosContracts/juno/v24/x/clock/types" + feepaytypes "github.com/CosmosContracts/juno/v24/x/feepay/types" + feesharetypes "github.com/CosmosContracts/juno/v24/x/feeshare/types" + globalfeetypes "github.com/CosmosContracts/juno/v24/x/globalfee/types" + tokenfactorytypes "github.com/CosmosContracts/juno/v24/x/tokenfactory/types" ) var ( diff --git a/x/burn/burner.go b/x/burn/burner.go index d66e39966..bbf81368e 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/v23/x/mint/keeper" + mintkeeper "github.com/CosmosContracts/juno/v24/x/mint/keeper" ) // used to override Wasmd's NewBurnCoinMessageHandler diff --git a/x/clock/abci.go b/x/clock/abci.go index b65b4ad61..93a6472f2 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/v23/app/helpers" - "github.com/CosmosContracts/juno/v23/x/clock/keeper" - "github.com/CosmosContracts/juno/v23/x/clock/types" + helpers "github.com/CosmosContracts/juno/v24/app/helpers" + "github.com/CosmosContracts/juno/v24/x/clock/keeper" + "github.com/CosmosContracts/juno/v24/x/clock/types" ) var endBlockSudoMessage = []byte(types.EndBlockSudoMessage) diff --git a/x/clock/abci_test.go b/x/clock/abci_test.go index 8be190da3..2836cf249 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/v23/app" - clock "github.com/CosmosContracts/juno/v23/x/clock" - "github.com/CosmosContracts/juno/v23/x/clock/types" + "github.com/CosmosContracts/juno/v24/app" + clock "github.com/CosmosContracts/juno/v24/x/clock" + "github.com/CosmosContracts/juno/v24/x/clock/types" ) type EndBlockerTestSuite struct { diff --git a/x/clock/client/cli/query.go b/x/clock/client/cli/query.go index 8f3319bb3..4f5aae627 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/v23/x/clock/types" + "github.com/CosmosContracts/juno/v24/x/clock/types" ) func GetQueryCmd() *cobra.Command { diff --git a/x/clock/client/cli/tx.go b/x/clock/client/cli/tx.go index 6194542f6..fa392a6fb 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/v23/x/clock/types" + "github.com/CosmosContracts/juno/v24/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 b2d400176..ce916c37a 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/v23/x/clock/keeper" - "github.com/CosmosContracts/juno/v23/x/clock/types" + "github.com/CosmosContracts/juno/v24/x/clock/keeper" + "github.com/CosmosContracts/juno/v24/x/clock/types" ) // NewGenesisState - Create a new genesis state diff --git a/x/clock/genesis_test.go b/x/clock/genesis_test.go index 9f0b5508b..2eefc2d23 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/v23/app" - clock "github.com/CosmosContracts/juno/v23/x/clock" - "github.com/CosmosContracts/juno/v23/x/clock/types" + "github.com/CosmosContracts/juno/v24/app" + clock "github.com/CosmosContracts/juno/v24/x/clock" + "github.com/CosmosContracts/juno/v24/x/clock/types" ) type GenesisTestSuite struct { diff --git a/x/clock/keeper/clock.go b/x/clock/keeper/clock.go index d4e3459fb..e7dbead79 100644 --- a/x/clock/keeper/clock.go +++ b/x/clock/keeper/clock.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - globalerrors "github.com/CosmosContracts/juno/v23/app/helpers" - "github.com/CosmosContracts/juno/v23/x/clock/types" + globalerrors "github.com/CosmosContracts/juno/v24/app/helpers" + "github.com/CosmosContracts/juno/v24/x/clock/types" ) // Store Keys for clock contracts (both jailed and unjailed) diff --git a/x/clock/keeper/keeper.go b/x/clock/keeper/keeper.go index 537b34776..6b3a3e427 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/v23/x/clock/types" + "github.com/CosmosContracts/juno/v24/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 1d595e359..ee3c8e557 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/v23/app" - "github.com/CosmosContracts/juno/v23/x/clock/keeper" - "github.com/CosmosContracts/juno/v23/x/clock/types" + "github.com/CosmosContracts/juno/v24/app" + "github.com/CosmosContracts/juno/v24/x/clock/keeper" + "github.com/CosmosContracts/juno/v24/x/clock/types" ) type IntegrationTestSuite struct { diff --git a/x/clock/keeper/msg_server.go b/x/clock/keeper/msg_server.go index 449df73b5..30e766f61 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/v23/x/clock/types" + "github.com/CosmosContracts/juno/v24/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 f7eb85e0b..d2cca1755 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/v23/x/clock/types" + "github.com/CosmosContracts/juno/v24/x/clock/types" ) // Test register clock contract. diff --git a/x/clock/keeper/querier.go b/x/clock/keeper/querier.go index 8f391456a..ab630a3c4 100644 --- a/x/clock/keeper/querier.go +++ b/x/clock/keeper/querier.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - globalerrors "github.com/CosmosContracts/juno/v23/app/helpers" - "github.com/CosmosContracts/juno/v23/x/clock/types" + globalerrors "github.com/CosmosContracts/juno/v24/app/helpers" + "github.com/CosmosContracts/juno/v24/x/clock/types" ) var _ types.QueryServer = &Querier{} diff --git a/x/clock/keeper/querier_test.go b/x/clock/keeper/querier_test.go index fdb0d5ce2..e42415eb6 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/v23/x/clock/types" + "github.com/CosmosContracts/juno/v24/x/clock/types" ) // Query Clock Params diff --git a/x/clock/module.go b/x/clock/module.go index 8a061e2d8..110a43ada 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/v23/x/clock/client/cli" - "github.com/CosmosContracts/juno/v23/x/clock/keeper" - "github.com/CosmosContracts/juno/v23/x/clock/types" + "github.com/CosmosContracts/juno/v24/x/clock/client/cli" + "github.com/CosmosContracts/juno/v24/x/clock/keeper" + "github.com/CosmosContracts/juno/v24/x/clock/types" ) const ( diff --git a/x/clock/types/msgs.go b/x/clock/types/msgs.go index 698e2dafa..ac4992750 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/v23/app/helpers" + globalerrors "github.com/CosmosContracts/juno/v24/app/helpers" ) const ( diff --git a/x/clock/types/params_test.go b/x/clock/types/params_test.go index 23c35c7fb..7ad4c9b8b 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/v23/x/clock/types" + "github.com/CosmosContracts/juno/v24/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 4f0cb0e93..1252a92b4 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/v23/x/cw-hooks/types" + "github.com/CosmosContracts/juno/v24/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 cd7860979..25b4711db 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/v23/x/cw-hooks/types" + "github.com/CosmosContracts/juno/v24/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 246ee4218..9a0e4c7e4 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/v23/x/cw-hooks/keeper" - "github.com/CosmosContracts/juno/v23/x/cw-hooks/types" + "github.com/CosmosContracts/juno/v24/x/cw-hooks/keeper" + "github.com/CosmosContracts/juno/v24/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 61db2502a..03077680b 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/v23/app/helpers" + helpers "github.com/CosmosContracts/juno/v24/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 da6121bf7..6904f6e15 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/v23/x/cw-hooks/types" + "github.com/CosmosContracts/juno/v24/x/cw-hooks/types" ) type GovHooks struct { diff --git a/x/cw-hooks/keeper/keeper.go b/x/cw-hooks/keeper/keeper.go index 890616d4a..8e3d131a6 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/v23/x/cw-hooks/types" + "github.com/CosmosContracts/juno/v24/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 78f02cc30..e8ee13828 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/v23/app" - "github.com/CosmosContracts/juno/v23/x/cw-hooks/keeper" - "github.com/CosmosContracts/juno/v23/x/cw-hooks/types" + "github.com/CosmosContracts/juno/v24/app" + "github.com/CosmosContracts/juno/v24/x/cw-hooks/keeper" + "github.com/CosmosContracts/juno/v24/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 23a75157c..739d441bc 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/v23/x/cw-hooks/types" + "github.com/CosmosContracts/juno/v24/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 337014a4b..4d93864a5 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/v23/x/cw-hooks/types" + "github.com/CosmosContracts/juno/v24/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 81d29de21..5fa5a43e6 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/v23/x/cw-hooks/types" + "github.com/CosmosContracts/juno/v24/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 f8fe36dd3..2c4edcf39 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/v23/x/cw-hooks/types" + "github.com/CosmosContracts/juno/v24/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 221099f79..a3f910f4b 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/v23/x/cw-hooks/types" + "github.com/CosmosContracts/juno/v24/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 ad500e58f..14dc753aa 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/v23/x/cw-hooks/types" + "github.com/CosmosContracts/juno/v24/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 c3c68c097..73c4d76ed 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/v23/x/cw-hooks/client/cli" - "github.com/CosmosContracts/juno/v23/x/cw-hooks/keeper" - "github.com/CosmosContracts/juno/v23/x/cw-hooks/types" + "github.com/CosmosContracts/juno/v24/x/cw-hooks/client/cli" + "github.com/CosmosContracts/juno/v24/x/cw-hooks/keeper" + "github.com/CosmosContracts/juno/v24/x/cw-hooks/types" ) const ( diff --git a/x/drip/client/cli/query.go b/x/drip/client/cli/query.go index dad6c1096..c95f8b53e 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/v23/x/drip/types" + "github.com/CosmosContracts/juno/v24/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 fd95a0f5c..28709f18f 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/v23/x/drip/types" + "github.com/CosmosContracts/juno/v24/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 c51cc593d..93d17de83 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/v23/x/drip/keeper" - "github.com/CosmosContracts/juno/v23/x/drip/types" + "github.com/CosmosContracts/juno/v24/x/drip/keeper" + "github.com/CosmosContracts/juno/v24/x/drip/types" ) // InitGenesis import module genesis diff --git a/x/drip/genesis_test.go b/x/drip/genesis_test.go index 6dd208d0c..1038cfc7e 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/v23/app" - drip "github.com/CosmosContracts/juno/v23/x/drip" - "github.com/CosmosContracts/juno/v23/x/drip/types" + "github.com/CosmosContracts/juno/v24/app" + drip "github.com/CosmosContracts/juno/v24/x/drip" + "github.com/CosmosContracts/juno/v24/x/drip/types" ) type GenesisTestSuite struct { diff --git a/x/drip/keeper/grpc_query.go b/x/drip/keeper/grpc_query.go index 2e07ecdb3..622b1cf68 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/v23/x/drip/types" + "github.com/CosmosContracts/juno/v24/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 361e97bb6..c7b4e8ce1 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/v23/x/drip/types" + "github.com/CosmosContracts/juno/v24/x/drip/types" ) func (s *IntegrationTestSuite) TestDripQueryParams() { diff --git a/x/drip/keeper/keeper.go b/x/drip/keeper/keeper.go index a07b8ae25..c1aa0468e 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/v23/x/drip/types" + driptypes "github.com/CosmosContracts/juno/v24/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 33723fca8..b7bb14671 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/v23/app" - "github.com/CosmosContracts/juno/v23/x/drip/keeper" - "github.com/CosmosContracts/juno/v23/x/drip/types" + "github.com/CosmosContracts/juno/v24/app" + "github.com/CosmosContracts/juno/v24/x/drip/keeper" + "github.com/CosmosContracts/juno/v24/x/drip/types" ) type IntegrationTestSuite struct { diff --git a/x/drip/keeper/msg_server.go b/x/drip/keeper/msg_server.go index efce20f59..5e36d42a8 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/v23/x/drip/types" + "github.com/CosmosContracts/juno/v24/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 8b09e04bb..94b473e19 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/v23/x/drip/types" + "github.com/CosmosContracts/juno/v24/x/drip/types" ) func (s *IntegrationTestSuite) TestDripDistributeTokensMsgs() { diff --git a/x/drip/keeper/params.go b/x/drip/keeper/params.go index c7f42bdd3..ea0b376fc 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/v23/x/drip/types" + "github.com/CosmosContracts/juno/v24/x/drip/types" ) // GetParams returns the current x/drip module parameters. diff --git a/x/drip/module.go b/x/drip/module.go index e12bfa905..13608668a 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/v23/x/drip/client/cli" - "github.com/CosmosContracts/juno/v23/x/drip/keeper" - "github.com/CosmosContracts/juno/v23/x/drip/types" + "github.com/CosmosContracts/juno/v24/x/drip/client/cli" + "github.com/CosmosContracts/juno/v24/x/drip/keeper" + "github.com/CosmosContracts/juno/v24/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 79d8dfea0..236539356 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/v23/x/feepay/keeper" - feepaytypes "github.com/CosmosContracts/juno/v23/x/feepay/types" - globalfeekeeper "github.com/CosmosContracts/juno/v23/x/globalfee/keeper" + feepaykeeper "github.com/CosmosContracts/juno/v24/x/feepay/keeper" + feepaytypes "github.com/CosmosContracts/juno/v24/x/feepay/types" + globalfeekeeper "github.com/CosmosContracts/juno/v24/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 851af70de..e3bcb1346 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/v23/x/feepay/helpers" - feepaykeeper "github.com/CosmosContracts/juno/v23/x/feepay/keeper" - globalfeeante "github.com/CosmosContracts/juno/v23/x/globalfee/ante" + feepayhelpers "github.com/CosmosContracts/juno/v24/x/feepay/helpers" + feepaykeeper "github.com/CosmosContracts/juno/v24/x/feepay/keeper" + globalfeeante "github.com/CosmosContracts/juno/v24/x/globalfee/ante" ) // MsgIsFeePayTx 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 9f014caa7..492e2a810 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/v23/x/feepay/types" + "github.com/CosmosContracts/juno/v24/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 805fe196f..700bd763b 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/v23/x/feepay/types" + "github.com/CosmosContracts/juno/v24/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 2803c51dd..d660d2c70 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/v23/x/feepay/keeper" - "github.com/CosmosContracts/juno/v23/x/feepay/types" + "github.com/CosmosContracts/juno/v24/x/feepay/keeper" + "github.com/CosmosContracts/juno/v24/x/feepay/types" ) // InitGenesis import module genesis diff --git a/x/feepay/genesis_test.go b/x/feepay/genesis_test.go index 7330f5a67..40a4096df 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/v23/app" - "github.com/CosmosContracts/juno/v23/x/feepay" - "github.com/CosmosContracts/juno/v23/x/feepay/types" + "github.com/CosmosContracts/juno/v24/app" + "github.com/CosmosContracts/juno/v24/x/feepay" + "github.com/CosmosContracts/juno/v24/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 b7e1f2f8a..e8a9f7100 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/v23/x/feepay/keeper" + feepaykeeper "github.com/CosmosContracts/juno/v24/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 5754129e6..b800039c3 100644 --- a/x/feepay/keeper/feepay.go +++ b/x/feepay/keeper/feepay.go @@ -9,8 +9,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - globalerrors "github.com/CosmosContracts/juno/v23/app/helpers" - "github.com/CosmosContracts/juno/v23/x/feepay/types" + globalerrors "github.com/CosmosContracts/juno/v24/app/helpers" + "github.com/CosmosContracts/juno/v24/x/feepay/types" ) // 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 260171fae..c18a485d3 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/v23/x/feepay/types" - feesharetypes "github.com/CosmosContracts/juno/v23/x/feeshare/types" + feepaytypes "github.com/CosmosContracts/juno/v24/x/feepay/types" + feesharetypes "github.com/CosmosContracts/juno/v24/x/feeshare/types" ) var ( diff --git a/x/feepay/keeper/keeper_test.go b/x/feepay/keeper/keeper_test.go index 38f45064d..be2c95e23 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/v23/app" - "github.com/CosmosContracts/juno/v23/x/feepay/keeper" - "github.com/CosmosContracts/juno/v23/x/feepay/types" + "github.com/CosmosContracts/juno/v24/app" + "github.com/CosmosContracts/juno/v24/x/feepay/keeper" + "github.com/CosmosContracts/juno/v24/x/feepay/types" ) type IntegrationTestSuite struct { diff --git a/x/feepay/keeper/msg_server.go b/x/feepay/keeper/msg_server.go index 149218323..514ba8902 100644 --- a/x/feepay/keeper/msg_server.go +++ b/x/feepay/keeper/msg_server.go @@ -8,8 +8,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - globalerrors "github.com/CosmosContracts/juno/v23/app/helpers" - "github.com/CosmosContracts/juno/v23/x/feepay/types" + globalerrors "github.com/CosmosContracts/juno/v24/app/helpers" + "github.com/CosmosContracts/juno/v24/x/feepay/types" ) var _ types.MsgServer = &Keeper{} diff --git a/x/feepay/keeper/msg_server_test.go b/x/feepay/keeper/msg_server_test.go index 40141e425..f79d7b1ec 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/v23/x/feepay/types" + "github.com/CosmosContracts/juno/v24/x/feepay/types" ) func (s *IntegrationTestSuite) TestRegisterFeePayContract() { diff --git a/x/feepay/keeper/params.go b/x/feepay/keeper/params.go index a1703702c..600b11c10 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/v23/x/feepay/types" + "github.com/CosmosContracts/juno/v24/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 196c67c39..f7d709705 100644 --- a/x/feepay/keeper/querier.go +++ b/x/feepay/keeper/querier.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - globalerrors "github.com/CosmosContracts/juno/v23/app/helpers" - "github.com/CosmosContracts/juno/v23/x/feepay/types" + globalerrors "github.com/CosmosContracts/juno/v24/app/helpers" + "github.com/CosmosContracts/juno/v24/x/feepay/types" ) var _ types.QueryServer = Querier{} diff --git a/x/feepay/keeper/querier_test.go b/x/feepay/keeper/querier_test.go index c921b2e3c..2250970e0 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/v23/testutil/nullify" - "github.com/CosmosContracts/juno/v23/x/feepay/types" + "github.com/CosmosContracts/juno/v24/testutil/nullify" + "github.com/CosmosContracts/juno/v24/x/feepay/types" ) func (s *IntegrationTestSuite) TestQueryContract() { diff --git a/x/feepay/module.go b/x/feepay/module.go index c111aa3ba..cadb182a5 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/v23/x/feepay/client/cli" - "github.com/CosmosContracts/juno/v23/x/feepay/keeper" - "github.com/CosmosContracts/juno/v23/x/feepay/types" + "github.com/CosmosContracts/juno/v24/x/feepay/client/cli" + "github.com/CosmosContracts/juno/v24/x/feepay/keeper" + "github.com/CosmosContracts/juno/v24/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 cc23f5f32..14a4ebf4e 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/v23/x/feeshare/types" + feeshare "github.com/CosmosContracts/juno/v24/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 9bc03be7d..59fbb5f7b 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/v23/app" - ante "github.com/CosmosContracts/juno/v23/x/feeshare/ante" - feesharekeeper "github.com/CosmosContracts/juno/v23/x/feeshare/keeper" - feesharetypes "github.com/CosmosContracts/juno/v23/x/feeshare/types" + "github.com/CosmosContracts/juno/v24/app" + ante "github.com/CosmosContracts/juno/v24/x/feeshare/ante" + feesharekeeper "github.com/CosmosContracts/juno/v24/x/feeshare/keeper" + feesharetypes "github.com/CosmosContracts/juno/v24/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 2681b0778..84d80e439 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/v23/x/feeshare/types" + revtypes "github.com/CosmosContracts/juno/v24/x/feeshare/types" ) type BankKeeper interface { diff --git a/x/feeshare/client/cli/query.go b/x/feeshare/client/cli/query.go index 658659b94..5696917f8 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/v23/x/feeshare/types" + "github.com/CosmosContracts/juno/v24/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 6d3f16fb8..1cef77f04 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/v23/x/feeshare/types" + "github.com/CosmosContracts/juno/v24/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 efc8fba13..05ed865da 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/v23/x/feeshare/keeper" - "github.com/CosmosContracts/juno/v23/x/feeshare/types" + "github.com/CosmosContracts/juno/v24/x/feeshare/keeper" + "github.com/CosmosContracts/juno/v24/x/feeshare/types" ) // InitGenesis import module genesis diff --git a/x/feeshare/genesis_test.go b/x/feeshare/genesis_test.go index df58021f8..056b4000a 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/v23/app" - "github.com/CosmosContracts/juno/v23/x/feeshare" - "github.com/CosmosContracts/juno/v23/x/feeshare/types" + "github.com/CosmosContracts/juno/v24/app" + "github.com/CosmosContracts/juno/v24/x/feeshare" + "github.com/CosmosContracts/juno/v24/x/feeshare/types" ) type GenesisTestSuite struct { diff --git a/x/feeshare/integration_test.go b/x/feeshare/integration_test.go index 3c67d9eb1..2706cf1d2 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/v23/app" - "github.com/CosmosContracts/juno/v23/x/mint/types" + junoapp "github.com/CosmosContracts/juno/v24/app" + "github.com/CosmosContracts/juno/v24/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 3a4c071c2..7f217f70d 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/v23/x/feeshare/types" + "github.com/CosmosContracts/juno/v24/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 78a52876f..360eea548 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/v23/x/feeshare/types" + "github.com/CosmosContracts/juno/v24/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 2ae6124fe..b001467ab 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/v23/testutil/nullify" - "github.com/CosmosContracts/juno/v23/x/feeshare/types" + "github.com/CosmosContracts/juno/v24/testutil/nullify" + "github.com/CosmosContracts/juno/v24/x/feeshare/types" ) func (s *IntegrationTestSuite) TestFeeShares() { diff --git a/x/feeshare/keeper/keeper.go b/x/feeshare/keeper/keeper.go index 75b6c2b9c..a9a89c90a 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/v23/x/feeshare/types" + revtypes "github.com/CosmosContracts/juno/v24/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 be565887a..8717b57bf 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/v23/app" - "github.com/CosmosContracts/juno/v23/x/feeshare/keeper" - "github.com/CosmosContracts/juno/v23/x/feeshare/types" + "github.com/CosmosContracts/juno/v24/app" + "github.com/CosmosContracts/juno/v24/x/feeshare/keeper" + "github.com/CosmosContracts/juno/v24/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 9086c13c4..c26c490a7 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/v23/x/feeshare/exported" - v2 "github.com/CosmosContracts/juno/v23/x/feeshare/migrations/v2" + "github.com/CosmosContracts/juno/v24/x/feeshare/exported" + v2 "github.com/CosmosContracts/juno/v24/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 1ef1bbbcc..82a56b88c 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/v23/x/feeshare/types" + "github.com/CosmosContracts/juno/v24/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 9f9c58ed5..e1b18eeba 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/v23/x/feeshare/types" + "github.com/CosmosContracts/juno/v24/x/feeshare/types" ) //go:embed testdata/reflect.wasm diff --git a/x/feeshare/keeper/params.go b/x/feeshare/keeper/params.go index aa0a0b5a3..45a013071 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/v23/x/feeshare/types" + "github.com/CosmosContracts/juno/v24/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 e6fce0153..0dd5dea5a 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/v23/x/feeshare/exported" - "github.com/CosmosContracts/juno/v23/x/feeshare/types" + "github.com/CosmosContracts/juno/v24/x/feeshare/exported" + "github.com/CosmosContracts/juno/v24/x/feeshare/types" ) const ( diff --git a/x/feeshare/migrations/v2/migrate_test.go b/x/feeshare/migrations/v2/migrate_test.go index 38f13f37a..c5e21edff 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/v23/x/feeshare" - "github.com/CosmosContracts/juno/v23/x/feeshare/exported" - v2 "github.com/CosmosContracts/juno/v23/x/feeshare/migrations/v2" - "github.com/CosmosContracts/juno/v23/x/feeshare/types" + "github.com/CosmosContracts/juno/v24/x/feeshare" + "github.com/CosmosContracts/juno/v24/x/feeshare/exported" + v2 "github.com/CosmosContracts/juno/v24/x/feeshare/migrations/v2" + "github.com/CosmosContracts/juno/v24/x/feeshare/types" ) type mockSubspace struct { diff --git a/x/feeshare/module.go b/x/feeshare/module.go index 70f717411..f8149896d 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/v23/x/feeshare/client/cli" - "github.com/CosmosContracts/juno/v23/x/feeshare/exported" - "github.com/CosmosContracts/juno/v23/x/feeshare/keeper" - "github.com/CosmosContracts/juno/v23/x/feeshare/types" + "github.com/CosmosContracts/juno/v24/x/feeshare/client/cli" + "github.com/CosmosContracts/juno/v24/x/feeshare/exported" + "github.com/CosmosContracts/juno/v24/x/feeshare/keeper" + "github.com/CosmosContracts/juno/v24/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 b4ca92148..769177e9b 100644 --- a/x/globalfee/alias.go +++ b/x/globalfee/alias.go @@ -1,7 +1,7 @@ package globalfee import ( - "github.com/CosmosContracts/juno/v23/x/globalfee/types" + "github.com/CosmosContracts/juno/v24/x/globalfee/types" ) const ( diff --git a/x/globalfee/ante/fee.go b/x/globalfee/ante/fee.go index 8f3201940..8545d0f99 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/v23/x/globalfee/keeper" + globalfeekeeper "github.com/CosmosContracts/juno/v24/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 48301d74f..338674a90 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/v23/x/globalfee/types" + "github.com/CosmosContracts/juno/v24/x/globalfee/types" ) func GetQueryCmd() *cobra.Command { diff --git a/x/globalfee/genesis_test.go b/x/globalfee/genesis_test.go index f0aaf5e72..8714daaa5 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/v23/app/params" - globalfeekeeper "github.com/CosmosContracts/juno/v23/x/globalfee/keeper" - "github.com/CosmosContracts/juno/v23/x/globalfee/types" + appparams "github.com/CosmosContracts/juno/v24/app/params" + globalfeekeeper "github.com/CosmosContracts/juno/v24/x/globalfee/keeper" + "github.com/CosmosContracts/juno/v24/x/globalfee/types" ) func TestDefaultGenesis(t *testing.T) { diff --git a/x/globalfee/keeper/keeper.go b/x/globalfee/keeper/keeper.go index 81dacea12..379818c0d 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/v23/x/globalfee/types" + "github.com/CosmosContracts/juno/v24/x/globalfee/types" ) // Keeper of the globalfee store diff --git a/x/globalfee/keeper/migrator.go b/x/globalfee/keeper/migrator.go index 498dff8e1..70d08686e 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/v23/x/globalfee/migrations/v2" + v2 "github.com/CosmosContracts/juno/v24/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 988f8fec5..377d35392 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/v23/x/globalfee/types" + "github.com/CosmosContracts/juno/v24/x/globalfee/types" ) var _ types.MsgServer = msgServer{} diff --git a/x/globalfee/migrations/v2/migrate.go b/x/globalfee/migrations/v2/migrate.go index 7abfa24ac..2c2183fe4 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/v23/x/globalfee/types" + "github.com/CosmosContracts/juno/v24/x/globalfee/types" ) const ( diff --git a/x/globalfee/migrations/v2/migrator_test.go b/x/globalfee/migrations/v2/migrator_test.go index 5256032a4..db24a654e 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/v23/x/globalfee" - v2 "github.com/CosmosContracts/juno/v23/x/globalfee/migrations/v2" - "github.com/CosmosContracts/juno/v23/x/globalfee/types" + "github.com/CosmosContracts/juno/v24/x/globalfee" + v2 "github.com/CosmosContracts/juno/v24/x/globalfee/migrations/v2" + "github.com/CosmosContracts/juno/v24/x/globalfee/types" ) func TestMigrateMainnet(t *testing.T) { diff --git a/x/globalfee/module.go b/x/globalfee/module.go index 309085d80..f31e2270a 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/v23/x/globalfee/client/cli" - "github.com/CosmosContracts/juno/v23/x/globalfee/keeper" - "github.com/CosmosContracts/juno/v23/x/globalfee/types" + "github.com/CosmosContracts/juno/v24/x/globalfee/client/cli" + "github.com/CosmosContracts/juno/v24/x/globalfee/keeper" + "github.com/CosmosContracts/juno/v24/x/globalfee/types" ) var ( diff --git a/x/globalfee/querier.go b/x/globalfee/querier.go index 1a8bdb224..6b1793e43 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/v23/x/globalfee/keeper" - "github.com/CosmosContracts/juno/v23/x/globalfee/types" + "github.com/CosmosContracts/juno/v24/x/globalfee/keeper" + "github.com/CosmosContracts/juno/v24/x/globalfee/types" ) var _ types.QueryServer = &GrpcQuerier{} diff --git a/x/globalfee/querier_test.go b/x/globalfee/querier_test.go index d103d2f2c..d9dbe704e 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/v23/x/globalfee/keeper" - "github.com/CosmosContracts/juno/v23/x/globalfee/types" + globalfeekeeper "github.com/CosmosContracts/juno/v24/x/globalfee/keeper" + "github.com/CosmosContracts/juno/v24/x/globalfee/types" ) func TestQueryMinimumGasPrices(t *testing.T) { diff --git a/x/mint/abci.go b/x/mint/abci.go index c1142aadc..8e9f97980 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/v23/x/mint/keeper" - "github.com/CosmosContracts/juno/v23/x/mint/types" + "github.com/CosmosContracts/juno/v24/x/mint/keeper" + "github.com/CosmosContracts/juno/v24/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 56794282a..9e7ba2792 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/v23/x/mint/types" + "github.com/CosmosContracts/juno/v24/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 5248e8b00..7f88137a0 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/v23/x/mint/client/cli" - minttypes "github.com/CosmosContracts/juno/v23/x/mint/types" + "github.com/CosmosContracts/juno/v24/x/mint/client/cli" + minttypes "github.com/CosmosContracts/juno/v24/x/mint/types" ) type IntegrationTestSuite struct { diff --git a/x/mint/genesis.go b/x/mint/genesis.go index a956dc976..39fd1b8e5 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/v23/x/mint/keeper" - "github.com/CosmosContracts/juno/v23/x/mint/types" + "github.com/CosmosContracts/juno/v24/x/mint/keeper" + "github.com/CosmosContracts/juno/v24/x/mint/types" ) // InitGenesis new mint genesis diff --git a/x/mint/keeper/grpc_query.go b/x/mint/keeper/grpc_query.go index 0558c3d82..5b2681b5c 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/v23/x/mint/types" + "github.com/CosmosContracts/juno/v24/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 7bfea9d56..a03385fe8 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/v23/app" - "github.com/CosmosContracts/juno/v23/x/mint/types" + "github.com/CosmosContracts/juno/v24/app" + "github.com/CosmosContracts/juno/v24/x/mint/types" ) type MintTestSuite struct { diff --git a/x/mint/keeper/keeper.go b/x/mint/keeper/keeper.go index 09e78d94c..5f86bb016 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/v23/x/mint/types" + "github.com/CosmosContracts/juno/v24/x/mint/types" ) // Keeper of the mint store diff --git a/x/mint/keeper/migrator.go b/x/mint/keeper/migrator.go index 3b66c79d8..5d01d611c 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/v23/x/mint/migrations/v2" - v3 "github.com/CosmosContracts/juno/v23/x/mint/migrations/v3" + v2 "github.com/CosmosContracts/juno/v24/x/mint/migrations/v2" + v3 "github.com/CosmosContracts/juno/v24/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 f054221dc..0afac5848 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/v23/x/mint/types" + "github.com/CosmosContracts/juno/v24/x/mint/types" ) var _ types.MsgServer = msgServer{} diff --git a/x/mint/keeper/querier.go b/x/mint/keeper/querier.go index 82be60503..7a2678d51 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/v23/x/mint/types" +// "github.com/CosmosContracts/juno/v24/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 cf201dd52..c80c91d6d 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/v23/x/mint/keeper" -// "github.com/CosmosContracts/juno/v23/x/mint/types" +// keep "github.com/CosmosContracts/juno/v24/x/mint/keeper" +// "github.com/CosmosContracts/juno/v24/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 96939d1da..ce2afe49d 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/v23/x/mint/types" + "github.com/CosmosContracts/juno/v24/x/mint/types" ) const ( diff --git a/x/mint/migrations/v3/migrate.go b/x/mint/migrations/v3/migrate.go index 18a3e7ea1..98558c54e 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/v23/x/mint/types" + "github.com/CosmosContracts/juno/v24/x/mint/types" ) const ( diff --git a/x/mint/migrations/v3/migrator_test.go b/x/mint/migrations/v3/migrator_test.go index 9d42d7abd..bb6a05d43 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/v23/x/mint" - "github.com/CosmosContracts/juno/v23/x/mint/exported" - v3 "github.com/CosmosContracts/juno/v23/x/mint/migrations/v3" - "github.com/CosmosContracts/juno/v23/x/mint/types" + "github.com/CosmosContracts/juno/v24/x/mint" + "github.com/CosmosContracts/juno/v24/x/mint/exported" + v3 "github.com/CosmosContracts/juno/v24/x/mint/migrations/v3" + "github.com/CosmosContracts/juno/v24/x/mint/types" ) type mockSubspace struct { diff --git a/x/mint/module.go b/x/mint/module.go index f7c062889..d403417fc 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/v23/x/mint/client/cli" - "github.com/CosmosContracts/juno/v23/x/mint/keeper" - "github.com/CosmosContracts/juno/v23/x/mint/simulation" - "github.com/CosmosContracts/juno/v23/x/mint/types" + "github.com/CosmosContracts/juno/v24/x/mint/client/cli" + "github.com/CosmosContracts/juno/v24/x/mint/keeper" + "github.com/CosmosContracts/juno/v24/x/mint/simulation" + "github.com/CosmosContracts/juno/v24/x/mint/types" ) var ( diff --git a/x/mint/module_test.go b/x/mint/module_test.go index 24fd42ea5..1fc9d01c2 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/v23/x/mint/types" + "github.com/CosmosContracts/juno/v24/x/mint/types" ) // TestItCreatesModuleAccountOnInitBlock tests that the module account is created on InitBlock diff --git a/x/mint/simulation/decoder.go b/x/mint/simulation/decoder.go index 83fc9c1d0..ff0051d25 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/v23/x/mint/types" + "github.com/CosmosContracts/juno/v24/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 24d75eea1..ca717577a 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/v23/app" - "github.com/CosmosContracts/juno/v23/x/mint/simulation" - "github.com/CosmosContracts/juno/v23/x/mint/types" + "github.com/CosmosContracts/juno/v24/app" + "github.com/CosmosContracts/juno/v24/x/mint/simulation" + "github.com/CosmosContracts/juno/v24/x/mint/types" ) // TestDecodeStore tests the decoding of the store diff --git a/x/mint/simulation/genesis.go b/x/mint/simulation/genesis.go index 8cca5f782..61023b4f2 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/v23/x/mint/types" + "github.com/CosmosContracts/juno/v24/x/mint/types" ) // Simulation parameter constants diff --git a/x/mint/simulation/genesis_test.go b/x/mint/simulation/genesis_test.go index b33fa7b52..4026dcba6 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/v23/x/mint/simulation" - "github.com/CosmosContracts/juno/v23/x/mint/types" + "github.com/CosmosContracts/juno/v24/x/mint/simulation" + "github.com/CosmosContracts/juno/v24/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 2c7fd2c1e..fb416ef61 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/v23/app" - bindings "github.com/CosmosContracts/juno/v23/x/tokenfactory/bindings/types" - "github.com/CosmosContracts/juno/v23/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v24/app" + bindings "github.com/CosmosContracts/juno/v24/x/tokenfactory/bindings/types" + "github.com/CosmosContracts/juno/v24/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 d46031f70..4a1d1f5cd 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/v23/app" - bindings "github.com/CosmosContracts/juno/v23/x/tokenfactory/bindings/types" + "github.com/CosmosContracts/juno/v24/app" + bindings "github.com/CosmosContracts/juno/v24/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 01ddb3bf5..84cffa356 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/v23/app" + "github.com/CosmosContracts/juno/v24/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 b371a23c5..1bbac493a 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/v23/x/tokenfactory/bindings/types" - tokenfactorykeeper "github.com/CosmosContracts/juno/v23/x/tokenfactory/keeper" - tokenfactorytypes "github.com/CosmosContracts/juno/v23/x/tokenfactory/types" + bindingstypes "github.com/CosmosContracts/juno/v24/x/tokenfactory/bindings/types" + tokenfactorykeeper "github.com/CosmosContracts/juno/v24/x/tokenfactory/keeper" + tokenfactorytypes "github.com/CosmosContracts/juno/v24/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 708b1d983..cf86948b7 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/v23/x/tokenfactory/bindings/types" - tokenfactorykeeper "github.com/CosmosContracts/juno/v23/x/tokenfactory/keeper" + bindingstypes "github.com/CosmosContracts/juno/v24/x/tokenfactory/bindings/types" + tokenfactorykeeper "github.com/CosmosContracts/juno/v24/x/tokenfactory/keeper" ) type QueryPlugin struct { diff --git a/x/tokenfactory/bindings/query_plugin.go b/x/tokenfactory/bindings/query_plugin.go index 30196a6d5..98252a2d6 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/v23/x/tokenfactory/bindings/types" + bindingstypes "github.com/CosmosContracts/juno/v24/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 6bfe959d7..1535b3c44 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/v23/x/tokenfactory/bindings" - bindings "github.com/CosmosContracts/juno/v23/x/tokenfactory/bindings/types" - "github.com/CosmosContracts/juno/v23/x/tokenfactory/types" + wasmbinding "github.com/CosmosContracts/juno/v24/x/tokenfactory/bindings" + bindings "github.com/CosmosContracts/juno/v24/x/tokenfactory/bindings/types" + "github.com/CosmosContracts/juno/v24/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 de358f70f..5700bc46d 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/v23/x/tokenfactory/bindings" + wasmbinding "github.com/CosmosContracts/juno/v24/x/tokenfactory/bindings" ) func TestFullDenom(t *testing.T) { diff --git a/x/tokenfactory/bindings/wasm.go b/x/tokenfactory/bindings/wasm.go index 65c4dd1a2..8d034ce9e 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/v23/x/tokenfactory/keeper" + tokenfactorykeeper "github.com/CosmosContracts/juno/v24/x/tokenfactory/keeper" ) func RegisterCustomPlugins( diff --git a/x/tokenfactory/client/cli/query.go b/x/tokenfactory/client/cli/query.go index c78d31592..c262eb757 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/v23/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v24/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 d123f11d4..c1effaf21 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/v23/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v24/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 e68001804..ca28423b9 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/v23/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v24/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 418951198..d9b7a0216 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/v23/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v24/x/tokenfactory/types" ) func (suite *KeeperTestSuite) TestAdminMsgs() { diff --git a/x/tokenfactory/keeper/bankactions.go b/x/tokenfactory/keeper/bankactions.go index 636d979b8..cdec130ac 100644 --- a/x/tokenfactory/keeper/bankactions.go +++ b/x/tokenfactory/keeper/bankactions.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmosContracts/juno/v23/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v24/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 04e55a3fb..e2ae5bc4f 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/v23/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v24/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 f2539e6bf..988d6b128 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/v23/app/apptesting" - "github.com/CosmosContracts/juno/v23/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v24/app/apptesting" + "github.com/CosmosContracts/juno/v24/x/tokenfactory/types" ) func (suite *KeeperTestSuite) TestMsgCreateDenom() { diff --git a/x/tokenfactory/keeper/genesis.go b/x/tokenfactory/keeper/genesis.go index 4c33c23bd..e5dc08340 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/v23/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v24/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 c7577f1d9..b4811dc80 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/v23/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v24/x/tokenfactory/types" ) func (suite *KeeperTestSuite) TestGenesis() { diff --git a/x/tokenfactory/keeper/grpc_query.go b/x/tokenfactory/keeper/grpc_query.go index be76cfa20..0a574bd5a 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/v23/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v24/x/tokenfactory/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/tokenfactory/keeper/keeper.go b/x/tokenfactory/keeper/keeper.go index 30d2fb053..d51b8baf1 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/v23/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v24/x/tokenfactory/types" ) type ( diff --git a/x/tokenfactory/keeper/keeper_test.go b/x/tokenfactory/keeper/keeper_test.go index d24fae77d..d6d9431e4 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/v23/app/apptesting" - "github.com/CosmosContracts/juno/v23/x/tokenfactory/keeper" - "github.com/CosmosContracts/juno/v23/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v24/app/apptesting" + "github.com/CosmosContracts/juno/v24/x/tokenfactory/keeper" + "github.com/CosmosContracts/juno/v24/x/tokenfactory/types" ) type KeeperTestSuite struct { diff --git a/x/tokenfactory/keeper/migrator.go b/x/tokenfactory/keeper/migrator.go index 32427e4d6..976fbe89b 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/v23/x/tokenfactory/exported" - v2 "github.com/CosmosContracts/juno/v23/x/tokenfactory/migrations/v2" + "github.com/CosmosContracts/juno/v24/x/tokenfactory/exported" + v2 "github.com/CosmosContracts/juno/v24/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 14f0da0d5..5ba102db0 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/v23/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v24/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 a571b5636..bcb3c2f27 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/v23/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v24/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 a4fd021eb..de1d5e1cd 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/v23/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v24/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 7fe2ea023..540904af1 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/v23/x/tokenfactory/exported" - "github.com/CosmosContracts/juno/v23/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v24/x/tokenfactory/exported" + "github.com/CosmosContracts/juno/v24/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 42eeda109..e227afd5f 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/v23/x/tokenfactory" - "github.com/CosmosContracts/juno/v23/x/tokenfactory/exported" - v2 "github.com/CosmosContracts/juno/v23/x/tokenfactory/migrations/v2" - "github.com/CosmosContracts/juno/v23/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v24/x/tokenfactory" + "github.com/CosmosContracts/juno/v24/x/tokenfactory/exported" + v2 "github.com/CosmosContracts/juno/v24/x/tokenfactory/migrations/v2" + "github.com/CosmosContracts/juno/v24/x/tokenfactory/types" ) type mockSubspace struct { diff --git a/x/tokenfactory/module.go b/x/tokenfactory/module.go index 6e564c3c5..ab182180f 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/v23/x/tokenfactory/client/cli" - "github.com/CosmosContracts/juno/v23/x/tokenfactory/exported" - "github.com/CosmosContracts/juno/v23/x/tokenfactory/keeper" - simulation "github.com/CosmosContracts/juno/v23/x/tokenfactory/simulation" - "github.com/CosmosContracts/juno/v23/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v24/x/tokenfactory/client/cli" + "github.com/CosmosContracts/juno/v24/x/tokenfactory/exported" + "github.com/CosmosContracts/juno/v24/x/tokenfactory/keeper" + simulation "github.com/CosmosContracts/juno/v24/x/tokenfactory/simulation" + "github.com/CosmosContracts/juno/v24/x/tokenfactory/types" ) var ( diff --git a/x/tokenfactory/simulation/genesis.go b/x/tokenfactory/simulation/genesis.go index 2e6715e42..b64046163 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/v23/app/params" - "github.com/CosmosContracts/juno/v23/x/tokenfactory/types" + appparams "github.com/CosmosContracts/juno/v24/app/params" + "github.com/CosmosContracts/juno/v24/x/tokenfactory/types" ) // RandDenomCreationFeeParam returns a random DenomCreationFeeParam diff --git a/x/tokenfactory/simulation/operations.go b/x/tokenfactory/simulation/operations.go index 0488233a2..eed06adb4 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/v23/app/params" - "github.com/CosmosContracts/juno/v23/x/tokenfactory/types" + appparams "github.com/CosmosContracts/juno/v24/app/params" + "github.com/CosmosContracts/juno/v24/x/tokenfactory/types" ) // Simulation operation weights constants diff --git a/x/tokenfactory/types/denoms_test.go b/x/tokenfactory/types/denoms_test.go index 586cfdaa0..aa6396e6e 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/v23/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v24/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 2937b9fc9..8a2b0f9c8 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/v23/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v24/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 2483f078a..b1dc8201c 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/v23/x/tokenfactory/testhelpers" - "github.com/CosmosContracts/juno/v23/x/tokenfactory/types" + "github.com/CosmosContracts/juno/v24/x/tokenfactory/testhelpers" + "github.com/CosmosContracts/juno/v24/x/tokenfactory/types" ) // Test authz serialize and de-serializes for tokenfactory msg.