diff --git a/app/app.go b/app/app.go index 8c5d56a1c..6bed0415f 100644 --- a/app/app.go +++ b/app/app.go @@ -41,28 +41,28 @@ import ( paramstypes "github.com/cosmos/cosmos-sdk/x/params/types" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - "github.com/classic-terra/core/v2/app/keepers" - terraappparams "github.com/classic-terra/core/v2/app/params" + "github.com/classic-terra/core/v3/app/keepers" + terraappparams "github.com/classic-terra/core/v3/app/params" // upgrades - "github.com/classic-terra/core/v2/app/upgrades" - v2 "github.com/classic-terra/core/v2/app/upgrades/v2" - v3 "github.com/classic-terra/core/v2/app/upgrades/v3" - v4 "github.com/classic-terra/core/v2/app/upgrades/v4" - v5 "github.com/classic-terra/core/v2/app/upgrades/v5" - v6 "github.com/classic-terra/core/v2/app/upgrades/v6" - v6_1 "github.com/classic-terra/core/v2/app/upgrades/v6_1" - v7 "github.com/classic-terra/core/v2/app/upgrades/v7" - v8 "github.com/classic-terra/core/v2/app/upgrades/v8" - - customante "github.com/classic-terra/core/v2/custom/auth/ante" - custompost "github.com/classic-terra/core/v2/custom/auth/post" - customauthtx "github.com/classic-terra/core/v2/custom/auth/tx" + "github.com/classic-terra/core/v3/app/upgrades" + v2 "github.com/classic-terra/core/v3/app/upgrades/v2" + v3 "github.com/classic-terra/core/v3/app/upgrades/v3" + v4 "github.com/classic-terra/core/v3/app/upgrades/v4" + v5 "github.com/classic-terra/core/v3/app/upgrades/v5" + v6 "github.com/classic-terra/core/v3/app/upgrades/v6" + v6_1 "github.com/classic-terra/core/v3/app/upgrades/v6_1" + v7 "github.com/classic-terra/core/v3/app/upgrades/v7" + v8 "github.com/classic-terra/core/v3/app/upgrades/v8" + + customante "github.com/classic-terra/core/v3/custom/auth/ante" + custompost "github.com/classic-terra/core/v3/custom/auth/post" + customauthtx "github.com/classic-terra/core/v3/custom/auth/tx" "github.com/CosmWasm/wasmd/x/wasm" // unnamed import of statik for swagger UI support - _ "github.com/classic-terra/core/v2/client/docs/statik" + _ "github.com/classic-terra/core/v3/client/docs/statik" ) const appName = "TerraApp" diff --git a/app/encoding.go b/app/encoding.go index 4b9220a19..93a6eff9e 100644 --- a/app/encoding.go +++ b/app/encoding.go @@ -4,7 +4,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec/legacy" "github.com/cosmos/cosmos-sdk/std" - "github.com/classic-terra/core/v2/app/params" + "github.com/classic-terra/core/v3/app/params" ) var legacyCodecRegistered = false diff --git a/app/export.go b/app/export.go index bcc7e9820..6b8076eb2 100644 --- a/app/export.go +++ b/app/export.go @@ -12,7 +12,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/staking" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - oracletypes "github.com/classic-terra/core/v2/x/oracle/types" + oracletypes "github.com/classic-terra/core/v3/x/oracle/types" ) // ExportAppStateAndValidators exports the state of the application for a genesis diff --git a/app/keepers/keepers.go b/app/keepers/keepers.go index 0edebe78e..4ab54b927 100644 --- a/app/keepers/keepers.go +++ b/app/keepers/keepers.go @@ -57,17 +57,17 @@ import ( "github.com/CosmWasm/wasmd/x/wasm" wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" - customwasmkeeper "github.com/classic-terra/core/v2/custom/wasm/keeper" - terrawasm "github.com/classic-terra/core/v2/wasmbinding" - - dyncommkeeper "github.com/classic-terra/core/v2/x/dyncomm/keeper" - dyncommtypes "github.com/classic-terra/core/v2/x/dyncomm/types" - marketkeeper "github.com/classic-terra/core/v2/x/market/keeper" - markettypes "github.com/classic-terra/core/v2/x/market/types" - oraclekeeper "github.com/classic-terra/core/v2/x/oracle/keeper" - oracletypes "github.com/classic-terra/core/v2/x/oracle/types" - treasurykeeper "github.com/classic-terra/core/v2/x/treasury/keeper" - treasurytypes "github.com/classic-terra/core/v2/x/treasury/types" + customwasmkeeper "github.com/classic-terra/core/v3/custom/wasm/keeper" + terrawasm "github.com/classic-terra/core/v3/wasmbinding" + + dyncommkeeper "github.com/classic-terra/core/v3/x/dyncomm/keeper" + dyncommtypes "github.com/classic-terra/core/v3/x/dyncomm/types" + marketkeeper "github.com/classic-terra/core/v3/x/market/keeper" + markettypes "github.com/classic-terra/core/v3/x/market/types" + oraclekeeper "github.com/classic-terra/core/v3/x/oracle/keeper" + oracletypes "github.com/classic-terra/core/v3/x/oracle/types" + treasurykeeper "github.com/classic-terra/core/v3/x/treasury/keeper" + treasurytypes "github.com/classic-terra/core/v3/x/treasury/types" ) type AppKeepers struct { diff --git a/app/keepers/routers.go b/app/keepers/routers.go index 8c4025912..a735bf5f9 100644 --- a/app/keepers/routers.go +++ b/app/keepers/routers.go @@ -12,8 +12,8 @@ import ( ibcclienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" - "github.com/classic-terra/core/v2/x/treasury" - treasurytypes "github.com/classic-terra/core/v2/x/treasury/types" + "github.com/classic-terra/core/v3/x/treasury" + treasurytypes "github.com/classic-terra/core/v3/x/treasury/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" govv1beta1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" "github.com/cosmos/cosmos-sdk/x/params" diff --git a/app/legacy/migrate.go b/app/legacy/migrate.go index d6c94fe11..9bbe4357b 100644 --- a/app/legacy/migrate.go +++ b/app/legacy/migrate.go @@ -13,8 +13,8 @@ import ( "github.com/spf13/cobra" ibcxfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" "github.com/cosmos/ibc-go/v7/modules/core/exported" + ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" ibccoretypes "github.com/cosmos/ibc-go/v7/modules/core/types" "github.com/cosmos/cosmos-sdk/client" @@ -26,7 +26,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/genutil/types" staking "github.com/cosmos/cosmos-sdk/x/staking/types" - oracletypes "github.com/classic-terra/core/v2/x/oracle/types" + oracletypes "github.com/classic-terra/core/v3/x/oracle/types" ) const ( diff --git a/app/modules.go b/app/modules.go index a4c3d6c69..a7dfb5cb2 100644 --- a/app/modules.go +++ b/app/modules.go @@ -3,32 +3,32 @@ package app import ( "github.com/CosmWasm/wasmd/x/wasm" wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" - terraappparams "github.com/classic-terra/core/v2/app/params" - customauth "github.com/classic-terra/core/v2/custom/auth" - customauthsim "github.com/classic-terra/core/v2/custom/auth/simulation" - customauthz "github.com/classic-terra/core/v2/custom/authz" - custombank "github.com/classic-terra/core/v2/custom/bank" - customcrisis "github.com/classic-terra/core/v2/custom/crisis" - customdistr "github.com/classic-terra/core/v2/custom/distribution" - customevidence "github.com/classic-terra/core/v2/custom/evidence" - customfeegrant "github.com/classic-terra/core/v2/custom/feegrant" - customgov "github.com/classic-terra/core/v2/custom/gov" - custommint "github.com/classic-terra/core/v2/custom/mint" - customparams "github.com/classic-terra/core/v2/custom/params" - customslashing "github.com/classic-terra/core/v2/custom/slashing" - customstaking "github.com/classic-terra/core/v2/custom/staking" - customupgrade "github.com/classic-terra/core/v2/custom/upgrade" - customwasm "github.com/classic-terra/core/v2/custom/wasm" - "github.com/classic-terra/core/v2/x/dyncomm" - dyncommtypes "github.com/classic-terra/core/v2/x/dyncomm/types" - "github.com/classic-terra/core/v2/x/market" - markettypes "github.com/classic-terra/core/v2/x/market/types" - "github.com/classic-terra/core/v2/x/oracle" - oracletypes "github.com/classic-terra/core/v2/x/oracle/types" - "github.com/classic-terra/core/v2/x/treasury" - treasuryclient "github.com/classic-terra/core/v2/x/treasury/client" - treasurytypes "github.com/classic-terra/core/v2/x/treasury/types" - "github.com/classic-terra/core/v2/x/vesting" + terraappparams "github.com/classic-terra/core/v3/app/params" + customauth "github.com/classic-terra/core/v3/custom/auth" + customauthsim "github.com/classic-terra/core/v3/custom/auth/simulation" + customauthz "github.com/classic-terra/core/v3/custom/authz" + custombank "github.com/classic-terra/core/v3/custom/bank" + customcrisis "github.com/classic-terra/core/v3/custom/crisis" + customdistr "github.com/classic-terra/core/v3/custom/distribution" + customevidence "github.com/classic-terra/core/v3/custom/evidence" + customfeegrant "github.com/classic-terra/core/v3/custom/feegrant" + customgov "github.com/classic-terra/core/v3/custom/gov" + custommint "github.com/classic-terra/core/v3/custom/mint" + customparams "github.com/classic-terra/core/v3/custom/params" + customslashing "github.com/classic-terra/core/v3/custom/slashing" + customstaking "github.com/classic-terra/core/v3/custom/staking" + customupgrade "github.com/classic-terra/core/v3/custom/upgrade" + customwasm "github.com/classic-terra/core/v3/custom/wasm" + "github.com/classic-terra/core/v3/x/dyncomm" + dyncommtypes "github.com/classic-terra/core/v3/x/dyncomm/types" + "github.com/classic-terra/core/v3/x/market" + markettypes "github.com/classic-terra/core/v3/x/market/types" + "github.com/classic-terra/core/v3/x/oracle" + oracletypes "github.com/classic-terra/core/v3/x/oracle/types" + "github.com/classic-terra/core/v3/x/treasury" + treasuryclient "github.com/classic-terra/core/v3/x/treasury/client" + treasurytypes "github.com/classic-terra/core/v3/x/treasury/types" + "github.com/classic-terra/core/v3/x/vesting" "github.com/cosmos/cosmos-sdk/types/module" "github.com/cosmos/cosmos-sdk/x/auth" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" @@ -74,12 +74,12 @@ import ( transfer "github.com/cosmos/ibc-go/v7/modules/apps/transfer" ibctransfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" ibc "github.com/cosmos/ibc-go/v7/modules/core" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" ibcclientclient "github.com/cosmos/ibc-go/v7/modules/core/02-client/client" ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" // unnamed import of statik for swagger UI support - _ "github.com/classic-terra/core/v2/client/docs/statik" + _ "github.com/classic-terra/core/v3/client/docs/statik" ) var ( diff --git a/app/sim_test.go b/app/sim_test.go index 9c9dcd200..fb6c3e87d 100644 --- a/app/sim_test.go +++ b/app/sim_test.go @@ -9,8 +9,8 @@ import ( "github.com/CosmWasm/wasmd/x/wasm" wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" - terraapp "github.com/classic-terra/core/v2/app" - helpers "github.com/classic-terra/core/v2/app/testing" + terraapp "github.com/classic-terra/core/v3/app" + helpers "github.com/classic-terra/core/v3/app/testing" dbm "github.com/cometbft/cometbft-db" "github.com/cometbft/cometbft/libs/log" diff --git a/app/testing/test_suite.go b/app/testing/test_suite.go index 6b44168e9..aa3ea943d 100644 --- a/app/testing/test_suite.go +++ b/app/testing/test_suite.go @@ -7,12 +7,12 @@ import ( "github.com/CosmWasm/wasmd/x/wasm" wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" - "github.com/classic-terra/core/v2/app" - appparams "github.com/classic-terra/core/v2/app/params" - dyncommtypes "github.com/classic-terra/core/v2/x/dyncomm/types" - markettypes "github.com/classic-terra/core/v2/x/market/types" - oracletypes "github.com/classic-terra/core/v2/x/oracle/types" - treasurytypes "github.com/classic-terra/core/v2/x/treasury/types" + "github.com/classic-terra/core/v3/app" + appparams "github.com/classic-terra/core/v3/app/params" + dyncommtypes "github.com/classic-terra/core/v3/x/dyncomm/types" + markettypes "github.com/classic-terra/core/v3/x/market/types" + oracletypes "github.com/classic-terra/core/v3/x/oracle/types" + treasurytypes "github.com/classic-terra/core/v3/x/treasury/types" dbm "github.com/cometbft/cometbft-db" abci "github.com/cometbft/cometbft/abci/types" "github.com/cometbft/cometbft/libs/log" diff --git a/app/upgrades/forks/constants.go b/app/upgrades/forks/constants.go index ac3b6028e..8fac68dc6 100644 --- a/app/upgrades/forks/constants.go +++ b/app/upgrades/forks/constants.go @@ -1,8 +1,8 @@ package forks import ( - "github.com/classic-terra/core/v2/app/upgrades" - "github.com/classic-terra/core/v2/types/fork" + "github.com/classic-terra/core/v3/app/upgrades" + "github.com/classic-terra/core/v3/types/fork" ) var DisableSwapFork = upgrades.Fork{ diff --git a/app/upgrades/forks/forks.go b/app/upgrades/forks/forks.go index 47cc1268e..2b26f2236 100644 --- a/app/upgrades/forks/forks.go +++ b/app/upgrades/forks/forks.go @@ -3,8 +3,8 @@ package forks import ( "fmt" - "github.com/classic-terra/core/v2/app/keepers" - core "github.com/classic-terra/core/v2/types" + "github.com/classic-terra/core/v3/app/keepers" + core "github.com/classic-terra/core/v3/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" ibctransfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" diff --git a/app/upgrades/types.go b/app/upgrades/types.go index bc7a78547..d1634463f 100644 --- a/app/upgrades/types.go +++ b/app/upgrades/types.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - "github.com/classic-terra/core/v2/app/keepers" + "github.com/classic-terra/core/v3/app/keepers" ) // BaseAppParamManager defines an interrace that BaseApp is expected to fullfil diff --git a/app/upgrades/v2/constants.go b/app/upgrades/v2/constants.go index 35be5dd93..08d5d5d1f 100644 --- a/app/upgrades/v2/constants.go +++ b/app/upgrades/v2/constants.go @@ -1,7 +1,7 @@ package v2 import ( - "github.com/classic-terra/core/v2/app/upgrades" + "github.com/classic-terra/core/v3/app/upgrades" store "github.com/cosmos/cosmos-sdk/store/types" ) diff --git a/app/upgrades/v2/upgrades.go b/app/upgrades/v2/upgrades.go index 81a8cb268..a2d0c66ba 100644 --- a/app/upgrades/v2/upgrades.go +++ b/app/upgrades/v2/upgrades.go @@ -1,8 +1,8 @@ package v2 import ( - "github.com/classic-terra/core/v2/app/keepers" - "github.com/classic-terra/core/v2/app/upgrades" + "github.com/classic-terra/core/v3/app/keepers" + "github.com/classic-terra/core/v3/app/upgrades" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" diff --git a/app/upgrades/v3/constants.go b/app/upgrades/v3/constants.go index 772869b31..f1261f221 100644 --- a/app/upgrades/v3/constants.go +++ b/app/upgrades/v3/constants.go @@ -1,7 +1,7 @@ package v3 import ( - "github.com/classic-terra/core/v2/app/upgrades" + "github.com/classic-terra/core/v3/app/upgrades" store "github.com/cosmos/cosmos-sdk/store/types" ) diff --git a/app/upgrades/v3/upgrades.go b/app/upgrades/v3/upgrades.go index f3db6acd5..1e24f6e88 100644 --- a/app/upgrades/v3/upgrades.go +++ b/app/upgrades/v3/upgrades.go @@ -1,8 +1,8 @@ package v3 import ( - "github.com/classic-terra/core/v2/app/keepers" - "github.com/classic-terra/core/v2/app/upgrades" + "github.com/classic-terra/core/v3/app/keepers" + "github.com/classic-terra/core/v3/app/upgrades" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" diff --git a/app/upgrades/v4/constants.go b/app/upgrades/v4/constants.go index 96283ec57..83e56dd2d 100644 --- a/app/upgrades/v4/constants.go +++ b/app/upgrades/v4/constants.go @@ -1,7 +1,7 @@ package v4 import ( - "github.com/classic-terra/core/v2/app/upgrades" + "github.com/classic-terra/core/v3/app/upgrades" store "github.com/cosmos/cosmos-sdk/store/types" icahosttypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types" ) diff --git a/app/upgrades/v4/upgrades.go b/app/upgrades/v4/upgrades.go index 7677e452a..fbd92256a 100644 --- a/app/upgrades/v4/upgrades.go +++ b/app/upgrades/v4/upgrades.go @@ -1,8 +1,8 @@ package v4 import ( - "github.com/classic-terra/core/v2/app/keepers" - "github.com/classic-terra/core/v2/app/upgrades" + "github.com/classic-terra/core/v3/app/keepers" + "github.com/classic-terra/core/v3/app/upgrades" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" diff --git a/app/upgrades/v5/constants.go b/app/upgrades/v5/constants.go index 6d67ffb84..364ea5688 100644 --- a/app/upgrades/v5/constants.go +++ b/app/upgrades/v5/constants.go @@ -1,7 +1,7 @@ package v5 import ( - "github.com/classic-terra/core/v2/app/upgrades" + "github.com/classic-terra/core/v3/app/upgrades" store "github.com/cosmos/cosmos-sdk/store/types" icacontrollertypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" diff --git a/app/upgrades/v5/upgrades.go b/app/upgrades/v5/upgrades.go index 7b229753c..34756c5d1 100644 --- a/app/upgrades/v5/upgrades.go +++ b/app/upgrades/v5/upgrades.go @@ -1,8 +1,8 @@ package v5 import ( - "github.com/classic-terra/core/v2/app/keepers" - "github.com/classic-terra/core/v2/app/upgrades" + "github.com/classic-terra/core/v3/app/keepers" + "github.com/classic-terra/core/v3/app/upgrades" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" diff --git a/app/upgrades/v6/constants.go b/app/upgrades/v6/constants.go index 2fbea9a58..55f8757ca 100644 --- a/app/upgrades/v6/constants.go +++ b/app/upgrades/v6/constants.go @@ -1,8 +1,8 @@ package v6 import ( - "github.com/classic-terra/core/v2/app/upgrades" - dyncommtypes "github.com/classic-terra/core/v2/x/dyncomm/types" + "github.com/classic-terra/core/v3/app/upgrades" + dyncommtypes "github.com/classic-terra/core/v3/x/dyncomm/types" store "github.com/cosmos/cosmos-sdk/store/types" ) diff --git a/app/upgrades/v6/upgrades.go b/app/upgrades/v6/upgrades.go index 36892573f..b4300660a 100644 --- a/app/upgrades/v6/upgrades.go +++ b/app/upgrades/v6/upgrades.go @@ -1,8 +1,8 @@ package v6 import ( - "github.com/classic-terra/core/v2/app/keepers" - "github.com/classic-terra/core/v2/app/upgrades" + "github.com/classic-terra/core/v3/app/keepers" + "github.com/classic-terra/core/v3/app/upgrades" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" diff --git a/app/upgrades/v6_1/constants.go b/app/upgrades/v6_1/constants.go index efcf97400..2584f0ffa 100644 --- a/app/upgrades/v6_1/constants.go +++ b/app/upgrades/v6_1/constants.go @@ -1,7 +1,7 @@ package v61 import ( - "github.com/classic-terra/core/v2/app/upgrades" + "github.com/classic-terra/core/v3/app/upgrades" store "github.com/cosmos/cosmos-sdk/store/types" ) diff --git a/app/upgrades/v6_1/upgrades.go b/app/upgrades/v6_1/upgrades.go index 3aabe6284..8a3f63717 100644 --- a/app/upgrades/v6_1/upgrades.go +++ b/app/upgrades/v6_1/upgrades.go @@ -1,8 +1,8 @@ package v61 import ( - "github.com/classic-terra/core/v2/app/keepers" - "github.com/classic-terra/core/v2/app/upgrades" + "github.com/classic-terra/core/v3/app/keepers" + "github.com/classic-terra/core/v3/app/upgrades" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" diff --git a/app/upgrades/v7/constants.go b/app/upgrades/v7/constants.go index aff95ffc1..a26a055c0 100644 --- a/app/upgrades/v7/constants.go +++ b/app/upgrades/v7/constants.go @@ -1,9 +1,9 @@ package v7 import ( - "github.com/classic-terra/core/v2/app/upgrades" - ibchookstypes "github.com/cosmos/ibc-apps/modules/ibc-hooks/v7/types" + "github.com/classic-terra/core/v3/app/upgrades" store "github.com/cosmos/cosmos-sdk/store/types" + ibchookstypes "github.com/cosmos/ibc-apps/modules/ibc-hooks/v7/types" ) const UpgradeName = "v7" diff --git a/app/upgrades/v7/upgrades.go b/app/upgrades/v7/upgrades.go index 950a70059..43e84544d 100644 --- a/app/upgrades/v7/upgrades.go +++ b/app/upgrades/v7/upgrades.go @@ -1,8 +1,8 @@ package v7 import ( - "github.com/classic-terra/core/v2/app/keepers" - "github.com/classic-terra/core/v2/app/upgrades" + "github.com/classic-terra/core/v3/app/keepers" + "github.com/classic-terra/core/v3/app/upgrades" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" diff --git a/app/upgrades/v8/constants.go b/app/upgrades/v8/constants.go index be89bb0cf..457bcd370 100644 --- a/app/upgrades/v8/constants.go +++ b/app/upgrades/v8/constants.go @@ -1,7 +1,7 @@ package v8 import ( - "github.com/classic-terra/core/v2/app/upgrades" + "github.com/classic-terra/core/v3/app/upgrades" store "github.com/cosmos/cosmos-sdk/store/types" consensustypes "github.com/cosmos/cosmos-sdk/x/consensus/types" crisistpyes "github.com/cosmos/cosmos-sdk/x/crisis/types" diff --git a/app/upgrades/v8/upgrades.go b/app/upgrades/v8/upgrades.go index cc3c47f8c..36bb20852 100644 --- a/app/upgrades/v8/upgrades.go +++ b/app/upgrades/v8/upgrades.go @@ -2,8 +2,8 @@ package v8 import ( wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" - "github.com/classic-terra/core/v2/app/keepers" - "github.com/classic-terra/core/v2/app/upgrades" + "github.com/classic-terra/core/v3/app/keepers" + "github.com/classic-terra/core/v3/app/upgrades" "github.com/cosmos/cosmos-sdk/baseapp" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" diff --git a/cmd/terrad/genaccounts.go b/cmd/terrad/genaccounts.go index ac1cac29b..c7339713a 100644 --- a/cmd/terrad/genaccounts.go +++ b/cmd/terrad/genaccounts.go @@ -21,7 +21,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/genutil" genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types" - vestingtypes "github.com/classic-terra/core/v2/x/vesting/types" + vestingtypes "github.com/classic-terra/core/v3/x/vesting/types" ) const ( diff --git a/cmd/terrad/main.go b/cmd/terrad/main.go index 4f4a0656d..26b6bfe53 100644 --- a/cmd/terrad/main.go +++ b/cmd/terrad/main.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/server" svrcmd "github.com/cosmos/cosmos-sdk/server/cmd" - terraapp "github.com/classic-terra/core/v2/app" + terraapp "github.com/classic-terra/core/v3/app" ) func main() { diff --git a/cmd/terrad/root.go b/cmd/terrad/root.go index 3360c375b..874be47a3 100644 --- a/cmd/terrad/root.go +++ b/cmd/terrad/root.go @@ -37,11 +37,11 @@ import ( genutilcli "github.com/cosmos/cosmos-sdk/x/genutil/client/cli" genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types" - terraapp "github.com/classic-terra/core/v2/app" - terralegacy "github.com/classic-terra/core/v2/app/legacy" - "github.com/classic-terra/core/v2/app/params" - authcustomcli "github.com/classic-terra/core/v2/custom/auth/client/cli" - core "github.com/classic-terra/core/v2/types" + terraapp "github.com/classic-terra/core/v3/app" + terralegacy "github.com/classic-terra/core/v3/app/legacy" + "github.com/classic-terra/core/v3/app/params" + authcustomcli "github.com/classic-terra/core/v3/custom/auth/client/cli" + core "github.com/classic-terra/core/v3/types" "github.com/CosmWasm/wasmd/x/wasm" wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" diff --git a/cmd/terrad/testnet.go b/cmd/terrad/testnet.go index dfe373f8a..382e8547d 100644 --- a/cmd/terrad/testnet.go +++ b/cmd/terrad/testnet.go @@ -37,7 +37,7 @@ import ( govv1beta1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - core "github.com/classic-terra/core/v2/types" + core "github.com/classic-terra/core/v3/types" ) var ( diff --git a/custom/auth/ante/ante.go b/custom/auth/ante/ante.go index 1b78b6014..2574d84ef 100644 --- a/custom/auth/ante/ante.go +++ b/custom/auth/ante/ante.go @@ -1,8 +1,8 @@ package ante import ( - dyncommante "github.com/classic-terra/core/v2/x/dyncomm/ante" - dyncommkeeper "github.com/classic-terra/core/v2/x/dyncomm/keeper" + dyncommante "github.com/classic-terra/core/v3/x/dyncomm/ante" + dyncommkeeper "github.com/classic-terra/core/v3/x/dyncomm/keeper" stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" ibcante "github.com/cosmos/ibc-go/v7/modules/core/ante" ibckeeper "github.com/cosmos/ibc-go/v7/modules/core/keeper" diff --git a/custom/auth/ante/ante_test.go b/custom/auth/ante/ante_test.go index b0c5d7a82..16773f8e2 100644 --- a/custom/auth/ante/ante_test.go +++ b/custom/auth/ante/ante_test.go @@ -21,8 +21,8 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" distributiontypes "github.com/cosmos/cosmos-sdk/x/distribution/types" - terraapp "github.com/classic-terra/core/v2/app" - treasurytypes "github.com/classic-terra/core/v2/x/treasury/types" + terraapp "github.com/classic-terra/core/v3/app" + treasurytypes "github.com/classic-terra/core/v3/x/treasury/types" "github.com/CosmWasm/wasmd/x/wasm" ) diff --git a/custom/auth/ante/fee_burntax.go b/custom/auth/ante/fee_burntax.go index 900a76918..c02ea3e20 100644 --- a/custom/auth/ante/fee_burntax.go +++ b/custom/auth/ante/fee_burntax.go @@ -5,7 +5,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/cosmos/cosmos-sdk/x/auth/types" - treasury "github.com/classic-terra/core/v2/x/treasury/types" + treasury "github.com/classic-terra/core/v3/x/treasury/types" ) // BurnTaxSplit splits diff --git a/custom/auth/ante/fee_tax.go b/custom/auth/ante/fee_tax.go index 43abe14bb..b10f5e750 100644 --- a/custom/auth/ante/fee_tax.go +++ b/custom/auth/ante/fee_tax.go @@ -9,8 +9,8 @@ import ( authz "github.com/cosmos/cosmos-sdk/x/authz" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - marketexported "github.com/classic-terra/core/v2/x/market/exported" - oracleexported "github.com/classic-terra/core/v2/x/oracle/exported" + marketexported "github.com/classic-terra/core/v3/x/market/exported" + oracleexported "github.com/classic-terra/core/v3/x/oracle/exported" ) var IBCRegexp = regexp.MustCompile("^ibc/[a-fA-F0-9]{64}$") diff --git a/custom/auth/ante/fee_test.go b/custom/auth/ante/fee_test.go index b92ff3370..50dcc8c4c 100644 --- a/custom/auth/ante/fee_test.go +++ b/custom/auth/ante/fee_test.go @@ -18,10 +18,10 @@ import ( wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" - "github.com/classic-terra/core/v2/custom/auth/ante" - core "github.com/classic-terra/core/v2/types" - markettypes "github.com/classic-terra/core/v2/x/market/types" - oracletypes "github.com/classic-terra/core/v2/x/oracle/types" + "github.com/classic-terra/core/v3/custom/auth/ante" + core "github.com/classic-terra/core/v3/types" + markettypes "github.com/classic-terra/core/v3/x/market/types" + oracletypes "github.com/classic-terra/core/v3/x/oracle/types" ) func (s *AnteTestSuite) TestDeductFeeDecorator_ZeroGas() { @@ -507,7 +507,7 @@ func (s *AnteTestSuite) TestEnsureMempoolFeesAuthzExec() { s.Require().NoError(err, "Decorator should not have errored on fee higher than local gasPrice") } -// go test -v -run ^TestAnteTestSuite/TestTaxExemption$ github.com/classic-terra/core/v2/custom/auth/ante +// go test -v -run ^TestAnteTestSuite/TestTaxExemption$ github.com/classic-terra/core/v3/custom/auth/ante func (s *AnteTestSuite) TestTaxExemption() { // keys and addresses var privs []cryptotypes.PrivKey @@ -730,7 +730,7 @@ func (s *AnteTestSuite) TestTaxExemption() { } } -// go test -v -run ^TestAnteTestSuite/TestBurnSplitTax$ github.com/classic-terra/core/v2/custom/auth/ante +// go test -v -run ^TestAnteTestSuite/TestBurnSplitTax$ github.com/classic-terra/core/v3/custom/auth/ante func (s *AnteTestSuite) TestBurnSplitTax() { s.runBurnSplitTaxTest(sdk.NewDecWithPrec(1, 0)) // 100% s.runBurnSplitTaxTest(sdk.NewDecWithPrec(1, 1)) // 10% @@ -833,7 +833,7 @@ func (s *AnteTestSuite) runBurnSplitTaxTest(burnSplitRate sdk.Dec) { ) } -// go test -v -run ^TestAnteTestSuite/TestEnsureIBCUntaxed$ github.com/classic-terra/core/v2/custom/auth/ante +// go test -v -run ^TestAnteTestSuite/TestEnsureIBCUntaxed$ github.com/classic-terra/core/v3/custom/auth/ante // TestEnsureIBCUntaxed tests that IBC transactions are not taxed, but fee is still deducted func (s *AnteTestSuite) TestEnsureIBCUntaxed() { s.SetupTest(true) // setup @@ -883,7 +883,7 @@ func (s *AnteTestSuite) TestEnsureIBCUntaxed() { s.Require().True(taxProceeds.Empty()) } -// go test -v -run ^TestAnteTestSuite/TestOracleZeroFee$ github.com/classic-terra/core/v2/custom/auth/ante +// go test -v -run ^TestAnteTestSuite/TestOracleZeroFee$ github.com/classic-terra/core/v3/custom/auth/ante func (s *AnteTestSuite) TestOracleZeroFee() { s.SetupTest(true) // setup s.txBuilder = s.clientCtx.TxConfig.NewTxBuilder() diff --git a/custom/auth/ante/integration_test.go b/custom/auth/ante/integration_test.go index 801a0a964..489bbf333 100644 --- a/custom/auth/ante/integration_test.go +++ b/custom/auth/ante/integration_test.go @@ -13,12 +13,12 @@ import ( wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" - customante "github.com/classic-terra/core/v2/custom/auth/ante" - core "github.com/classic-terra/core/v2/types" - treasurytypes "github.com/classic-terra/core/v2/x/treasury/types" + customante "github.com/classic-terra/core/v3/custom/auth/ante" + core "github.com/classic-terra/core/v3/types" + treasurytypes "github.com/classic-terra/core/v3/x/treasury/types" ) -// go test -v -run ^TestAnteTestSuite/TestIntegrationTaxExemption$ github.com/classic-terra/core/v2/custom/auth/ante +// go test -v -run ^TestAnteTestSuite/TestIntegrationTaxExemption$ github.com/classic-terra/core/v3/custom/auth/ante func (s *AnteTestSuite) TestIntegrationTaxExemption() { // keys and addresses var privs []cryptotypes.PrivKey diff --git a/custom/auth/ante/min_initial_deposit.go b/custom/auth/ante/min_initial_deposit.go index bf0480db4..236310c5d 100644 --- a/custom/auth/ante/min_initial_deposit.go +++ b/custom/auth/ante/min_initial_deposit.go @@ -3,7 +3,7 @@ package ante import ( "fmt" - core "github.com/classic-terra/core/v2/types" + core "github.com/classic-terra/core/v3/types" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" govkeeper "github.com/cosmos/cosmos-sdk/x/gov/keeper" diff --git a/custom/auth/ante/min_initial_deposit_test.go b/custom/auth/ante/min_initial_deposit_test.go index 8a26696cb..73f13b58f 100644 --- a/custom/auth/ante/min_initial_deposit_test.go +++ b/custom/auth/ante/min_initial_deposit_test.go @@ -9,8 +9,8 @@ import ( // banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/classic-terra/core/v2/custom/auth/ante" - core "github.com/classic-terra/core/v2/types" + "github.com/classic-terra/core/v3/custom/auth/ante" + core "github.com/classic-terra/core/v3/types" // core "github.com/terra-money/core/types" // treasury "github.com/terra-money/core/x/treasury/types" diff --git a/custom/auth/ante/spamming_prevention.go b/custom/auth/ante/spamming_prevention.go index ea954bdee..1081e4923 100644 --- a/custom/auth/ante/spamming_prevention.go +++ b/custom/auth/ante/spamming_prevention.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - oracleexported "github.com/classic-terra/core/v2/x/oracle/exported" + oracleexported "github.com/classic-terra/core/v3/x/oracle/exported" ) // SpammingPreventionDecorator will check if the transaction's gas is smaller than diff --git a/custom/auth/ante/spamming_prevention_test.go b/custom/auth/ante/spamming_prevention_test.go index 577232a70..3e301899c 100644 --- a/custom/auth/ante/spamming_prevention_test.go +++ b/custom/auth/ante/spamming_prevention_test.go @@ -6,8 +6,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/classic-terra/core/v2/custom/auth/ante" - oracletypes "github.com/classic-terra/core/v2/x/oracle/types" + "github.com/classic-terra/core/v3/custom/auth/ante" + oracletypes "github.com/classic-terra/core/v3/x/oracle/types" ) func (suite *AnteTestSuite) TestOracleSpamming() { diff --git a/custom/auth/client/cli/estimate_fee.go b/custom/auth/client/cli/estimate_fee.go index aa0666934..921c0e6d7 100644 --- a/custom/auth/client/cli/estimate_fee.go +++ b/custom/auth/client/cli/estimate_fee.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" authclient "github.com/cosmos/cosmos-sdk/x/auth/client" - feeutils "github.com/classic-terra/core/v2/custom/auth/client/utils" + feeutils "github.com/classic-terra/core/v3/custom/auth/client/utils" ) // GetTxFeesEstimateCommand will create a send tx and sign it with the given key. diff --git a/custom/auth/client/utils/feeutils.go b/custom/auth/client/utils/feeutils.go index 43d43c1ab..9ad060d5b 100644 --- a/custom/auth/client/utils/feeutils.go +++ b/custom/auth/client/utils/feeutils.go @@ -14,8 +14,8 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" wasmexported "github.com/CosmWasm/wasmd/x/wasm" - marketexported "github.com/classic-terra/core/v2/x/market/exported" - treasuryexported "github.com/classic-terra/core/v2/x/treasury/exported" + marketexported "github.com/classic-terra/core/v3/x/market/exported" + treasuryexported "github.com/classic-terra/core/v3/x/treasury/exported" ) type ( diff --git a/custom/auth/module.go b/custom/auth/module.go index 1a47b25d4..37f56b412 100644 --- a/custom/auth/module.go +++ b/custom/auth/module.go @@ -8,9 +8,8 @@ import ( "github.com/cosmos/cosmos-sdk/x/auth/keeper" "github.com/cosmos/cosmos-sdk/x/auth/types" - - customsim "github.com/classic-terra/core/v2/custom/auth/simulation" - customtypes "github.com/classic-terra/core/v2/custom/auth/types" + customsim "github.com/classic-terra/core/v3/custom/auth/simulation" + customtypes "github.com/classic-terra/core/v3/custom/auth/types" ) var ( diff --git a/custom/auth/post/post.go b/custom/auth/post/post.go index cda9e94ec..f410569dc 100644 --- a/custom/auth/post/post.go +++ b/custom/auth/post/post.go @@ -1,8 +1,8 @@ package post import ( - dyncommkeeper "github.com/classic-terra/core/v2/x/dyncomm/keeper" - dyncommpost "github.com/classic-terra/core/v2/x/dyncomm/post" + dyncommkeeper "github.com/classic-terra/core/v3/x/dyncomm/keeper" + dyncommpost "github.com/classic-terra/core/v3/x/dyncomm/post" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/custom/auth/simulation/genesis.go b/custom/auth/simulation/genesis.go index 3932a1938..dd3ce45c0 100644 --- a/custom/auth/simulation/genesis.go +++ b/custom/auth/simulation/genesis.go @@ -12,8 +12,8 @@ import ( "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/auth/types" - core "github.com/classic-terra/core/v2/types" - customvestingtypes "github.com/classic-terra/core/v2/x/vesting/types" + core "github.com/classic-terra/core/v3/types" + customvestingtypes "github.com/classic-terra/core/v3/x/vesting/types" ) // Simulation parameter constants diff --git a/custom/auth/tx/service.go b/custom/auth/tx/service.go index 06997e42d..63710d04e 100644 --- a/custom/auth/tx/service.go +++ b/custom/auth/tx/service.go @@ -8,7 +8,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - customante "github.com/classic-terra/core/v2/custom/auth/ante" + customante "github.com/classic-terra/core/v3/custom/auth/ante" "github.com/cosmos/cosmos-sdk/client" codectypes "github.com/cosmos/cosmos-sdk/codec/types" diff --git a/custom/authz/client/cli/tx.go b/custom/authz/client/cli/tx.go index 5548087ab..1739b43c2 100644 --- a/custom/authz/client/cli/tx.go +++ b/custom/authz/client/cli/tx.go @@ -15,7 +15,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/authz" "github.com/cosmos/cosmos-sdk/x/authz/client/cli" - feeutils "github.com/classic-terra/core/v2/custom/auth/client/utils" + feeutils "github.com/classic-terra/core/v3/custom/auth/client/utils" ) // GetTxCmd returns the transaction commands for this module diff --git a/custom/authz/module.go b/custom/authz/module.go index 7c3b91725..10e36cfef 100644 --- a/custom/authz/module.go +++ b/custom/authz/module.go @@ -7,8 +7,8 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" authz "github.com/cosmos/cosmos-sdk/x/authz/module" - customcli "github.com/classic-terra/core/v2/custom/authz/client/cli" - customtypes "github.com/classic-terra/core/v2/custom/authz/types" + customcli "github.com/classic-terra/core/v3/custom/authz/client/cli" + customtypes "github.com/classic-terra/core/v3/custom/authz/types" ) var _ module.AppModuleBasic = AppModuleBasic{} diff --git a/custom/bank/client/cli/tx.go b/custom/bank/client/cli/tx.go index 08c06fa34..f10b05155 100644 --- a/custom/bank/client/cli/tx.go +++ b/custom/bank/client/cli/tx.go @@ -11,7 +11,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/x/bank/types" - feeutils "github.com/classic-terra/core/v2/custom/auth/client/utils" + feeutils "github.com/classic-terra/core/v3/custom/auth/client/utils" ) var FlagSplit = "split" diff --git a/custom/bank/module.go b/custom/bank/module.go index a055a9046..e651b647b 100644 --- a/custom/bank/module.go +++ b/custom/bank/module.go @@ -7,13 +7,13 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/bank" + "github.com/cosmos/cosmos-sdk/x/bank/exported" "github.com/cosmos/cosmos-sdk/x/bank/keeper" "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/cosmos/cosmos-sdk/x/bank/exported" - customcli "github.com/classic-terra/core/v2/custom/bank/client/cli" - customsim "github.com/classic-terra/core/v2/custom/bank/simulation" - customtypes "github.com/classic-terra/core/v2/custom/bank/types" + customcli "github.com/classic-terra/core/v3/custom/bank/client/cli" + customsim "github.com/classic-terra/core/v3/custom/bank/simulation" + customtypes "github.com/classic-terra/core/v3/custom/bank/types" ) var ( diff --git a/custom/bank/simulation/genesis.go b/custom/bank/simulation/genesis.go index ed940391d..431ba26a7 100644 --- a/custom/bank/simulation/genesis.go +++ b/custom/bank/simulation/genesis.go @@ -10,7 +10,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/bank/simulation" "github.com/cosmos/cosmos-sdk/x/bank/types" - core "github.com/classic-terra/core/v2/types" + core "github.com/classic-terra/core/v3/types" ) // RandomGenesisBalances returns a slice of account balances. Each account has @@ -54,10 +54,10 @@ func RandomizedGenState(simState *module.SimulationState) { ) bankGenesis := types.GenesisState{ - Params: types.NewParams(defaultSendEnabledParam), - Balances: RandomGenesisBalances(simState), - Supply: supply, - SendEnabled: sendEnabledParams, + Params: types.NewParams(defaultSendEnabledParam), + Balances: RandomGenesisBalances(simState), + Supply: supply, + SendEnabled: sendEnabledParams, } paramsBytes, err := json.MarshalIndent(&bankGenesis.Params, "", " ") diff --git a/custom/crisis/module.go b/custom/crisis/module.go index 05e466add..ece2a7e00 100644 --- a/custom/crisis/module.go +++ b/custom/crisis/module.go @@ -8,8 +8,8 @@ import ( "github.com/cosmos/cosmos-sdk/x/crisis" "github.com/cosmos/cosmos-sdk/x/crisis/types" - customtypes "github.com/classic-terra/core/v2/custom/crisis/types" - core "github.com/classic-terra/core/v2/types" + customtypes "github.com/classic-terra/core/v3/custom/crisis/types" + core "github.com/classic-terra/core/v3/types" ) var _ module.AppModuleBasic = AppModuleBasic{} diff --git a/custom/distribution/module.go b/custom/distribution/module.go index f031fead0..70a4e92b0 100644 --- a/custom/distribution/module.go +++ b/custom/distribution/module.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/distribution" "github.com/cosmos/cosmos-sdk/x/distribution/types" - customtypes "github.com/classic-terra/core/v2/custom/distribution/types" + customtypes "github.com/classic-terra/core/v3/custom/distribution/types" ) var _ module.AppModuleBasic = AppModuleBasic{} diff --git a/custom/distribution/types/codec.go b/custom/distribution/types/codec.go index 11c822fdc..ca563fcb1 100644 --- a/custom/distribution/types/codec.go +++ b/custom/distribution/types/codec.go @@ -6,7 +6,7 @@ import ( cryptocodec "github.com/cosmos/cosmos-sdk/crypto/codec" "github.com/cosmos/cosmos-sdk/x/distribution/types" - govtypes "github.com/classic-terra/core/v2/custom/gov/types" + govtypes "github.com/classic-terra/core/v3/custom/gov/types" ) // RegisterLegacyAminoCodec registers the necessary x/distribution interfaces and concrete types diff --git a/custom/evidence/module.go b/custom/evidence/module.go index 45e026b2d..73c85f1d8 100644 --- a/custom/evidence/module.go +++ b/custom/evidence/module.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/evidence" "github.com/cosmos/cosmos-sdk/x/evidence/types" - customtypes "github.com/classic-terra/core/v2/custom/evidence/types" + customtypes "github.com/classic-terra/core/v3/custom/evidence/types" ) var _ module.AppModuleBasic = AppModuleBasic{} diff --git a/custom/feegrant/module.go b/custom/feegrant/module.go index c0323b335..f59139f9a 100644 --- a/custom/feegrant/module.go +++ b/custom/feegrant/module.go @@ -5,7 +5,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" feegrant "github.com/cosmos/cosmos-sdk/x/feegrant/module" - customtypes "github.com/classic-terra/core/v2/custom/feegrant/types" + customtypes "github.com/classic-terra/core/v3/custom/feegrant/types" ) var _ module.AppModuleBasic = AppModuleBasic{} diff --git a/custom/gov/module.go b/custom/gov/module.go index c42d98cd6..360d2a13f 100644 --- a/custom/gov/module.go +++ b/custom/gov/module.go @@ -10,8 +10,8 @@ import ( govcodec "github.com/cosmos/cosmos-sdk/x/gov/codec" v1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" - customtypes "github.com/classic-terra/core/v2/custom/gov/types" - core "github.com/classic-terra/core/v2/types" + customtypes "github.com/classic-terra/core/v3/custom/gov/types" + core "github.com/classic-terra/core/v3/types" ) var _ module.AppModuleBasic = AppModuleBasic{} diff --git a/custom/mint/module.go b/custom/mint/module.go index 1a500f8a3..f69677f7c 100644 --- a/custom/mint/module.go +++ b/custom/mint/module.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/mint" "github.com/cosmos/cosmos-sdk/x/mint/types" - core "github.com/classic-terra/core/v2/types" + core "github.com/classic-terra/core/v3/types" ) var _ module.AppModuleBasic = AppModuleBasic{} diff --git a/custom/params/module.go b/custom/params/module.go index d03dea6e9..6b22fdb2a 100644 --- a/custom/params/module.go +++ b/custom/params/module.go @@ -5,7 +5,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" "github.com/cosmos/cosmos-sdk/x/params" - customtypes "github.com/classic-terra/core/v2/custom/params/types" + customtypes "github.com/classic-terra/core/v3/custom/params/types" ) var _ module.AppModuleBasic = AppModuleBasic{} diff --git a/custom/params/types/codec.go b/custom/params/types/codec.go index 16ac6d2d8..8548a0b6e 100644 --- a/custom/params/types/codec.go +++ b/custom/params/types/codec.go @@ -4,7 +4,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec" "github.com/cosmos/cosmos-sdk/x/params/types/proposal" - govtypes "github.com/classic-terra/core/v2/custom/gov/types" + govtypes "github.com/classic-terra/core/v3/custom/gov/types" ) // RegisterLegacyAminoCodec registers all necessary param module types with a given LegacyAmino codec. diff --git a/custom/slashing/module.go b/custom/slashing/module.go index 4c6391f62..da339232e 100644 --- a/custom/slashing/module.go +++ b/custom/slashing/module.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/slashing" "github.com/cosmos/cosmos-sdk/x/slashing/types" - customtypes "github.com/classic-terra/core/v2/custom/slashing/types" + customtypes "github.com/classic-terra/core/v3/custom/slashing/types" ) var _ module.AppModuleBasic = AppModuleBasic{} diff --git a/custom/staking/module.go b/custom/staking/module.go index 7364ff12b..86c589fb8 100644 --- a/custom/staking/module.go +++ b/custom/staking/module.go @@ -8,8 +8,8 @@ import ( "github.com/cosmos/cosmos-sdk/x/staking" "github.com/cosmos/cosmos-sdk/x/staking/types" - customtypes "github.com/classic-terra/core/v2/custom/staking/types" - core "github.com/classic-terra/core/v2/types" + customtypes "github.com/classic-terra/core/v3/custom/staking/types" + core "github.com/classic-terra/core/v3/types" ) var _ module.AppModuleBasic = AppModuleBasic{} diff --git a/custom/staking/module_test.go b/custom/staking/module_test.go index fc7e005e0..0876c81b8 100644 --- a/custom/staking/module_test.go +++ b/custom/staking/module_test.go @@ -4,8 +4,8 @@ package staking_test // "testing" // simapp "cosmossdk.io/simapp" -// apptesting "github.com/classic-terra/core/v2/app/testing" -// "github.com/classic-terra/core/v2/types" +// apptesting "github.com/classic-terra/core/v3/app/testing" +// "github.com/classic-terra/core/v3/types" // sdk "github.com/cosmos/cosmos-sdk/types" // disttypes "github.com/cosmos/cosmos-sdk/x/distribution/types" // stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" @@ -22,7 +22,7 @@ package staking_test // suite.Run(t, new(StakingTestSuite)) // } -// // go test -v -run=TestStakingTestSuite/TestValidatorVPLimit github.com/classic-terra/core/v2/custom/staking +// // go test -v -run=TestStakingTestSuite/TestValidatorVPLimit github.com/classic-terra/core/v3/custom/staking // func (s *StakingTestSuite) TestValidatorVPLimit() { // s.KeeperTestHelper.Setup(s.T(), types.ColumbusChainID) diff --git a/custom/upgrade/module.go b/custom/upgrade/module.go index 5b6b77c94..dd43928dc 100644 --- a/custom/upgrade/module.go +++ b/custom/upgrade/module.go @@ -5,7 +5,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" "github.com/cosmos/cosmos-sdk/x/upgrade" - customtypes "github.com/classic-terra/core/v2/custom/upgrade/types" + customtypes "github.com/classic-terra/core/v3/custom/upgrade/types" ) var _ module.AppModuleBasic = AppModuleBasic{} diff --git a/custom/upgrade/types/codec.go b/custom/upgrade/types/codec.go index dd89300ea..bc63758e9 100644 --- a/custom/upgrade/types/codec.go +++ b/custom/upgrade/types/codec.go @@ -4,7 +4,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec" "github.com/cosmos/cosmos-sdk/x/upgrade/types" - govtypes "github.com/classic-terra/core/v2/custom/gov/types" + govtypes "github.com/classic-terra/core/v3/custom/gov/types" ) // RegisterLegacyAminoCodec registers concrete types on the LegacyAmino codec diff --git a/custom/wasm/client/cli/tx.go b/custom/wasm/client/cli/tx.go index f020d8075..66cb2dfea 100644 --- a/custom/wasm/client/cli/tx.go +++ b/custom/wasm/client/cli/tx.go @@ -18,7 +18,7 @@ import ( "github.com/CosmWasm/wasmd/x/wasm/types" "github.com/CosmWasm/wasmd/x/wasm/client/cli" - feeutils "github.com/classic-terra/core/v2/custom/auth/client/utils" + feeutils "github.com/classic-terra/core/v3/custom/auth/client/utils" ) const ( diff --git a/custom/wasm/keeper/handler_plugin.go b/custom/wasm/keeper/handler_plugin.go index b45f6b523..f3a24801b 100644 --- a/custom/wasm/keeper/handler_plugin.go +++ b/custom/wasm/keeper/handler_plugin.go @@ -1,8 +1,8 @@ package keeper import ( - "github.com/classic-terra/core/v2/custom/auth/ante" - treasurykeeper "github.com/classic-terra/core/v2/x/treasury/keeper" + "github.com/classic-terra/core/v3/custom/auth/ante" + treasurykeeper "github.com/classic-terra/core/v3/x/treasury/keeper" wasmvmtypes "github.com/CosmWasm/wasmvm/types" "github.com/cosmos/cosmos-sdk/baseapp" diff --git a/custom/wasm/module.go b/custom/wasm/module.go index a12975f5f..a55448df5 100644 --- a/custom/wasm/module.go +++ b/custom/wasm/module.go @@ -11,8 +11,8 @@ import ( "github.com/CosmWasm/wasmd/x/wasm/simulation" "github.com/CosmWasm/wasmd/x/wasm/types" - customcli "github.com/classic-terra/core/v2/custom/wasm/client/cli" - customtypes "github.com/classic-terra/core/v2/custom/wasm/types/legacy" + customcli "github.com/classic-terra/core/v3/custom/wasm/client/cli" + customtypes "github.com/classic-terra/core/v3/custom/wasm/types/legacy" ) var _ module.AppModuleBasic = AppModuleBasic{} diff --git a/go.mod b/go.mod index 22ca14975..07e9573cb 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ go 1.20 -module github.com/classic-terra/core/v2 +module github.com/classic-terra/core/v3 require ( cosmossdk.io/math v1.3.0 diff --git a/proto/terra/dyncomm/v1beta1/dyncomm.proto b/proto/terra/dyncomm/v1beta1/dyncomm.proto index 9ac9ba72b..4f0802ec3 100644 --- a/proto/terra/dyncomm/v1beta1/dyncomm.proto +++ b/proto/terra/dyncomm/v1beta1/dyncomm.proto @@ -4,7 +4,7 @@ package terra.dyncomm.v1beta1; import "cosmos_proto/cosmos.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/classic-terra/core/v2/x/dyncomm/types"; +option go_package = "github.com/classic-terra/core/v3/x/dyncomm/types"; // Params defines the parameters for the dyncomm module. message Params { diff --git a/proto/terra/dyncomm/v1beta1/genesis.proto b/proto/terra/dyncomm/v1beta1/genesis.proto index 7c433a7fb..3c6a25ecc 100644 --- a/proto/terra/dyncomm/v1beta1/genesis.proto +++ b/proto/terra/dyncomm/v1beta1/genesis.proto @@ -5,7 +5,7 @@ import "cosmos_proto/cosmos.proto"; import "gogoproto/gogo.proto"; import "terra/dyncomm/v1beta1/dyncomm.proto"; -option go_package = "github.com/classic-terra/core/v2/x/dyncomm/types"; +option go_package = "github.com/classic-terra/core/v3/x/dyncomm/types"; // GenesisState defines the dyncomm module's genesis state. message GenesisState { diff --git a/proto/terra/dyncomm/v1beta1/query.proto b/proto/terra/dyncomm/v1beta1/query.proto index eab2dc8d3..4feb17424 100644 --- a/proto/terra/dyncomm/v1beta1/query.proto +++ b/proto/terra/dyncomm/v1beta1/query.proto @@ -6,7 +6,7 @@ import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; import "terra/dyncomm/v1beta1/dyncomm.proto"; -option go_package = "github.com/classic-terra/core/v2/x/dyncomm/types"; +option go_package = "github.com/classic-terra/core/v3/x/dyncomm/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/terra/market/v1beta1/genesis.proto b/proto/terra/market/v1beta1/genesis.proto index 28eef9d41..3a59c9854 100644 --- a/proto/terra/market/v1beta1/genesis.proto +++ b/proto/terra/market/v1beta1/genesis.proto @@ -5,7 +5,7 @@ import "cosmos_proto/cosmos.proto"; import "gogoproto/gogo.proto"; import "terra/market/v1beta1/market.proto"; -option go_package = "github.com/classic-terra/core/v2/x/market/types"; +option go_package = "github.com/classic-terra/core/v3/x/market/types"; // GenesisState defines the market module's genesis state. message GenesisState { diff --git a/proto/terra/market/v1beta1/market.proto b/proto/terra/market/v1beta1/market.proto index 850c7be72..d7faea3d0 100644 --- a/proto/terra/market/v1beta1/market.proto +++ b/proto/terra/market/v1beta1/market.proto @@ -4,7 +4,7 @@ package terra.market.v1beta1; import "cosmos_proto/cosmos.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/classic-terra/core/v2/x/market/types"; +option go_package = "github.com/classic-terra/core/v3/x/market/types"; // Params defines the parameters for the market module. message Params { diff --git a/proto/terra/market/v1beta1/query.proto b/proto/terra/market/v1beta1/query.proto index f689b6649..ed0e62394 100644 --- a/proto/terra/market/v1beta1/query.proto +++ b/proto/terra/market/v1beta1/query.proto @@ -8,7 +8,7 @@ import "google/api/annotations.proto"; import "terra/market/v1beta1/market.proto"; -option go_package = "github.com/classic-terra/core/v2/x/market/types"; +option go_package = "github.com/classic-terra/core/v3/x/market/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/terra/market/v1beta1/tx.proto b/proto/terra/market/v1beta1/tx.proto index 7efa65552..6089438d1 100644 --- a/proto/terra/market/v1beta1/tx.proto +++ b/proto/terra/market/v1beta1/tx.proto @@ -5,7 +5,7 @@ import "cosmos/base/v1beta1/coin.proto"; import "cosmos_proto/cosmos.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/classic-terra/core/v2/x/market/types"; +option go_package = "github.com/classic-terra/core/v3/x/market/types"; // Msg defines the market Msg service. service Msg { diff --git a/proto/terra/oracle/v1beta1/genesis.proto b/proto/terra/oracle/v1beta1/genesis.proto index 7ecb70c5c..91fbca619 100644 --- a/proto/terra/oracle/v1beta1/genesis.proto +++ b/proto/terra/oracle/v1beta1/genesis.proto @@ -5,7 +5,7 @@ import "cosmos_proto/cosmos.proto"; import "gogoproto/gogo.proto"; import "terra/oracle/v1beta1/oracle.proto"; -option go_package = "github.com/classic-terra/core/v2/x/oracle/types"; +option go_package = "github.com/classic-terra/core/v3/x/oracle/types"; // GenesisState defines the oracle module's genesis state. message GenesisState { diff --git a/proto/terra/oracle/v1beta1/oracle.proto b/proto/terra/oracle/v1beta1/oracle.proto index 2a8f7f6a5..a8263e1df 100644 --- a/proto/terra/oracle/v1beta1/oracle.proto +++ b/proto/terra/oracle/v1beta1/oracle.proto @@ -4,7 +4,7 @@ package terra.oracle.v1beta1; import "cosmos_proto/cosmos.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/classic-terra/core/v2/x/oracle/types"; +option go_package = "github.com/classic-terra/core/v3/x/oracle/types"; // Params defines the parameters for the oracle module. message Params { diff --git a/proto/terra/oracle/v1beta1/query.proto b/proto/terra/oracle/v1beta1/query.proto index 85fc01ba2..c49d17cd5 100644 --- a/proto/terra/oracle/v1beta1/query.proto +++ b/proto/terra/oracle/v1beta1/query.proto @@ -8,7 +8,7 @@ import "google/api/annotations.proto"; import "terra/oracle/v1beta1/oracle.proto"; -option go_package = "github.com/classic-terra/core/v2/x/oracle/types"; +option go_package = "github.com/classic-terra/core/v3/x/oracle/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/terra/oracle/v1beta1/tx.proto b/proto/terra/oracle/v1beta1/tx.proto index c23d3626f..a39edf386 100644 --- a/proto/terra/oracle/v1beta1/tx.proto +++ b/proto/terra/oracle/v1beta1/tx.proto @@ -3,7 +3,7 @@ package terra.oracle.v1beta1; import "gogoproto/gogo.proto"; -option go_package = "github.com/classic-terra/core/v2/x/oracle/types"; +option go_package = "github.com/classic-terra/core/v3/x/oracle/types"; // Msg defines the oracle Msg service. service Msg { diff --git a/proto/terra/treasury/v1beta1/genesis.proto b/proto/terra/treasury/v1beta1/genesis.proto index f2e90b79a..9f89957cf 100644 --- a/proto/terra/treasury/v1beta1/genesis.proto +++ b/proto/terra/treasury/v1beta1/genesis.proto @@ -7,7 +7,7 @@ import "gogoproto/gogo.proto"; import "terra/treasury/v1beta1/treasury.proto"; -option go_package = "github.com/classic-terra/core/v2/x/treasury/types"; +option go_package = "github.com/classic-terra/core/v3/x/treasury/types"; // GenesisState defines the oracle module's genesis state. message GenesisState { diff --git a/proto/terra/treasury/v1beta1/gov.proto b/proto/terra/treasury/v1beta1/gov.proto index 3aea9d43d..3fce877d2 100644 --- a/proto/terra/treasury/v1beta1/gov.proto +++ b/proto/terra/treasury/v1beta1/gov.proto @@ -4,7 +4,7 @@ package terra.treasury.v1beta1; import "cosmos_proto/cosmos.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/classic-terra/core/v2/x/treasury/types"; +option go_package = "github.com/classic-terra/core/v3/x/treasury/types"; // proposal request structure for adding burn tax exemption address(es) message AddBurnTaxExemptionAddressProposal { diff --git a/proto/terra/treasury/v1beta1/query.proto b/proto/terra/treasury/v1beta1/query.proto index 811ca867c..b307e9c7d 100644 --- a/proto/terra/treasury/v1beta1/query.proto +++ b/proto/terra/treasury/v1beta1/query.proto @@ -10,7 +10,7 @@ import "google/api/annotations.proto"; import "terra/treasury/v1beta1/treasury.proto"; -option go_package = "github.com/classic-terra/core/v2/x/treasury/types"; +option go_package = "github.com/classic-terra/core/v3/x/treasury/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/terra/treasury/v1beta1/treasury.proto b/proto/terra/treasury/v1beta1/treasury.proto index caa015dc7..1d91a9c63 100644 --- a/proto/terra/treasury/v1beta1/treasury.proto +++ b/proto/terra/treasury/v1beta1/treasury.proto @@ -5,7 +5,7 @@ import "cosmos/base/v1beta1/coin.proto"; import "cosmos_proto/cosmos.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/classic-terra/core/v2/x/treasury/types"; +option go_package = "github.com/classic-terra/core/v3/x/treasury/types"; // Params defines the parameters for the oracle module. message Params { diff --git a/proto/terra/tx/v1beta1/service.proto b/proto/terra/tx/v1beta1/service.proto index f8f0df779..afe32a328 100644 --- a/proto/terra/tx/v1beta1/service.proto +++ b/proto/terra/tx/v1beta1/service.proto @@ -8,7 +8,7 @@ import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; option (gogoproto.goproto_registration) = true; -option go_package = "github.com/classic-terra/core/v2/custom/auth/tx"; +option go_package = "github.com/classic-terra/core/v3/custom/auth/tx"; // Service defines a gRPC service for interacting with transactions. service Service { diff --git a/proto/terra/vesting/v1beta1/vesting.proto b/proto/terra/vesting/v1beta1/vesting.proto index 25cccfcf4..8efe3b970 100644 --- a/proto/terra/vesting/v1beta1/vesting.proto +++ b/proto/terra/vesting/v1beta1/vesting.proto @@ -5,7 +5,7 @@ import "cosmos/vesting/v1beta1/vesting.proto"; import "cosmos_proto/cosmos.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/classic-terra/core/v2/x/vesting/types"; +option go_package = "github.com/classic-terra/core/v3/x/vesting/types"; // LazyGradedVestingAccount implements the LazyGradedVestingAccount interface. It vests all // coins according to a predefined schedule. diff --git a/proto/terra/wasm/v1beta1/genesis.proto b/proto/terra/wasm/v1beta1/genesis.proto index 013590676..da7e5072d 100644 --- a/proto/terra/wasm/v1beta1/genesis.proto +++ b/proto/terra/wasm/v1beta1/genesis.proto @@ -4,7 +4,7 @@ package terra.wasm.v1beta1; import "gogoproto/gogo.proto"; import "terra/wasm/v1beta1/wasm.proto"; -option go_package = "github.com/classic-terra/core/v2/custom/wasm/types/legacy"; +option go_package = "github.com/classic-terra/core/v3/custom/wasm/types/legacy"; // Model is a struct that holds a KV pair message Model { diff --git a/proto/terra/wasm/v1beta1/tx.proto b/proto/terra/wasm/v1beta1/tx.proto index ae32ceee8..2c5179075 100644 --- a/proto/terra/wasm/v1beta1/tx.proto +++ b/proto/terra/wasm/v1beta1/tx.proto @@ -4,7 +4,7 @@ package terra.wasm.v1beta1; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; -option go_package = "github.com/classic-terra/core/v2/custom/wasm/types/legacy"; +option go_package = "github.com/classic-terra/core/v3/custom/wasm/types/legacy"; // Msg defines the oracle Msg service. service Msg { diff --git a/proto/terra/wasm/v1beta1/wasm.proto b/proto/terra/wasm/v1beta1/wasm.proto index a62dcbba8..a563059c3 100644 --- a/proto/terra/wasm/v1beta1/wasm.proto +++ b/proto/terra/wasm/v1beta1/wasm.proto @@ -3,7 +3,7 @@ package terra.wasm.v1beta1; import "gogoproto/gogo.proto"; -option go_package = "github.com/classic-terra/core/v2/custom/wasm/types/legacy"; +option go_package = "github.com/classic-terra/core/v3/custom/wasm/types/legacy"; // CodeInfo is data for the uploaded contract WASM code message LegacyCodeInfo { diff --git a/scripts/protocgen.sh b/scripts/protocgen.sh index 9c78f8760..bfcae1a32 100755 --- a/scripts/protocgen.sh +++ b/scripts/protocgen.sh @@ -19,5 +19,5 @@ done cd .. # move proto files to the right places -cp -r github.com/classic-terra/core/v2/* ./ +cp -r github.com/classic-terra/core/v3/* ./ rm -rf github.com \ No newline at end of file diff --git a/tests/e2e/configurer/base.go b/tests/e2e/configurer/base.go index 1adcb0423..fb61f17a8 100644 --- a/tests/e2e/configurer/base.go +++ b/tests/e2e/configurer/base.go @@ -13,10 +13,10 @@ import ( "github.com/stretchr/testify/require" - "github.com/classic-terra/core/v2/tests/e2e/configurer/chain" - "github.com/classic-terra/core/v2/tests/e2e/containers" - "github.com/classic-terra/core/v2/tests/e2e/initialization" - "github.com/classic-terra/core/v2/tests/e2e/util" + "github.com/classic-terra/core/v3/tests/e2e/configurer/chain" + "github.com/classic-terra/core/v3/tests/e2e/containers" + "github.com/classic-terra/core/v3/tests/e2e/initialization" + "github.com/classic-terra/core/v3/tests/e2e/util" ) // baseConfigurer is the base implementation for the diff --git a/tests/e2e/configurer/chain/chain.go b/tests/e2e/configurer/chain/chain.go index f8d808bb7..2e4ef0ae1 100644 --- a/tests/e2e/configurer/chain/chain.go +++ b/tests/e2e/configurer/chain/chain.go @@ -12,10 +12,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - "github.com/classic-terra/core/v2/tests/e2e/configurer/config" - "github.com/classic-terra/core/v2/tests/e2e/containers" - "github.com/classic-terra/core/v2/tests/e2e/initialization" - treasurytypes "github.com/classic-terra/core/v2/x/treasury/types" + "github.com/classic-terra/core/v3/tests/e2e/configurer/config" + "github.com/classic-terra/core/v3/tests/e2e/containers" + "github.com/classic-terra/core/v3/tests/e2e/initialization" + treasurytypes "github.com/classic-terra/core/v3/x/treasury/types" ) type Config struct { diff --git a/tests/e2e/configurer/chain/commands.go b/tests/e2e/configurer/chain/commands.go index b7da451a9..954868ece 100644 --- a/tests/e2e/configurer/chain/commands.go +++ b/tests/e2e/configurer/chain/commands.go @@ -18,9 +18,9 @@ import ( cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" sdk "github.com/cosmos/cosmos-sdk/types" - app "github.com/classic-terra/core/v2/app" - "github.com/classic-terra/core/v2/tests/e2e/initialization" - "github.com/classic-terra/core/v2/types/assets" + app "github.com/classic-terra/core/v3/app" + "github.com/classic-terra/core/v3/tests/e2e/initialization" + "github.com/classic-terra/core/v3/types/assets" ) func (n *NodeConfig) StoreWasmCode(wasmFile, from string) { diff --git a/tests/e2e/configurer/chain/node.go b/tests/e2e/configurer/chain/node.go index 65eaf419d..584318e90 100644 --- a/tests/e2e/configurer/chain/node.go +++ b/tests/e2e/configurer/chain/node.go @@ -12,8 +12,8 @@ import ( coretypes "github.com/cometbft/cometbft/rpc/core/types" "github.com/stretchr/testify/require" - "github.com/classic-terra/core/v2/tests/e2e/containers" - "github.com/classic-terra/core/v2/tests/e2e/initialization" + "github.com/classic-terra/core/v3/tests/e2e/containers" + "github.com/classic-terra/core/v3/tests/e2e/initialization" ) type NodeConfig struct { diff --git a/tests/e2e/configurer/chain/queries.go b/tests/e2e/configurer/chain/queries.go index f7ed56f36..8fcb1a627 100644 --- a/tests/e2e/configurer/chain/queries.go +++ b/tests/e2e/configurer/chain/queries.go @@ -17,10 +17,10 @@ import ( tmabcitypes "github.com/cometbft/cometbft/abci/types" "github.com/stretchr/testify/require" - "github.com/classic-terra/core/v2/tests/e2e/initialization" - "github.com/classic-terra/core/v2/tests/e2e/util" + "github.com/classic-terra/core/v3/tests/e2e/initialization" + "github.com/classic-terra/core/v3/tests/e2e/util" - treasurytypes "github.com/classic-terra/core/v2/x/treasury/types" + treasurytypes "github.com/classic-terra/core/v3/x/treasury/types" ) func (n *NodeConfig) QueryGRPCGateway(path string, parameters ...string) ([]byte, error) { diff --git a/tests/e2e/configurer/current.go b/tests/e2e/configurer/current.go index 94a2c0a9e..4fcd3a088 100644 --- a/tests/e2e/configurer/current.go +++ b/tests/e2e/configurer/current.go @@ -4,9 +4,9 @@ import ( "os" "testing" - "github.com/classic-terra/core/v2/tests/e2e/configurer/chain" - "github.com/classic-terra/core/v2/tests/e2e/containers" - "github.com/classic-terra/core/v2/tests/e2e/initialization" + "github.com/classic-terra/core/v3/tests/e2e/configurer/chain" + "github.com/classic-terra/core/v3/tests/e2e/containers" + "github.com/classic-terra/core/v3/tests/e2e/initialization" ) type CurrentBranchConfigurer struct { diff --git a/tests/e2e/configurer/factory.go b/tests/e2e/configurer/factory.go index 3118e08b7..3bf5407bf 100644 --- a/tests/e2e/configurer/factory.go +++ b/tests/e2e/configurer/factory.go @@ -3,9 +3,9 @@ package configurer import ( "testing" - "github.com/classic-terra/core/v2/tests/e2e/configurer/chain" - "github.com/classic-terra/core/v2/tests/e2e/containers" - "github.com/classic-terra/core/v2/tests/e2e/initialization" + "github.com/classic-terra/core/v3/tests/e2e/configurer/chain" + "github.com/classic-terra/core/v3/tests/e2e/containers" + "github.com/classic-terra/core/v3/tests/e2e/initialization" ) type Configurer interface { diff --git a/tests/e2e/e2e_setup_test.go b/tests/e2e/e2e_setup_test.go index 60bd98bb0..c68ccfd26 100644 --- a/tests/e2e/e2e_setup_test.go +++ b/tests/e2e/e2e_setup_test.go @@ -7,7 +7,7 @@ import ( "github.com/stretchr/testify/suite" - configurer "github.com/classic-terra/core/v2/tests/e2e/configurer" + configurer "github.com/classic-terra/core/v3/tests/e2e/configurer" ) const ( diff --git a/tests/e2e/e2e_test.go b/tests/e2e/e2e_test.go index 8e2b099a6..d14e84dff 100644 --- a/tests/e2e/e2e_test.go +++ b/tests/e2e/e2e_test.go @@ -8,7 +8,7 @@ import ( sdkmath "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/classic-terra/core/v2/tests/e2e/initialization" + "github.com/classic-terra/core/v3/tests/e2e/initialization" ) func (s *IntegrationTestSuite) TestIBCWasmHooks() { diff --git a/tests/e2e/initialization/chain/main.go b/tests/e2e/initialization/chain/main.go index ef9e226eb..b63871d9d 100644 --- a/tests/e2e/initialization/chain/main.go +++ b/tests/e2e/initialization/chain/main.go @@ -6,7 +6,7 @@ import ( "fmt" "os" - "github.com/classic-terra/core/v2/tests/e2e/initialization" + "github.com/classic-terra/core/v3/tests/e2e/initialization" ) func main() { diff --git a/tests/e2e/initialization/config.go b/tests/e2e/initialization/config.go index dc9a1248b..df43a2081 100644 --- a/tests/e2e/initialization/config.go +++ b/tests/e2e/initialization/config.go @@ -21,8 +21,8 @@ import ( govv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" - "github.com/classic-terra/core/v2/tests/e2e/util" - treasurytypes "github.com/classic-terra/core/v2/x/treasury/types" + "github.com/classic-terra/core/v3/tests/e2e/util" + treasurytypes "github.com/classic-terra/core/v3/x/treasury/types" ) // NodeConfig is a confiuration for the node supplied from the test runner diff --git a/tests/e2e/initialization/init.go b/tests/e2e/initialization/init.go index 90bf6b814..39c39032c 100644 --- a/tests/e2e/initialization/init.go +++ b/tests/e2e/initialization/init.go @@ -9,8 +9,8 @@ import ( "github.com/cosmos/cosmos-sdk/types/address" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/classic-terra/core/v2/tests/e2e/util" - coreutil "github.com/classic-terra/core/v2/types/util" + "github.com/classic-terra/core/v3/tests/e2e/util" + coreutil "github.com/classic-terra/core/v3/types/util" ) func init() { diff --git a/tests/e2e/initialization/init_test.go b/tests/e2e/initialization/init_test.go index 4796de6af..4dbdcabe8 100644 --- a/tests/e2e/initialization/init_test.go +++ b/tests/e2e/initialization/init_test.go @@ -7,7 +7,7 @@ import ( "path/filepath" "testing" - "github.com/classic-terra/core/v2/tests/e2e/initialization" + "github.com/classic-terra/core/v3/tests/e2e/initialization" "github.com/stretchr/testify/require" ) diff --git a/tests/e2e/initialization/node.go b/tests/e2e/initialization/node.go index 11086c910..959c1ca66 100644 --- a/tests/e2e/initialization/node.go +++ b/tests/e2e/initialization/node.go @@ -29,8 +29,8 @@ import ( "github.com/cosmos/go-bip39" "github.com/spf13/viper" - terraApp "github.com/classic-terra/core/v2/app" - "github.com/classic-terra/core/v2/tests/e2e/util" + terraApp "github.com/classic-terra/core/v3/app" + "github.com/classic-terra/core/v3/tests/e2e/util" ) type internalNode struct { diff --git a/tests/e2e/initialization/node/main.go b/tests/e2e/initialization/node/main.go index 26431022c..364d37734 100644 --- a/tests/e2e/initialization/node/main.go +++ b/tests/e2e/initialization/node/main.go @@ -6,7 +6,7 @@ import ( "os" "strings" - "github.com/classic-terra/core/v2/tests/e2e/initialization" + "github.com/classic-terra/core/v3/tests/e2e/initialization" ) func main() { diff --git a/tests/e2e/initialization/util.go b/tests/e2e/initialization/util.go index d723855a8..a6f8b7765 100644 --- a/tests/e2e/initialization/util.go +++ b/tests/e2e/initialization/util.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec/unknownproto" sdktx "github.com/cosmos/cosmos-sdk/types/tx" - "github.com/classic-terra/core/v2/tests/e2e/util" + "github.com/classic-terra/core/v3/tests/e2e/util" ) func decodeTx(txBytes []byte) (*sdktx.Tx, error) { diff --git a/tests/e2e/util/codec.go b/tests/e2e/util/codec.go index 6307a7163..63ba8b661 100644 --- a/tests/e2e/util/codec.go +++ b/tests/e2e/util/codec.go @@ -8,8 +8,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - terraApp "github.com/classic-terra/core/v2/app" - "github.com/classic-terra/core/v2/app/params" + terraApp "github.com/classic-terra/core/v3/app" + "github.com/classic-terra/core/v3/app/params" ) var ( diff --git a/tests/interchaintest/go.mod b/tests/interchaintest/go.mod index 4163579d0..7de95d790 100644 --- a/tests/interchaintest/go.mod +++ b/tests/interchaintest/go.mod @@ -1,4 +1,4 @@ -module github.com/classic-terra/core/v2/test/interchaintest +module github.com/classic-terra/core/v3/test/interchaintest go 1.20 @@ -246,7 +246,7 @@ replace ( replace ( github.com/CosmWasm/wasmd => github.com/classic-terra/wasmd v0.45.0-classic - github.com/classic-terra/core/v2 => ../../ + github.com/classic-terra/core/v3 => ../../ github.com/cometbft/cometbft => github.com/classic-terra/cometbft v0.37.4-classic github.com/cosmos/cosmos-sdk => github.com/classic-terra/cosmos-sdk v0.47.10-classic github.com/cosmos/ledger-cosmos-go => github.com/terra-money/ledger-terra-go v0.11.2 diff --git a/tests/interchaintest/ibc_hooks_test.go b/tests/interchaintest/ibc_hooks_test.go index 8753a1599..adcdc88b5 100644 --- a/tests/interchaintest/ibc_hooks_test.go +++ b/tests/interchaintest/ibc_hooks_test.go @@ -7,7 +7,7 @@ import ( "testing" "cosmossdk.io/math" - "github.com/classic-terra/core/v2/test/interchaintest/helpers" + "github.com/classic-terra/core/v3/test/interchaintest/helpers" "github.com/strangelove-ventures/interchaintest/v7" "github.com/strangelove-ventures/interchaintest/v7/chain/cosmos" "github.com/strangelove-ventures/interchaintest/v7/ibc" diff --git a/tests/interchaintest/validator_test.go b/tests/interchaintest/validator_test.go index aa3639a2c..7a49dafed 100644 --- a/tests/interchaintest/validator_test.go +++ b/tests/interchaintest/validator_test.go @@ -18,7 +18,7 @@ import ( "github.com/stretchr/testify/require" "go.uber.org/zap/zaptest" - "github.com/classic-terra/core/v2/test/interchaintest/helpers" + "github.com/classic-terra/core/v3/test/interchaintest/helpers" ) // TestValidator is a basic test to accrue enough token to join active validator set, gets slashed for missing or tombstoned for double signing diff --git a/types/alias.go b/types/alias.go index 000f794a9..38bb456d3 100644 --- a/types/alias.go +++ b/types/alias.go @@ -1,12 +1,12 @@ // autogenerated code using github.com/rigelrozanski/multitool // aliases generated for the following subdirectories: -// ALIASGEN: github.com/classic-terra/core/v2/types/assets/ -// ALIASGEN: github.com/classic-terra/core/v2/types/util/ +// ALIASGEN: github.com/classic-terra/core/v3/types/assets/ +// ALIASGEN: github.com/classic-terra/core/v3/types/util/ package types import ( - "github.com/classic-terra/core/v2/types/assets" - "github.com/classic-terra/core/v2/types/util" + "github.com/classic-terra/core/v3/types/assets" + "github.com/classic-terra/core/v3/types/util" ) const ( diff --git a/wasmbinding/bindings/query.go b/wasmbinding/bindings/query.go index 467265eed..cd06c9e2d 100644 --- a/wasmbinding/bindings/query.go +++ b/wasmbinding/bindings/query.go @@ -2,8 +2,8 @@ package bindings import ( wasmvmtypes "github.com/CosmWasm/wasmvm/types" - markettypes "github.com/classic-terra/core/v2/x/market/types" - treasurytypes "github.com/classic-terra/core/v2/x/treasury/types" + markettypes "github.com/classic-terra/core/v3/x/market/types" + treasurytypes "github.com/classic-terra/core/v3/x/treasury/types" ) // ExchangeRateQueryParams query request params for exchange rates diff --git a/wasmbinding/message_plugin.go b/wasmbinding/message_plugin.go index ce4b5695f..6c58b1b81 100644 --- a/wasmbinding/message_plugin.go +++ b/wasmbinding/message_plugin.go @@ -10,9 +10,9 @@ import ( // bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" - "github.com/classic-terra/core/v2/wasmbinding/bindings" - marketkeeper "github.com/classic-terra/core/v2/x/market/keeper" - markettypes "github.com/classic-terra/core/v2/x/market/types" + "github.com/classic-terra/core/v3/wasmbinding/bindings" + marketkeeper "github.com/classic-terra/core/v3/x/market/keeper" + markettypes "github.com/classic-terra/core/v3/x/market/types" ) // CustomMessageDecorator returns decorator for custom CosmWasm bindings messages diff --git a/wasmbinding/queries.go b/wasmbinding/queries.go index 0fb6580c6..3845ec4a6 100644 --- a/wasmbinding/queries.go +++ b/wasmbinding/queries.go @@ -5,10 +5,10 @@ import ( // sdk "github.com/cosmos/cosmos-sdk/types" - // "github.com/classic-terra/core/v2/wasmbinding/bindings" - marketkeeper "github.com/classic-terra/core/v2/x/market/keeper" - oraclekeeper "github.com/classic-terra/core/v2/x/oracle/keeper" - treasurykeeper "github.com/classic-terra/core/v2/x/treasury/keeper" + // "github.com/classic-terra/core/v3/wasmbinding/bindings" + marketkeeper "github.com/classic-terra/core/v3/x/market/keeper" + oraclekeeper "github.com/classic-terra/core/v3/x/oracle/keeper" + treasurykeeper "github.com/classic-terra/core/v3/x/treasury/keeper" ) type QueryPlugin struct { diff --git a/wasmbinding/query_plugin.go b/wasmbinding/query_plugin.go index 9181c29da..bd29e677f 100644 --- a/wasmbinding/query_plugin.go +++ b/wasmbinding/query_plugin.go @@ -11,9 +11,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/classic-terra/core/v2/wasmbinding/bindings" - marketkeeper "github.com/classic-terra/core/v2/x/market/keeper" - markettypes "github.com/classic-terra/core/v2/x/market/types" + "github.com/classic-terra/core/v3/wasmbinding/bindings" + marketkeeper "github.com/classic-terra/core/v3/x/market/keeper" + markettypes "github.com/classic-terra/core/v3/x/market/types" ) // TaxCapQueryResponse - tax cap query response for wasm module diff --git a/wasmbinding/stargate_whitelist.go b/wasmbinding/stargate_whitelist.go index 88784eaa9..abdfec750 100644 --- a/wasmbinding/stargate_whitelist.go +++ b/wasmbinding/stargate_whitelist.go @@ -5,9 +5,9 @@ import ( "sync" wasmvmtypes "github.com/CosmWasm/wasmvm/types" - markettypes "github.com/classic-terra/core/v2/x/market/types" - oracletypes "github.com/classic-terra/core/v2/x/oracle/types" - treasurytypes "github.com/classic-terra/core/v2/x/treasury/types" + markettypes "github.com/classic-terra/core/v3/x/market/types" + oracletypes "github.com/classic-terra/core/v3/x/oracle/types" + treasurytypes "github.com/classic-terra/core/v3/x/treasury/types" "github.com/cosmos/cosmos-sdk/codec" ) diff --git a/wasmbinding/test/custom_message_test.go b/wasmbinding/test/custom_message_test.go index 2c4d90bee..36ecaa480 100644 --- a/wasmbinding/test/custom_message_test.go +++ b/wasmbinding/test/custom_message_test.go @@ -7,12 +7,12 @@ import ( wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" wasmvmtypes "github.com/CosmWasm/wasmvm/types" - core "github.com/classic-terra/core/v2/types" - "github.com/classic-terra/core/v2/wasmbinding/bindings" - markettypes "github.com/classic-terra/core/v2/x/market/types" + core "github.com/classic-terra/core/v3/types" + "github.com/classic-terra/core/v3/wasmbinding/bindings" + markettypes "github.com/classic-terra/core/v3/x/market/types" ) -// go test -v -run ^TestSwap$ github.com/classic-terra/core/v2/wasmbinding/test +// go test -v -run ^TestSwap$ github.com/classic-terra/core/v3/wasmbinding/test // oracle rate: 1 uluna = 1.7 usdr // 1000 uluna from trader goes to contract // 1666 usdr (after 2% tax) is swapped into which goes back to contract @@ -59,7 +59,7 @@ func (s *WasmTestSuite) Swap(contractPath string, executeFunc func(contract sdk. s.Require().Equal(contractBeforeSwap.AmountOf(core.MicroSDRDenom).Add(expectedSwappedSDR.TruncateInt()), contractAfterSwap.AmountOf(core.MicroSDRDenom)) } -// go test -v -run ^TestSwapSend$ github.com/classic-terra/core/v2/wasmbinding/test +// go test -v -run ^TestSwapSend$ github.com/classic-terra/core/v3/wasmbinding/test // oracle rate: 1 uluna = 1.7 usdr // 1000 uluna from trader goes to contract // 1666 usdr (after 2% tax) is swapped into which goes back to contract diff --git a/wasmbinding/test/custom_query_test.go b/wasmbinding/test/custom_query_test.go index f7c44efc2..e46d06233 100644 --- a/wasmbinding/test/custom_query_test.go +++ b/wasmbinding/test/custom_query_test.go @@ -5,14 +5,14 @@ import ( wasmvmtypes "github.com/CosmWasm/wasmvm/types" - core "github.com/classic-terra/core/v2/types" - "github.com/classic-terra/core/v2/wasmbinding/bindings" - markettypes "github.com/classic-terra/core/v2/x/market/types" - treasurytypes "github.com/classic-terra/core/v2/x/treasury/types" + core "github.com/classic-terra/core/v3/types" + "github.com/classic-terra/core/v3/wasmbinding/bindings" + markettypes "github.com/classic-terra/core/v3/x/market/types" + treasurytypes "github.com/classic-terra/core/v3/x/treasury/types" sdk "github.com/cosmos/cosmos-sdk/types" ) -// go test -v -run ^TestQuerySwap$ github.com/classic-terra/core/v2/wasmbinding/test +// go test -v -run ^TestQuerySwap$ github.com/classic-terra/core/v3/wasmbinding/test // oracle rate: 1 uluna = 1.7 usdr // 1000 uluna from trader goes to contract // 1666 usdr (after 2% tax) is swapped into @@ -51,7 +51,7 @@ func (s *WasmTestSuite) QuerySwap(contractPath string, queryFunc func(contract s s.Require().Equal(expectedSwappedSDR.TruncateInt().String(), resp.Receive.Amount) } -// go test -v -run ^TestQueryExchangeRates$ github.com/classic-terra/core/v2/wasmbinding/test +// go test -v -run ^TestQueryExchangeRates$ github.com/classic-terra/core/v3/wasmbinding/test func (s *WasmTestSuite) QueryExchangeRates(contractPath string, queryFunc func(contract sdk.AccAddress, request bindings.TerraQuery, response interface{})) { s.SetupTest() actor := s.RandomAccountAddresses(1)[0] @@ -79,7 +79,7 @@ func (s *WasmTestSuite) QueryExchangeRates(contractPath string, queryFunc func(c s.Require().Equal(lunaPriceInSDR, sdk.MustNewDecFromStr(resp.ExchangeRates[0].ExchangeRate)) } -// go test -v -run ^TestQueryTaxRate$ github.com/classic-terra/core/v2/wasmbinding/test +// go test -v -run ^TestQueryTaxRate$ github.com/classic-terra/core/v3/wasmbinding/test func (s *WasmTestSuite) QueryTaxRate(contractPath string, queryFunc func(contract sdk.AccAddress, request bindings.TerraQuery, response interface{})) { s.SetupTest() actor := s.RandomAccountAddresses(1)[0] @@ -101,7 +101,7 @@ func (s *WasmTestSuite) QueryTaxRate(contractPath string, queryFunc func(contrac s.Require().Equal(treasurytypes.DefaultTaxRate, sdk.MustNewDecFromStr(resp.Rate)) } -// go test -v -run ^TestQueryTaxCap$ github.com/classic-terra/core/v2/wasmbinding/test +// go test -v -run ^TestQueryTaxCap$ github.com/classic-terra/core/v3/wasmbinding/test func (s *WasmTestSuite) QueryTaxCap(contractPath string, queryFunc func(contract sdk.AccAddress, request bindings.TerraQuery, response interface{})) { s.SetupTest() actor := s.RandomAccountAddresses(1)[0] diff --git a/wasmbinding/test/custom_test.go b/wasmbinding/test/custom_test.go index d48f5d080..380111de3 100644 --- a/wasmbinding/test/custom_test.go +++ b/wasmbinding/test/custom_test.go @@ -1,7 +1,7 @@ package wasmbinding_test import ( - "github.com/classic-terra/core/v2/wasmbinding/bindings" + "github.com/classic-terra/core/v3/wasmbinding/bindings" sdk "github.com/cosmos/cosmos-sdk/types" ) @@ -11,7 +11,7 @@ const ( TerraStargateQueryPath = "../testdata/stargate_tester.wasm" ) -// go test -v -run ^TestWasmTestSuite/TestExecuteBindingsAll$ github.com/classic-terra/core/v2/wasmbinding/test +// go test -v -run ^TestWasmTestSuite/TestExecuteBindingsAll$ github.com/classic-terra/core/v3/wasmbinding/test func (s *WasmTestSuite) TestExecuteBindingsAll() { cases := []struct { name string @@ -46,7 +46,7 @@ func (s *WasmTestSuite) TestExecuteBindingsAll() { } } -// go test -v -run ^TestWasmTestSuite/TestQueryBindingsAll$ github.com/classic-terra/core/v2/wasmbinding/test +// go test -v -run ^TestWasmTestSuite/TestQueryBindingsAll$ github.com/classic-terra/core/v3/wasmbinding/test func (s *WasmTestSuite) TestQueryBindingsAll() { cases := []struct { name string diff --git a/wasmbinding/test/helpers_test.go b/wasmbinding/test/helpers_test.go index 830fc10bd..030cdf433 100644 --- a/wasmbinding/test/helpers_test.go +++ b/wasmbinding/test/helpers_test.go @@ -6,7 +6,7 @@ import ( wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" - apptesting "github.com/classic-terra/core/v2/app/testing" + apptesting "github.com/classic-terra/core/v3/app/testing" "github.com/stretchr/testify/suite" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/wasmbinding/test/tax_test.go b/wasmbinding/test/tax_test.go index 115e99b14..6d53c3494 100644 --- a/wasmbinding/test/tax_test.go +++ b/wasmbinding/test/tax_test.go @@ -5,11 +5,11 @@ import ( wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" wasmvmtypes "github.com/CosmWasm/wasmvm/types" - core "github.com/classic-terra/core/v2/types" + core "github.com/classic-terra/core/v3/types" sdk "github.com/cosmos/cosmos-sdk/types" ) -// go test -v -run ^TestWasmTestSuite/TestTax$ github.com/classic-terra/core/v2/wasmbinding/test +// go test -v -run ^TestWasmTestSuite/TestTax$ github.com/classic-terra/core/v3/wasmbinding/test func (s *WasmTestSuite) TestTax() { s.SetupTest() taxRate := sdk.NewDecWithPrec(11, 2) // 11% diff --git a/wasmbinding/wasm.go b/wasmbinding/wasm.go index e27940f51..d65378bc8 100644 --- a/wasmbinding/wasm.go +++ b/wasmbinding/wasm.go @@ -7,9 +7,9 @@ import ( wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" - marketkeeper "github.com/classic-terra/core/v2/x/market/keeper" - oraclekeeper "github.com/classic-terra/core/v2/x/oracle/keeper" - treasurykeeper "github.com/classic-terra/core/v2/x/treasury/keeper" + marketkeeper "github.com/classic-terra/core/v3/x/market/keeper" + oraclekeeper "github.com/classic-terra/core/v3/x/oracle/keeper" + treasurykeeper "github.com/classic-terra/core/v3/x/treasury/keeper" ) func RegisterCustomPlugins( diff --git a/x/dyncomm/abci.go b/x/dyncomm/abci.go index b745bc74e..a3105c623 100644 --- a/x/dyncomm/abci.go +++ b/x/dyncomm/abci.go @@ -6,10 +6,10 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/classic-terra/core/v2/x/dyncomm/keeper" - "github.com/classic-terra/core/v2/x/dyncomm/types" + "github.com/classic-terra/core/v3/x/dyncomm/keeper" + "github.com/classic-terra/core/v3/x/dyncomm/types" - core "github.com/classic-terra/core/v2/types" + core "github.com/classic-terra/core/v3/types" ) // EndBlocker is called at the end of every block diff --git a/x/dyncomm/ante/ante.go b/x/dyncomm/ante/ante.go index 05e8fe1bd..94103e57d 100644 --- a/x/dyncomm/ante/ante.go +++ b/x/dyncomm/ante/ante.go @@ -3,7 +3,7 @@ package ante import ( "fmt" - dyncommkeeper "github.com/classic-terra/core/v2/x/dyncomm/keeper" + dyncommkeeper "github.com/classic-terra/core/v3/x/dyncomm/keeper" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" diff --git a/x/dyncomm/ante/ante_test.go b/x/dyncomm/ante/ante_test.go index f45912ff5..4fc866d72 100644 --- a/x/dyncomm/ante/ante_test.go +++ b/x/dyncomm/ante/ante_test.go @@ -5,8 +5,8 @@ import ( "testing" "cosmossdk.io/math" - "github.com/classic-terra/core/v2/app" - core "github.com/classic-terra/core/v2/types" + "github.com/classic-terra/core/v3/app" + core "github.com/classic-terra/core/v3/types" "github.com/stretchr/testify/suite" "github.com/cosmos/cosmos-sdk/client" @@ -17,9 +17,9 @@ import ( "github.com/cosmos/cosmos-sdk/types/tx/signing" xauthsigning "github.com/cosmos/cosmos-sdk/x/auth/signing" - appparams "github.com/classic-terra/core/v2/app/params" - apptesting "github.com/classic-terra/core/v2/app/testing" - dyncommante "github.com/classic-terra/core/v2/x/dyncomm/ante" + appparams "github.com/classic-terra/core/v3/app/params" + apptesting "github.com/classic-terra/core/v3/app/testing" + dyncommante "github.com/classic-terra/core/v3/x/dyncomm/ante" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" @@ -205,7 +205,7 @@ func (suite *AnteTestSuite) TestAnte_EnsureDynCommissionIsMinComm() { suite.Require().NoError(err) } -// go test -v -run ^TestAnteTestSuite/TestAnte_EditValidatorAccountSequence$ github.com/classic-terra/core/v2/x/dyncomm/ante +// go test -v -run ^TestAnteTestSuite/TestAnte_EditValidatorAccountSequence$ github.com/classic-terra/core/v3/x/dyncomm/ante // check that account keeper sequence no longer increases when editing validator unsuccessfully func (suite *AnteTestSuite) TestAnte_EditValidatorAccountSequence() { suite.SetupTest() // setup diff --git a/x/dyncomm/client/cli/query.go b/x/dyncomm/client/cli/query.go index f2aa9f929..8cad5340b 100644 --- a/x/dyncomm/client/cli/query.go +++ b/x/dyncomm/client/cli/query.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/classic-terra/core/v2/x/dyncomm/types" + "github.com/classic-terra/core/v3/x/dyncomm/types" ) // GetQueryCmd returns the cli query commands for this module diff --git a/x/dyncomm/genesis.go b/x/dyncomm/genesis.go index 50be6e1bd..30886d5ca 100644 --- a/x/dyncomm/genesis.go +++ b/x/dyncomm/genesis.go @@ -3,8 +3,8 @@ package dyncomm import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/classic-terra/core/v2/x/dyncomm/keeper" - "github.com/classic-terra/core/v2/x/dyncomm/types" + "github.com/classic-terra/core/v3/x/dyncomm/keeper" + "github.com/classic-terra/core/v3/x/dyncomm/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" ) diff --git a/x/dyncomm/keeper/dyncomm.go b/x/dyncomm/keeper/dyncomm.go index 4350f4760..66e09479e 100644 --- a/x/dyncomm/keeper/dyncomm.go +++ b/x/dyncomm/keeper/dyncomm.go @@ -1,7 +1,7 @@ package keeper import ( - types "github.com/classic-terra/core/v2/x/dyncomm/types" + types "github.com/classic-terra/core/v3/x/dyncomm/types" sdk "github.com/cosmos/cosmos-sdk/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" ) diff --git a/x/dyncomm/keeper/dyncomm_test.go b/x/dyncomm/keeper/dyncomm_test.go index 33b7ae49f..08c679cb2 100644 --- a/x/dyncomm/keeper/dyncomm_test.go +++ b/x/dyncomm/keeper/dyncomm_test.go @@ -4,7 +4,7 @@ package keeper // "testing" // "time" -// core "github.com/classic-terra/core/v2/types" +// core "github.com/classic-terra/core/v3/types" // sdk "github.com/cosmos/cosmos-sdk/types" // "github.com/cosmos/cosmos-sdk/x/staking/teststaking" // "github.com/stretchr/testify/require" diff --git a/x/dyncomm/keeper/keeper.go b/x/dyncomm/keeper/keeper.go index 565562101..cde6da3ab 100644 --- a/x/dyncomm/keeper/keeper.go +++ b/x/dyncomm/keeper/keeper.go @@ -10,7 +10,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" paramstypes "github.com/cosmos/cosmos-sdk/x/params/types" - "github.com/classic-terra/core/v2/x/dyncomm/types" + "github.com/classic-terra/core/v3/x/dyncomm/types" ) // Keeper of the market store diff --git a/x/dyncomm/keeper/params.go b/x/dyncomm/keeper/params.go index 3149690c2..3c24d7a9e 100644 --- a/x/dyncomm/keeper/params.go +++ b/x/dyncomm/keeper/params.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/classic-terra/core/v2/x/dyncomm/types" + "github.com/classic-terra/core/v3/x/dyncomm/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/dyncomm/keeper/querier.go b/x/dyncomm/keeper/querier.go index 153bd4e07..53f1f8d23 100644 --- a/x/dyncomm/keeper/querier.go +++ b/x/dyncomm/keeper/querier.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/classic-terra/core/v2/x/dyncomm/types" + "github.com/classic-terra/core/v3/x/dyncomm/types" ) // querier is used as Keeper will have duplicate methods if used directly, and gRPC names take precedence over q diff --git a/x/dyncomm/keeper/test_utils.go b/x/dyncomm/keeper/test_utils.go index 491b83836..267cee822 100644 --- a/x/dyncomm/keeper/test_utils.go +++ b/x/dyncomm/keeper/test_utils.go @@ -10,19 +10,19 @@ import ( "cosmossdk.io/math" "github.com/stretchr/testify/require" - customauth "github.com/classic-terra/core/v2/custom/auth" - custombank "github.com/classic-terra/core/v2/custom/bank" - customdistr "github.com/classic-terra/core/v2/custom/distribution" - customparams "github.com/classic-terra/core/v2/custom/params" - customstaking "github.com/classic-terra/core/v2/custom/staking" - core "github.com/classic-terra/core/v2/types" + customauth "github.com/classic-terra/core/v3/custom/auth" + custombank "github.com/classic-terra/core/v3/custom/bank" + customdistr "github.com/classic-terra/core/v3/custom/distribution" + customparams "github.com/classic-terra/core/v3/custom/params" + customstaking "github.com/classic-terra/core/v3/custom/staking" + core "github.com/classic-terra/core/v3/types" dbm "github.com/cometbft/cometbft-db" "github.com/cometbft/cometbft/libs/log" tmproto "github.com/cometbft/cometbft/proto/tendermint/types" simparams "cosmossdk.io/simapp/params" - types "github.com/classic-terra/core/v2/x/dyncomm/types" + types "github.com/classic-terra/core/v3/x/dyncomm/types" "github.com/cosmos/cosmos-sdk/codec" codectypes "github.com/cosmos/cosmos-sdk/codec/types" sdkcrypto "github.com/cosmos/cosmos-sdk/crypto/types" diff --git a/x/dyncomm/module.go b/x/dyncomm/module.go index dcc9f5ff1..624ea310b 100644 --- a/x/dyncomm/module.go +++ b/x/dyncomm/module.go @@ -6,10 +6,10 @@ import ( "fmt" "math/rand" - "github.com/classic-terra/core/v2/x/dyncomm/client/cli" - "github.com/classic-terra/core/v2/x/dyncomm/keeper" - "github.com/classic-terra/core/v2/x/dyncomm/types" - "github.com/classic-terra/core/v2/x/market/simulation" + "github.com/classic-terra/core/v3/x/dyncomm/client/cli" + "github.com/classic-terra/core/v3/x/dyncomm/keeper" + "github.com/classic-terra/core/v3/x/dyncomm/types" + "github.com/classic-terra/core/v3/x/market/simulation" "github.com/grpc-ecosystem/grpc-gateway/runtime" "github.com/spf13/cobra" diff --git a/x/dyncomm/post/post.go b/x/dyncomm/post/post.go index 33b3988f8..13f598a72 100644 --- a/x/dyncomm/post/post.go +++ b/x/dyncomm/post/post.go @@ -1,7 +1,7 @@ package post import ( - dyncommkeeper "github.com/classic-terra/core/v2/x/dyncomm/keeper" + dyncommkeeper "github.com/classic-terra/core/v3/x/dyncomm/keeper" sdk "github.com/cosmos/cosmos-sdk/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" ) diff --git a/x/market/abci.go b/x/market/abci.go index 91322b508..f8a7503eb 100644 --- a/x/market/abci.go +++ b/x/market/abci.go @@ -3,7 +3,7 @@ package market import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/classic-terra/core/v2/x/market/keeper" + "github.com/classic-terra/core/v3/x/market/keeper" ) // EndBlocker is called at the end of every block diff --git a/x/market/abci_test.go b/x/market/abci_test.go index 2fba640cf..37f41ffc4 100644 --- a/x/market/abci_test.go +++ b/x/market/abci_test.go @@ -3,7 +3,7 @@ package market import ( "testing" - "github.com/classic-terra/core/v2/x/market/keeper" + "github.com/classic-terra/core/v3/x/market/keeper" "github.com/stretchr/testify/require" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/market/client/cli/query.go b/x/market/client/cli/query.go index 50b1d412a..7d5b6bf01 100644 --- a/x/market/client/cli/query.go +++ b/x/market/client/cli/query.go @@ -10,7 +10,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/classic-terra/core/v2/x/market/types" + "github.com/classic-terra/core/v3/x/market/types" ) // GetQueryCmd returns the cli query commands for this module diff --git a/x/market/client/cli/tx.go b/x/market/client/cli/tx.go index d22cea4b2..e13678fa2 100644 --- a/x/market/client/cli/tx.go +++ b/x/market/client/cli/tx.go @@ -10,8 +10,8 @@ import ( "github.com/spf13/cobra" - feeutils "github.com/classic-terra/core/v2/custom/auth/client/utils" - "github.com/classic-terra/core/v2/x/market/types" + feeutils "github.com/classic-terra/core/v3/custom/auth/client/utils" + "github.com/classic-terra/core/v3/x/market/types" ) // GetTxCmd returns the transaction commands for this module diff --git a/x/market/common_test.go b/x/market/common_test.go index 7a2a34c27..530331335 100644 --- a/x/market/common_test.go +++ b/x/market/common_test.go @@ -3,8 +3,8 @@ package market import ( "testing" - core "github.com/classic-terra/core/v2/types" - "github.com/classic-terra/core/v2/x/market/keeper" + core "github.com/classic-terra/core/v3/types" + "github.com/classic-terra/core/v3/x/market/keeper" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/market/exported/alias.go b/x/market/exported/alias.go index bffd31f2b..a138b7852 100644 --- a/x/market/exported/alias.go +++ b/x/market/exported/alias.go @@ -1,7 +1,7 @@ // DONTCOVER package exported -import "github.com/classic-terra/core/v2/x/market/types" +import "github.com/classic-terra/core/v3/x/market/types" type ( MsgSwap = types.MsgSwap diff --git a/x/market/genesis.go b/x/market/genesis.go index f274e93a4..30dc6cf60 100644 --- a/x/market/genesis.go +++ b/x/market/genesis.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/classic-terra/core/v2/x/market/keeper" - "github.com/classic-terra/core/v2/x/market/types" + "github.com/classic-terra/core/v3/x/market/keeper" + "github.com/classic-terra/core/v3/x/market/types" ) // InitGenesis initialize default parameters diff --git a/x/market/genesis_test.go b/x/market/genesis_test.go index 9e7845d0b..9ca1e57ab 100644 --- a/x/market/genesis_test.go +++ b/x/market/genesis_test.go @@ -3,7 +3,7 @@ package market import ( "testing" - "github.com/classic-terra/core/v2/x/market/keeper" + "github.com/classic-terra/core/v3/x/market/keeper" "github.com/stretchr/testify/require" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/market/handler.go b/x/market/handler.go index a1579997c..c889c70d0 100644 --- a/x/market/handler.go +++ b/x/market/handler.go @@ -4,8 +4,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/classic-terra/core/v2/x/market/keeper" - "github.com/classic-terra/core/v2/x/market/types" + "github.com/classic-terra/core/v3/x/market/keeper" + "github.com/classic-terra/core/v3/x/market/types" ) // NewHandler creates a new handler for all market type messages. diff --git a/x/market/handler_test.go b/x/market/handler_test.go index 19a33161e..7c458351a 100644 --- a/x/market/handler_test.go +++ b/x/market/handler_test.go @@ -8,9 +8,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - core "github.com/classic-terra/core/v2/types" - "github.com/classic-terra/core/v2/x/market/keeper" - "github.com/classic-terra/core/v2/x/market/types" + core "github.com/classic-terra/core/v3/types" + "github.com/classic-terra/core/v3/x/market/keeper" + "github.com/classic-terra/core/v3/x/market/types" ) func TestMarketFilters(t *testing.T) { diff --git a/x/market/keeper/alias_functions.go b/x/market/keeper/alias_functions.go index e0f99b6f6..6ab049353 100644 --- a/x/market/keeper/alias_functions.go +++ b/x/market/keeper/alias_functions.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/classic-terra/core/v2/x/market/types" + "github.com/classic-terra/core/v3/x/market/types" sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" diff --git a/x/market/keeper/keeper.go b/x/market/keeper/keeper.go index 7d3091953..f87a76e7f 100644 --- a/x/market/keeper/keeper.go +++ b/x/market/keeper/keeper.go @@ -10,7 +10,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" paramstypes "github.com/cosmos/cosmos-sdk/x/params/types" - "github.com/classic-terra/core/v2/x/market/types" + "github.com/classic-terra/core/v3/x/market/types" ) // Keeper of the market store diff --git a/x/market/keeper/keeper_test.go b/x/market/keeper/keeper_test.go index 4ceea432e..94b19c267 100644 --- a/x/market/keeper/keeper_test.go +++ b/x/market/keeper/keeper_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - core "github.com/classic-terra/core/v2/types" + core "github.com/classic-terra/core/v3/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/market/keeper/msg_server.go b/x/market/keeper/msg_server.go index 550c8c7b8..23bf881bd 100644 --- a/x/market/keeper/msg_server.go +++ b/x/market/keeper/msg_server.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/classic-terra/core/v2/x/market/types" - oracletypes "github.com/classic-terra/core/v2/x/oracle/types" + "github.com/classic-terra/core/v3/x/market/types" + oracletypes "github.com/classic-terra/core/v3/x/oracle/types" ) type msgServer struct { diff --git a/x/market/keeper/params.go b/x/market/keeper/params.go index ccf6ebf7f..19fc774a0 100644 --- a/x/market/keeper/params.go +++ b/x/market/keeper/params.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/classic-terra/core/v2/x/market/types" + "github.com/classic-terra/core/v3/x/market/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/market/keeper/querier.go b/x/market/keeper/querier.go index d7b44a929..96c91f4ef 100644 --- a/x/market/keeper/querier.go +++ b/x/market/keeper/querier.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/classic-terra/core/v2/x/market/types" + "github.com/classic-terra/core/v3/x/market/types" ) // querier is used as Keeper will have duplicate methods if used directly, and gRPC names take precedence over q diff --git a/x/market/keeper/querier_test.go b/x/market/keeper/querier_test.go index 45f29d242..0bef85e45 100644 --- a/x/market/keeper/querier_test.go +++ b/x/market/keeper/querier_test.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - core "github.com/classic-terra/core/v2/types" - "github.com/classic-terra/core/v2/x/market/types" + core "github.com/classic-terra/core/v3/types" + "github.com/classic-terra/core/v3/x/market/types" "github.com/stretchr/testify/require" ) diff --git a/x/market/keeper/swap.go b/x/market/keeper/swap.go index 82c2c78c8..37c951106 100644 --- a/x/market/keeper/swap.go +++ b/x/market/keeper/swap.go @@ -3,8 +3,8 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - core "github.com/classic-terra/core/v2/types" - "github.com/classic-terra/core/v2/x/market/types" + core "github.com/classic-terra/core/v3/types" + "github.com/classic-terra/core/v3/x/market/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" ) diff --git a/x/market/keeper/swap_test.go b/x/market/keeper/swap_test.go index 82b885555..9252ffd97 100644 --- a/x/market/keeper/swap_test.go +++ b/x/market/keeper/swap_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - core "github.com/classic-terra/core/v2/types" + core "github.com/classic-terra/core/v3/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/market/keeper/test_utils.go b/x/market/keeper/test_utils.go index 865826b52..a1e396d86 100644 --- a/x/market/keeper/test_utils.go +++ b/x/market/keeper/test_utils.go @@ -9,16 +9,16 @@ import ( "github.com/stretchr/testify/require" - customauth "github.com/classic-terra/core/v2/custom/auth" - custombank "github.com/classic-terra/core/v2/custom/bank" - customdistr "github.com/classic-terra/core/v2/custom/distribution" - customparams "github.com/classic-terra/core/v2/custom/params" - customstaking "github.com/classic-terra/core/v2/custom/staking" - core "github.com/classic-terra/core/v2/types" - "github.com/classic-terra/core/v2/x/market/types" - "github.com/classic-terra/core/v2/x/oracle" - oraclekeeper "github.com/classic-terra/core/v2/x/oracle/keeper" - oracletypes "github.com/classic-terra/core/v2/x/oracle/types" + customauth "github.com/classic-terra/core/v3/custom/auth" + custombank "github.com/classic-terra/core/v3/custom/bank" + customdistr "github.com/classic-terra/core/v3/custom/distribution" + customparams "github.com/classic-terra/core/v3/custom/params" + customstaking "github.com/classic-terra/core/v3/custom/staking" + core "github.com/classic-terra/core/v3/types" + "github.com/classic-terra/core/v3/x/market/types" + "github.com/classic-terra/core/v3/x/oracle" + oraclekeeper "github.com/classic-terra/core/v3/x/oracle/keeper" + oracletypes "github.com/classic-terra/core/v3/x/oracle/types" dbm "github.com/cometbft/cometbft-db" "github.com/cometbft/cometbft/crypto" @@ -186,7 +186,7 @@ func CreateTestInput(t *testing.T) TestInput { stakingKeeper.SetParams(ctx, stakingParams) distrKeeper := distrkeeper.NewKeeper( - appCodec, keyDistr, + appCodec, keyDistr, accountKeeper, bankKeeper, stakingKeeper, authtypes.FeeCollectorName, authtypes.NewModuleAddress(govtypes.ModuleName).String(), diff --git a/x/market/module.go b/x/market/module.go index dfda1b44a..d37a4c0be 100644 --- a/x/market/module.go +++ b/x/market/module.go @@ -19,10 +19,10 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/classic-terra/core/v2/x/market/client/cli" - "github.com/classic-terra/core/v2/x/market/keeper" - "github.com/classic-terra/core/v2/x/market/simulation" - "github.com/classic-terra/core/v2/x/market/types" + "github.com/classic-terra/core/v3/x/market/client/cli" + "github.com/classic-terra/core/v3/x/market/keeper" + "github.com/classic-terra/core/v3/x/market/simulation" + "github.com/classic-terra/core/v3/x/market/types" ) var ( diff --git a/x/market/simulation/decoder.go b/x/market/simulation/decoder.go index 1b4ee57a5..73ef841c5 100644 --- a/x/market/simulation/decoder.go +++ b/x/market/simulation/decoder.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/classic-terra/core/v2/x/market/types" + "github.com/classic-terra/core/v3/x/market/types" ) // NewDecodeStore returns a decoder function closure that unmarshals the KVPair's diff --git a/x/market/simulation/decoder_test.go b/x/market/simulation/decoder_test.go index 29b8c3510..bf04bc560 100644 --- a/x/market/simulation/decoder_test.go +++ b/x/market/simulation/decoder_test.go @@ -9,8 +9,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/classic-terra/core/v2/x/market/keeper" - "github.com/classic-terra/core/v2/x/market/types" + "github.com/classic-terra/core/v3/x/market/keeper" + "github.com/classic-terra/core/v3/x/market/types" ) func TestDecodeDistributionStore(t *testing.T) { diff --git a/x/market/simulation/genesis.go b/x/market/simulation/genesis.go index 612c48fb0..dbc12e1b8 100644 --- a/x/market/simulation/genesis.go +++ b/x/market/simulation/genesis.go @@ -10,7 +10,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/classic-terra/core/v2/x/market/types" + "github.com/classic-terra/core/v3/x/market/types" ) // Simulation parameter constants diff --git a/x/market/simulation/operations.go b/x/market/simulation/operations.go index 3c79db350..521fac684 100644 --- a/x/market/simulation/operations.go +++ b/x/market/simulation/operations.go @@ -6,7 +6,7 @@ import ( "math/rand" "strings" - core "github.com/classic-terra/core/v2/types" + core "github.com/classic-terra/core/v3/types" simappparams "cosmossdk.io/simapp/params" "github.com/cosmos/cosmos-sdk/baseapp" @@ -17,7 +17,7 @@ import ( banksim "github.com/cosmos/cosmos-sdk/x/bank/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" - "github.com/classic-terra/core/v2/x/market/types" + "github.com/classic-terra/core/v3/x/market/types" ) // Simulation operation weights constants diff --git a/x/market/simulation/params.go b/x/market/simulation/params.go index 6951d169e..965075b3e 100644 --- a/x/market/simulation/params.go +++ b/x/market/simulation/params.go @@ -9,7 +9,7 @@ import ( simtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" - "github.com/classic-terra/core/v2/x/market/types" + "github.com/classic-terra/core/v3/x/market/types" ) // ParamChanges defines the parameters that can be modified by param change proposals diff --git a/x/market/types/msgs_test.go b/x/market/types/msgs_test.go index 0ad640a92..a6f5af344 100644 --- a/x/market/types/msgs_test.go +++ b/x/market/types/msgs_test.go @@ -3,7 +3,7 @@ package types import ( "testing" - core "github.com/classic-terra/core/v2/types" + core "github.com/classic-terra/core/v3/types" "github.com/stretchr/testify/require" diff --git a/x/market/types/params.go b/x/market/types/params.go index 5f3ddbe12..8eedde9fa 100644 --- a/x/market/types/params.go +++ b/x/market/types/params.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" paramstypes "github.com/cosmos/cosmos-sdk/x/params/types" - core "github.com/classic-terra/core/v2/types" + core "github.com/classic-terra/core/v3/types" ) // Parameter keys diff --git a/x/oracle/abci.go b/x/oracle/abci.go index 9985ed9c9..4aa97780e 100644 --- a/x/oracle/abci.go +++ b/x/oracle/abci.go @@ -3,9 +3,9 @@ package oracle import ( "time" - core "github.com/classic-terra/core/v2/types" - "github.com/classic-terra/core/v2/x/oracle/keeper" - "github.com/classic-terra/core/v2/x/oracle/types" + core "github.com/classic-terra/core/v3/types" + "github.com/classic-terra/core/v3/x/oracle/keeper" + "github.com/classic-terra/core/v3/x/oracle/types" "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/oracle/abci_test.go b/x/oracle/abci_test.go index b38bcd610..257ea423f 100644 --- a/x/oracle/abci_test.go +++ b/x/oracle/abci_test.go @@ -12,10 +12,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - core "github.com/classic-terra/core/v2/types" - "github.com/classic-terra/core/v2/x/oracle" - "github.com/classic-terra/core/v2/x/oracle/keeper" - "github.com/classic-terra/core/v2/x/oracle/types" + core "github.com/classic-terra/core/v3/types" + "github.com/classic-terra/core/v3/x/oracle" + "github.com/classic-terra/core/v3/x/oracle/keeper" + "github.com/classic-terra/core/v3/x/oracle/types" ) func TestOracleThreshold(t *testing.T) { diff --git a/x/oracle/client/cli/query.go b/x/oracle/client/cli/query.go index 26e6d3e5f..6dcff7e4b 100644 --- a/x/oracle/client/cli/query.go +++ b/x/oracle/client/cli/query.go @@ -6,7 +6,7 @@ import ( "github.com/spf13/cobra" - "github.com/classic-terra/core/v2/x/oracle/types" + "github.com/classic-terra/core/v3/x/oracle/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" diff --git a/x/oracle/client/cli/tx.go b/x/oracle/client/cli/tx.go index df48ba302..b98e4fd16 100644 --- a/x/oracle/client/cli/tx.go +++ b/x/oracle/client/cli/tx.go @@ -6,7 +6,7 @@ import ( "github.com/pkg/errors" - "github.com/classic-terra/core/v2/x/oracle/types" + "github.com/classic-terra/core/v3/x/oracle/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" diff --git a/x/oracle/common_test.go b/x/oracle/common_test.go index 2328331e5..efb406b07 100644 --- a/x/oracle/common_test.go +++ b/x/oracle/common_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/classic-terra/core/v2/x/oracle" - "github.com/classic-terra/core/v2/x/oracle/keeper" + "github.com/classic-terra/core/v3/x/oracle" + "github.com/classic-terra/core/v3/x/oracle/keeper" stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/oracle/exported/alias.go b/x/oracle/exported/alias.go index 5146a1288..734c796a5 100644 --- a/x/oracle/exported/alias.go +++ b/x/oracle/exported/alias.go @@ -1,7 +1,7 @@ // DONTCOVER package exported -import "github.com/classic-terra/core/v2/x/oracle/types" +import "github.com/classic-terra/core/v3/x/oracle/types" type ( MsgAggregateExchangeRatePrevote = types.MsgAggregateExchangeRatePrevote diff --git a/x/oracle/genesis.go b/x/oracle/genesis.go index 1fc0768d8..4273ba26f 100644 --- a/x/oracle/genesis.go +++ b/x/oracle/genesis.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/classic-terra/core/v2/x/oracle/keeper" - "github.com/classic-terra/core/v2/x/oracle/types" + "github.com/classic-terra/core/v3/x/oracle/keeper" + "github.com/classic-terra/core/v3/x/oracle/types" ) // InitGenesis initialize default parameters diff --git a/x/oracle/genesis_test.go b/x/oracle/genesis_test.go index ede1f2edc..11099dcd1 100644 --- a/x/oracle/genesis_test.go +++ b/x/oracle/genesis_test.go @@ -5,9 +5,9 @@ import ( "github.com/stretchr/testify/require" - "github.com/classic-terra/core/v2/x/oracle" - "github.com/classic-terra/core/v2/x/oracle/keeper" - "github.com/classic-terra/core/v2/x/oracle/types" + "github.com/classic-terra/core/v3/x/oracle" + "github.com/classic-terra/core/v3/x/oracle/keeper" + "github.com/classic-terra/core/v3/x/oracle/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/oracle/handler.go b/x/oracle/handler.go index b6d48bdb1..c030ba5b6 100644 --- a/x/oracle/handler.go +++ b/x/oracle/handler.go @@ -4,8 +4,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/classic-terra/core/v2/x/oracle/keeper" - "github.com/classic-terra/core/v2/x/oracle/types" + "github.com/classic-terra/core/v3/x/oracle/keeper" + "github.com/classic-terra/core/v3/x/oracle/types" ) // NewHandler returns a handler for "oracle" type messages. diff --git a/x/oracle/handler_test.go b/x/oracle/handler_test.go index 647687876..efc937cd6 100644 --- a/x/oracle/handler_test.go +++ b/x/oracle/handler_test.go @@ -11,9 +11,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - core "github.com/classic-terra/core/v2/types" - "github.com/classic-terra/core/v2/x/oracle/keeper" - "github.com/classic-terra/core/v2/x/oracle/types" + core "github.com/classic-terra/core/v3/types" + "github.com/classic-terra/core/v3/x/oracle/keeper" + "github.com/classic-terra/core/v3/x/oracle/types" ) func TestOracleFilters(t *testing.T) { diff --git a/x/oracle/keeper/alias_functions.go b/x/oracle/keeper/alias_functions.go index b39706833..e57fbdab1 100644 --- a/x/oracle/keeper/alias_functions.go +++ b/x/oracle/keeper/alias_functions.go @@ -4,7 +4,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/classic-terra/core/v2/x/oracle/types" + "github.com/classic-terra/core/v3/x/oracle/types" ) // GetOracleAccount returns oracle ModuleAccount diff --git a/x/oracle/keeper/ballot.go b/x/oracle/keeper/ballot.go index c58e2622d..9a9836008 100644 --- a/x/oracle/keeper/ballot.go +++ b/x/oracle/keeper/ballot.go @@ -5,7 +5,7 @@ import ( "sort" "strings" - "github.com/classic-terra/core/v2/x/oracle/types" + "github.com/classic-terra/core/v3/x/oracle/types" sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" diff --git a/x/oracle/keeper/ballot_test.go b/x/oracle/keeper/ballot_test.go index 5d09d24ea..ab27059c7 100644 --- a/x/oracle/keeper/ballot_test.go +++ b/x/oracle/keeper/ballot_test.go @@ -6,8 +6,8 @@ import ( "github.com/stretchr/testify/require" - core "github.com/classic-terra/core/v2/types" - "github.com/classic-terra/core/v2/x/oracle/types" + core "github.com/classic-terra/core/v3/types" + "github.com/classic-terra/core/v3/x/oracle/types" stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/oracle/keeper/keeper.go b/x/oracle/keeper/keeper.go index 546910c2b..33050cd1f 100644 --- a/x/oracle/keeper/keeper.go +++ b/x/oracle/keeper/keeper.go @@ -14,8 +14,8 @@ import ( paramstypes "github.com/cosmos/cosmos-sdk/x/params/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - core "github.com/classic-terra/core/v2/types" - "github.com/classic-terra/core/v2/x/oracle/types" + core "github.com/classic-terra/core/v3/types" + "github.com/classic-terra/core/v3/x/oracle/types" ) // Keeper of the oracle store diff --git a/x/oracle/keeper/keeper_test.go b/x/oracle/keeper/keeper_test.go index 07b06b418..95db998bb 100644 --- a/x/oracle/keeper/keeper_test.go +++ b/x/oracle/keeper/keeper_test.go @@ -6,8 +6,8 @@ import ( "github.com/stretchr/testify/require" - core "github.com/classic-terra/core/v2/types" - "github.com/classic-terra/core/v2/x/oracle/types" + core "github.com/classic-terra/core/v3/types" + "github.com/classic-terra/core/v3/x/oracle/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/address" diff --git a/x/oracle/keeper/msg_server.go b/x/oracle/keeper/msg_server.go index 53b60c120..9953be832 100644 --- a/x/oracle/keeper/msg_server.go +++ b/x/oracle/keeper/msg_server.go @@ -7,7 +7,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/classic-terra/core/v2/x/oracle/types" + "github.com/classic-terra/core/v3/x/oracle/types" ) type msgServer struct { diff --git a/x/oracle/keeper/msg_server_test.go b/x/oracle/keeper/msg_server_test.go index 4e124c813..039adadb2 100644 --- a/x/oracle/keeper/msg_server_test.go +++ b/x/oracle/keeper/msg_server_test.go @@ -8,8 +8,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - core "github.com/classic-terra/core/v2/types" - "github.com/classic-terra/core/v2/x/oracle/types" + core "github.com/classic-terra/core/v3/types" + "github.com/classic-terra/core/v3/x/oracle/types" "github.com/cosmos/cosmos-sdk/x/staking" stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" diff --git a/x/oracle/keeper/params.go b/x/oracle/keeper/params.go index 8bebe0606..dd35c975f 100644 --- a/x/oracle/keeper/params.go +++ b/x/oracle/keeper/params.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/classic-terra/core/v2/x/oracle/types" + "github.com/classic-terra/core/v3/x/oracle/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/oracle/keeper/querier.go b/x/oracle/keeper/querier.go index b2d30e6df..19a9d5d26 100644 --- a/x/oracle/keeper/querier.go +++ b/x/oracle/keeper/querier.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/classic-terra/core/v2/x/oracle/types" + "github.com/classic-terra/core/v3/x/oracle/types" ) // querier is used as Keeper will have duplicate methods if used directly, and gRPC names take precedence over q diff --git a/x/oracle/keeper/querier_test.go b/x/oracle/keeper/querier_test.go index 6ef4cee32..8dd0c911d 100644 --- a/x/oracle/keeper/querier_test.go +++ b/x/oracle/keeper/querier_test.go @@ -9,8 +9,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - core "github.com/classic-terra/core/v2/types" - "github.com/classic-terra/core/v2/x/oracle/types" + core "github.com/classic-terra/core/v3/types" + "github.com/classic-terra/core/v3/x/oracle/types" ) func TestQueryParams(t *testing.T) { diff --git a/x/oracle/keeper/reward.go b/x/oracle/keeper/reward.go index 7c15088f3..88117d983 100644 --- a/x/oracle/keeper/reward.go +++ b/x/oracle/keeper/reward.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - core "github.com/classic-terra/core/v2/types" - "github.com/classic-terra/core/v2/x/oracle/types" + core "github.com/classic-terra/core/v3/types" + "github.com/classic-terra/core/v3/x/oracle/types" ) // RewardBallotWinners implements diff --git a/x/oracle/keeper/reward_test.go b/x/oracle/keeper/reward_test.go index d6df245b6..455b69a30 100644 --- a/x/oracle/keeper/reward_test.go +++ b/x/oracle/keeper/reward_test.go @@ -9,8 +9,8 @@ import ( "github.com/cosmos/cosmos-sdk/x/staking" stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" - core "github.com/classic-terra/core/v2/types" - "github.com/classic-terra/core/v2/x/oracle/types" + core "github.com/classic-terra/core/v3/types" + "github.com/classic-terra/core/v3/x/oracle/types" ) // Test a reward giving mechanism diff --git a/x/oracle/keeper/test_utils.go b/x/oracle/keeper/test_utils.go index 5cb10db81..8c0568f43 100644 --- a/x/oracle/keeper/test_utils.go +++ b/x/oracle/keeper/test_utils.go @@ -4,13 +4,13 @@ import ( "testing" "time" - customauth "github.com/classic-terra/core/v2/custom/auth" - custombank "github.com/classic-terra/core/v2/custom/bank" - customdistr "github.com/classic-terra/core/v2/custom/distribution" - customparams "github.com/classic-terra/core/v2/custom/params" - customstaking "github.com/classic-terra/core/v2/custom/staking" - core "github.com/classic-terra/core/v2/types" - "github.com/classic-terra/core/v2/x/oracle/types" + customauth "github.com/classic-terra/core/v3/custom/auth" + custombank "github.com/classic-terra/core/v3/custom/bank" + customdistr "github.com/classic-terra/core/v3/custom/distribution" + customparams "github.com/classic-terra/core/v3/custom/params" + customstaking "github.com/classic-terra/core/v3/custom/staking" + core "github.com/classic-terra/core/v3/types" + "github.com/classic-terra/core/v3/x/oracle/types" "github.com/stretchr/testify/require" dbm "github.com/cometbft/cometbft-db" diff --git a/x/oracle/module.go b/x/oracle/module.go index d521dbd53..711fd194d 100644 --- a/x/oracle/module.go +++ b/x/oracle/module.go @@ -18,10 +18,10 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/classic-terra/core/v2/x/oracle/client/cli" - "github.com/classic-terra/core/v2/x/oracle/keeper" - "github.com/classic-terra/core/v2/x/oracle/simulation" - "github.com/classic-terra/core/v2/x/oracle/types" + "github.com/classic-terra/core/v3/x/oracle/client/cli" + "github.com/classic-terra/core/v3/x/oracle/keeper" + "github.com/classic-terra/core/v3/x/oracle/simulation" + "github.com/classic-terra/core/v3/x/oracle/types" ) var ( diff --git a/x/oracle/simulation/decoder.go b/x/oracle/simulation/decoder.go index eb57a8cf5..55592f03d 100644 --- a/x/oracle/simulation/decoder.go +++ b/x/oracle/simulation/decoder.go @@ -10,7 +10,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/classic-terra/core/v2/x/oracle/types" + "github.com/classic-terra/core/v3/x/oracle/types" ) // NewDecodeStore returns a decoder function closure that unmarshals the KVPair's diff --git a/x/oracle/simulation/decoder_test.go b/x/oracle/simulation/decoder_test.go index 137be4bba..7747d497e 100644 --- a/x/oracle/simulation/decoder_test.go +++ b/x/oracle/simulation/decoder_test.go @@ -12,10 +12,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/kv" - core "github.com/classic-terra/core/v2/types" - "github.com/classic-terra/core/v2/x/oracle/keeper" - sim "github.com/classic-terra/core/v2/x/oracle/simulation" - "github.com/classic-terra/core/v2/x/oracle/types" + core "github.com/classic-terra/core/v3/types" + "github.com/classic-terra/core/v3/x/oracle/keeper" + sim "github.com/classic-terra/core/v3/x/oracle/simulation" + "github.com/classic-terra/core/v3/x/oracle/types" ) var ( diff --git a/x/oracle/simulation/genesis.go b/x/oracle/simulation/genesis.go index c07b3ea5f..6ed2be1a5 100644 --- a/x/oracle/simulation/genesis.go +++ b/x/oracle/simulation/genesis.go @@ -10,8 +10,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - core "github.com/classic-terra/core/v2/types" - "github.com/classic-terra/core/v2/x/oracle/types" + core "github.com/classic-terra/core/v3/types" + "github.com/classic-terra/core/v3/x/oracle/types" ) // Simulation parameter constants diff --git a/x/oracle/simulation/operations.go b/x/oracle/simulation/operations.go index 1851bb7eb..c24e4b119 100644 --- a/x/oracle/simulation/operations.go +++ b/x/oracle/simulation/operations.go @@ -16,9 +16,9 @@ import ( distrsim "github.com/cosmos/cosmos-sdk/x/distribution/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" - core "github.com/classic-terra/core/v2/types" - "github.com/classic-terra/core/v2/x/oracle/keeper" - "github.com/classic-terra/core/v2/x/oracle/types" + core "github.com/classic-terra/core/v3/types" + "github.com/classic-terra/core/v3/x/oracle/keeper" + "github.com/classic-terra/core/v3/x/oracle/types" ) // Simulation operation weights constants diff --git a/x/oracle/simulation/params.go b/x/oracle/simulation/params.go index 051221801..6fc23bed3 100644 --- a/x/oracle/simulation/params.go +++ b/x/oracle/simulation/params.go @@ -9,7 +9,7 @@ import ( simtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" - "github.com/classic-terra/core/v2/x/oracle/types" + "github.com/classic-terra/core/v3/x/oracle/types" ) // ParamChanges defines the parameters that can be modified by param change proposals diff --git a/x/oracle/tally.go b/x/oracle/tally.go index f4ef8f3b0..99abac38f 100644 --- a/x/oracle/tally.go +++ b/x/oracle/tally.go @@ -3,8 +3,8 @@ package oracle import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/classic-terra/core/v2/x/oracle/keeper" - "github.com/classic-terra/core/v2/x/oracle/types" + "github.com/classic-terra/core/v3/x/oracle/keeper" + "github.com/classic-terra/core/v3/x/oracle/types" ) // Tally calculates the median and returns it. Sets the set of voters to be rewarded, i.e. voted within diff --git a/x/oracle/tally_fuzz_test.go b/x/oracle/tally_fuzz_test.go index d3c67cdaa..6ea4a3cf0 100644 --- a/x/oracle/tally_fuzz_test.go +++ b/x/oracle/tally_fuzz_test.go @@ -10,8 +10,8 @@ import ( "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/classic-terra/core/v2/x/oracle" - "github.com/classic-terra/core/v2/x/oracle/types" + "github.com/classic-terra/core/v3/x/oracle" + "github.com/classic-terra/core/v3/x/oracle/types" ) func TestFuzz_Tally(t *testing.T) { diff --git a/x/oracle/types/ballot_test.go b/x/oracle/types/ballot_test.go index a07015ff8..69633ccaa 100644 --- a/x/oracle/types/ballot_test.go +++ b/x/oracle/types/ballot_test.go @@ -14,8 +14,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - core "github.com/classic-terra/core/v2/types" - "github.com/classic-terra/core/v2/x/oracle/types" + core "github.com/classic-terra/core/v3/types" + "github.com/classic-terra/core/v3/x/oracle/types" ) func TestToMap(t *testing.T) { diff --git a/x/oracle/types/denom_test.go b/x/oracle/types/denom_test.go index 0b8002b06..b2966b06e 100644 --- a/x/oracle/types/denom_test.go +++ b/x/oracle/types/denom_test.go @@ -3,7 +3,7 @@ package types_test import ( "testing" - "github.com/classic-terra/core/v2/x/oracle/types" + "github.com/classic-terra/core/v3/x/oracle/types" "github.com/stretchr/testify/require" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/oracle/types/genesis_test.go b/x/oracle/types/genesis_test.go index 095f23334..c4f6d430d 100644 --- a/x/oracle/types/genesis_test.go +++ b/x/oracle/types/genesis_test.go @@ -4,8 +4,8 @@ import ( "encoding/json" "testing" - "github.com/classic-terra/core/v2/app" - "github.com/classic-terra/core/v2/x/oracle/types" + "github.com/classic-terra/core/v3/app" + "github.com/classic-terra/core/v3/x/oracle/types" "github.com/stretchr/testify/require" ) diff --git a/x/oracle/types/hash_test.go b/x/oracle/types/hash_test.go index 300737a35..a84039a17 100644 --- a/x/oracle/types/hash_test.go +++ b/x/oracle/types/hash_test.go @@ -7,7 +7,7 @@ import ( "github.com/stretchr/testify/require" "gopkg.in/yaml.v2" - "github.com/classic-terra/core/v2/x/oracle/types" + "github.com/classic-terra/core/v3/x/oracle/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/oracle/types/msgs_test.go b/x/oracle/types/msgs_test.go index c982bc9f2..fe28132b2 100644 --- a/x/oracle/types/msgs_test.go +++ b/x/oracle/types/msgs_test.go @@ -4,8 +4,8 @@ import ( "math/rand" "testing" - core "github.com/classic-terra/core/v2/types" - "github.com/classic-terra/core/v2/x/oracle/types" + core "github.com/classic-terra/core/v3/types" + "github.com/classic-terra/core/v3/x/oracle/types" "github.com/stretchr/testify/require" diff --git a/x/oracle/types/params.go b/x/oracle/types/params.go index f54bf4cea..1b0b02381 100644 --- a/x/oracle/types/params.go +++ b/x/oracle/types/params.go @@ -5,7 +5,7 @@ import ( "gopkg.in/yaml.v2" - core "github.com/classic-terra/core/v2/types" + core "github.com/classic-terra/core/v3/types" sdk "github.com/cosmos/cosmos-sdk/types" paramstypes "github.com/cosmos/cosmos-sdk/x/params/types" diff --git a/x/oracle/types/params_test.go b/x/oracle/types/params_test.go index b9c260bfe..f37b8b60c 100644 --- a/x/oracle/types/params_test.go +++ b/x/oracle/types/params_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/classic-terra/core/v2/x/oracle/types" + "github.com/classic-terra/core/v3/x/oracle/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/oracle/types/vote_test.go b/x/oracle/types/vote_test.go index 3bc4d7119..ef565a410 100644 --- a/x/oracle/types/vote_test.go +++ b/x/oracle/types/vote_test.go @@ -3,7 +3,7 @@ package types_test import ( "testing" - "github.com/classic-terra/core/v2/x/oracle/types" + "github.com/classic-terra/core/v3/x/oracle/types" "github.com/stretchr/testify/require" ) diff --git a/x/treasury/abci.go b/x/treasury/abci.go index cd4d5ee81..7938fd7f5 100644 --- a/x/treasury/abci.go +++ b/x/treasury/abci.go @@ -6,9 +6,9 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" - core "github.com/classic-terra/core/v2/types" - "github.com/classic-terra/core/v2/x/treasury/keeper" - "github.com/classic-terra/core/v2/x/treasury/types" + core "github.com/classic-terra/core/v3/types" + "github.com/classic-terra/core/v3/x/treasury/keeper" + "github.com/classic-terra/core/v3/x/treasury/types" ) // EndBlocker is called at the end of every block diff --git a/x/treasury/abci_test.go b/x/treasury/abci_test.go index 90dd6c3c2..f01063b7f 100644 --- a/x/treasury/abci_test.go +++ b/x/treasury/abci_test.go @@ -5,9 +5,9 @@ import ( "github.com/stretchr/testify/require" - core "github.com/classic-terra/core/v2/types" - "github.com/classic-terra/core/v2/x/treasury/keeper" - "github.com/classic-terra/core/v2/x/treasury/types" + core "github.com/classic-terra/core/v3/types" + "github.com/classic-terra/core/v3/x/treasury/keeper" + "github.com/classic-terra/core/v3/x/treasury/types" ) func TestBurnAddress(t *testing.T) { diff --git a/x/treasury/client/cli/gov_tx.go b/x/treasury/client/cli/gov_tx.go index 69b3d8662..c289fe30e 100644 --- a/x/treasury/client/cli/gov_tx.go +++ b/x/treasury/client/cli/gov_tx.go @@ -4,7 +4,7 @@ import ( "fmt" "strings" - "github.com/classic-terra/core/v2/x/treasury/types" + "github.com/classic-terra/core/v3/x/treasury/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/tx" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/treasury/client/cli/query.go b/x/treasury/client/cli/query.go index c1fd4db1b..516cd199c 100644 --- a/x/treasury/client/cli/query.go +++ b/x/treasury/client/cli/query.go @@ -4,7 +4,7 @@ import ( "context" "strings" - "github.com/classic-terra/core/v2/x/treasury/types" + "github.com/classic-terra/core/v3/x/treasury/types" "github.com/spf13/cobra" diff --git a/x/treasury/client/proposal_handler.go b/x/treasury/client/proposal_handler.go index e3155124c..ae1da5a40 100644 --- a/x/treasury/client/proposal_handler.go +++ b/x/treasury/client/proposal_handler.go @@ -1,7 +1,7 @@ package client import ( - "github.com/classic-terra/core/v2/x/treasury/client/cli" + "github.com/classic-terra/core/v3/x/treasury/client/cli" govclient "github.com/cosmos/cosmos-sdk/x/gov/client" ) diff --git a/x/treasury/exported/alias.go b/x/treasury/exported/alias.go index 817375cf8..b335a7ac9 100644 --- a/x/treasury/exported/alias.go +++ b/x/treasury/exported/alias.go @@ -2,7 +2,7 @@ package exported import ( - "github.com/classic-terra/core/v2/x/treasury/types" + "github.com/classic-terra/core/v3/x/treasury/types" ) var NewQueryClient = types.NewQueryClient diff --git a/x/treasury/genesis.go b/x/treasury/genesis.go index 8157be12b..9a1372bf3 100644 --- a/x/treasury/genesis.go +++ b/x/treasury/genesis.go @@ -5,9 +5,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - core "github.com/classic-terra/core/v2/types" - "github.com/classic-terra/core/v2/x/treasury/keeper" - "github.com/classic-terra/core/v2/x/treasury/types" + core "github.com/classic-terra/core/v3/types" + "github.com/classic-terra/core/v3/x/treasury/keeper" + "github.com/classic-terra/core/v3/x/treasury/types" ) // InitGenesis initializes default parameters diff --git a/x/treasury/genesis_test.go b/x/treasury/genesis_test.go index 22780ee41..08cfc2782 100644 --- a/x/treasury/genesis_test.go +++ b/x/treasury/genesis_test.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - core "github.com/classic-terra/core/v2/types" - "github.com/classic-terra/core/v2/x/treasury/keeper" + core "github.com/classic-terra/core/v3/types" + "github.com/classic-terra/core/v3/x/treasury/keeper" ) func TestExportInitGenesis(t *testing.T) { diff --git a/x/treasury/keeper/alias_functions.go b/x/treasury/keeper/alias_functions.go index 87a06c4a3..7a904f3c8 100644 --- a/x/treasury/keeper/alias_functions.go +++ b/x/treasury/keeper/alias_functions.go @@ -4,7 +4,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/classic-terra/core/v2/x/treasury/types" + "github.com/classic-terra/core/v3/x/treasury/types" ) // GetTreasuryModuleAccount returns treasury ModuleAccount diff --git a/x/treasury/keeper/burn_account.go b/x/treasury/keeper/burn_account.go index 7db0cfb68..88bd8e6f2 100644 --- a/x/treasury/keeper/burn_account.go +++ b/x/treasury/keeper/burn_account.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/classic-terra/core/v2/x/treasury/types" + "github.com/classic-terra/core/v3/x/treasury/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/treasury/keeper/burn_account_test.go b/x/treasury/keeper/burn_account_test.go index 7ae3cb7b0..ddc02dc93 100644 --- a/x/treasury/keeper/burn_account_test.go +++ b/x/treasury/keeper/burn_account_test.go @@ -3,7 +3,7 @@ package keeper import ( "testing" - "github.com/classic-terra/core/v2/x/treasury/types" + "github.com/classic-terra/core/v3/x/treasury/types" "github.com/stretchr/testify/require" ) diff --git a/x/treasury/keeper/gov.go b/x/treasury/keeper/gov.go index 444d9ec91..4b852437d 100644 --- a/x/treasury/keeper/gov.go +++ b/x/treasury/keeper/gov.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/classic-terra/core/v2/x/treasury/types" + "github.com/classic-terra/core/v3/x/treasury/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/treasury/keeper/indicator.go b/x/treasury/keeper/indicator.go index 037d81a94..90cbae6de 100644 --- a/x/treasury/keeper/indicator.go +++ b/x/treasury/keeper/indicator.go @@ -1,7 +1,7 @@ package keeper import ( - core "github.com/classic-terra/core/v2/types" + core "github.com/classic-terra/core/v3/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/treasury/keeper/indicator_test.go b/x/treasury/keeper/indicator_test.go index 44e5d24b2..9efd0a407 100644 --- a/x/treasury/keeper/indicator_test.go +++ b/x/treasury/keeper/indicator_test.go @@ -3,7 +3,7 @@ package keeper import ( "testing" - core "github.com/classic-terra/core/v2/types" + core "github.com/classic-terra/core/v3/types" "github.com/stretchr/testify/require" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/treasury/keeper/keeper.go b/x/treasury/keeper/keeper.go index d11d9ac11..800cd11bb 100644 --- a/x/treasury/keeper/keeper.go +++ b/x/treasury/keeper/keeper.go @@ -9,11 +9,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" paramstypes "github.com/cosmos/cosmos-sdk/x/params/types" - core "github.com/classic-terra/core/v2/types" + core "github.com/classic-terra/core/v3/types" "github.com/cometbft/cometbft/libs/log" - "github.com/classic-terra/core/v2/x/treasury/types" + "github.com/classic-terra/core/v3/x/treasury/types" wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" ) diff --git a/x/treasury/keeper/keeper_test.go b/x/treasury/keeper/keeper_test.go index 490eae70d..ecc9afba2 100644 --- a/x/treasury/keeper/keeper_test.go +++ b/x/treasury/keeper/keeper_test.go @@ -10,8 +10,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - core "github.com/classic-terra/core/v2/types" - "github.com/classic-terra/core/v2/x/treasury/types" + core "github.com/classic-terra/core/v3/types" + "github.com/classic-terra/core/v3/x/treasury/types" ) func TestRewardWeight(t *testing.T) { diff --git a/x/treasury/keeper/migrations.go b/x/treasury/keeper/migrations.go index 45dc9b32e..aaf891eeb 100644 --- a/x/treasury/keeper/migrations.go +++ b/x/treasury/keeper/migrations.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/classic-terra/core/v2/x/treasury/types" + "github.com/classic-terra/core/v3/x/treasury/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/treasury/keeper/params.go b/x/treasury/keeper/params.go index 0ad8ebd6b..c9e101c0b 100644 --- a/x/treasury/keeper/params.go +++ b/x/treasury/keeper/params.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/classic-terra/core/v2/x/treasury/types" + "github.com/classic-terra/core/v3/x/treasury/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/treasury/keeper/policy_test.go b/x/treasury/keeper/policy_test.go index b4fdbfd41..0e9f31afd 100644 --- a/x/treasury/keeper/policy_test.go +++ b/x/treasury/keeper/policy_test.go @@ -3,9 +3,9 @@ package keeper import ( "testing" - core "github.com/classic-terra/core/v2/types" - oracletypes "github.com/classic-terra/core/v2/x/oracle/types" - "github.com/classic-terra/core/v2/x/treasury/types" + core "github.com/classic-terra/core/v3/types" + oracletypes "github.com/classic-terra/core/v3/x/oracle/types" + "github.com/classic-terra/core/v3/x/treasury/types" "github.com/stretchr/testify/require" diff --git a/x/treasury/keeper/querier.go b/x/treasury/keeper/querier.go index 827536c8c..8ac81c040 100644 --- a/x/treasury/keeper/querier.go +++ b/x/treasury/keeper/querier.go @@ -11,8 +11,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - core "github.com/classic-terra/core/v2/types" - "github.com/classic-terra/core/v2/x/treasury/types" + core "github.com/classic-terra/core/v3/types" + "github.com/classic-terra/core/v3/x/treasury/types" ) // querier is used as Keeper will have duplicate methods if used directly, and gRPC names take precedence over q diff --git a/x/treasury/keeper/querier_test.go b/x/treasury/keeper/querier_test.go index 1b72af1ec..ce1745959 100644 --- a/x/treasury/keeper/querier_test.go +++ b/x/treasury/keeper/querier_test.go @@ -3,8 +3,8 @@ package keeper import ( "testing" - core "github.com/classic-terra/core/v2/types" - "github.com/classic-terra/core/v2/x/treasury/types" + core "github.com/classic-terra/core/v3/types" + "github.com/classic-terra/core/v3/x/treasury/types" "github.com/stretchr/testify/require" diff --git a/x/treasury/keeper/seigniorage.go b/x/treasury/keeper/seigniorage.go index dbedbc8f9..1f3a1c70c 100644 --- a/x/treasury/keeper/seigniorage.go +++ b/x/treasury/keeper/seigniorage.go @@ -3,8 +3,8 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - core "github.com/classic-terra/core/v2/types" - "github.com/classic-terra/core/v2/x/treasury/types" + core "github.com/classic-terra/core/v3/types" + "github.com/classic-terra/core/v3/x/treasury/types" ) // SettleSeigniorage computes seigniorage and distributes it to oracle and distribution(community-pool) account diff --git a/x/treasury/keeper/seigniorage_test.go b/x/treasury/keeper/seigniorage_test.go index b4c72b347..2f568465c 100644 --- a/x/treasury/keeper/seigniorage_test.go +++ b/x/treasury/keeper/seigniorage_test.go @@ -4,7 +4,7 @@ import ( "math/rand" "testing" - core "github.com/classic-terra/core/v2/types" + core "github.com/classic-terra/core/v3/types" "github.com/stretchr/testify/require" diff --git a/x/treasury/keeper/test_utils.go b/x/treasury/keeper/test_utils.go index e6eb869af..767878a86 100644 --- a/x/treasury/keeper/test_utils.go +++ b/x/treasury/keeper/test_utils.go @@ -6,19 +6,19 @@ import ( "github.com/stretchr/testify/require" - customauth "github.com/classic-terra/core/v2/custom/auth" - custombank "github.com/classic-terra/core/v2/custom/bank" - customdistr "github.com/classic-terra/core/v2/custom/distribution" - customparams "github.com/classic-terra/core/v2/custom/params" - customstaking "github.com/classic-terra/core/v2/custom/staking" - core "github.com/classic-terra/core/v2/types" - "github.com/classic-terra/core/v2/x/market" - marketkeeper "github.com/classic-terra/core/v2/x/market/keeper" - markettypes "github.com/classic-terra/core/v2/x/market/types" - "github.com/classic-terra/core/v2/x/oracle" - oraclekeeper "github.com/classic-terra/core/v2/x/oracle/keeper" - oracletypes "github.com/classic-terra/core/v2/x/oracle/types" - "github.com/classic-terra/core/v2/x/treasury/types" + customauth "github.com/classic-terra/core/v3/custom/auth" + custombank "github.com/classic-terra/core/v3/custom/bank" + customdistr "github.com/classic-terra/core/v3/custom/distribution" + customparams "github.com/classic-terra/core/v3/custom/params" + customstaking "github.com/classic-terra/core/v3/custom/staking" + core "github.com/classic-terra/core/v3/types" + "github.com/classic-terra/core/v3/x/market" + marketkeeper "github.com/classic-terra/core/v3/x/market/keeper" + markettypes "github.com/classic-terra/core/v3/x/market/types" + "github.com/classic-terra/core/v3/x/oracle" + oraclekeeper "github.com/classic-terra/core/v3/x/oracle/keeper" + oracletypes "github.com/classic-terra/core/v3/x/oracle/types" + "github.com/classic-terra/core/v3/x/treasury/types" dbm "github.com/cometbft/cometbft-db" "github.com/cometbft/cometbft/crypto" diff --git a/x/treasury/module.go b/x/treasury/module.go index 856588a82..ebdf58951 100644 --- a/x/treasury/module.go +++ b/x/treasury/module.go @@ -6,8 +6,8 @@ import ( "fmt" "math/rand" - "github.com/classic-terra/core/v2/x/treasury/keeper" - "github.com/classic-terra/core/v2/x/treasury/simulation" + "github.com/classic-terra/core/v3/x/treasury/keeper" + "github.com/classic-terra/core/v3/x/treasury/simulation" "github.com/grpc-ecosystem/grpc-gateway/runtime" "github.com/spf13/cobra" @@ -21,8 +21,8 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/classic-terra/core/v2/x/treasury/client/cli" - "github.com/classic-terra/core/v2/x/treasury/types" + "github.com/classic-terra/core/v3/x/treasury/client/cli" + "github.com/classic-terra/core/v3/x/treasury/types" ) var ( diff --git a/x/treasury/proposal_handler.go b/x/treasury/proposal_handler.go index 56f21a0e5..5d33d1fdb 100644 --- a/x/treasury/proposal_handler.go +++ b/x/treasury/proposal_handler.go @@ -1,8 +1,8 @@ package treasury import ( - "github.com/classic-terra/core/v2/x/treasury/keeper" - "github.com/classic-terra/core/v2/x/treasury/types" + "github.com/classic-terra/core/v3/x/treasury/keeper" + "github.com/classic-terra/core/v3/x/treasury/types" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" govv1beta1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" diff --git a/x/treasury/simulation/decoder.go b/x/treasury/simulation/decoder.go index 1f1e994fa..d997dd164 100644 --- a/x/treasury/simulation/decoder.go +++ b/x/treasury/simulation/decoder.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/classic-terra/core/v2/x/treasury/types" + "github.com/classic-terra/core/v3/x/treasury/types" ) // NewDecodeStore returns a decoder function closure that unmarshals the KVPair's diff --git a/x/treasury/simulation/decoder_test.go b/x/treasury/simulation/decoder_test.go index 8be8d55f1..10cc06b39 100644 --- a/x/treasury/simulation/decoder_test.go +++ b/x/treasury/simulation/decoder_test.go @@ -9,9 +9,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/kv" - core "github.com/classic-terra/core/v2/types" - "github.com/classic-terra/core/v2/x/treasury/keeper" - "github.com/classic-terra/core/v2/x/treasury/types" + core "github.com/classic-terra/core/v3/types" + "github.com/classic-terra/core/v3/x/treasury/keeper" + "github.com/classic-terra/core/v3/x/treasury/types" ) func TestDecodeDistributionStore(t *testing.T) { diff --git a/x/treasury/simulation/genesis.go b/x/treasury/simulation/genesis.go index af7d95b69..5a8e703cf 100644 --- a/x/treasury/simulation/genesis.go +++ b/x/treasury/simulation/genesis.go @@ -10,8 +10,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - core "github.com/classic-terra/core/v2/types" - "github.com/classic-terra/core/v2/x/treasury/types" + core "github.com/classic-terra/core/v3/types" + "github.com/classic-terra/core/v3/x/treasury/types" ) // Simulation parameter constants diff --git a/x/treasury/simulation/params.go b/x/treasury/simulation/params.go index d7ec2d86d..9a6a7fa17 100644 --- a/x/treasury/simulation/params.go +++ b/x/treasury/simulation/params.go @@ -10,7 +10,7 @@ import ( simtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" - "github.com/classic-terra/core/v2/x/treasury/types" + "github.com/classic-terra/core/v3/x/treasury/types" ) // ParamChanges defines the parameters that can be modified by param change proposals diff --git a/x/treasury/types/exptected_keepers.go b/x/treasury/types/exptected_keepers.go index 86d27fc75..418dda64d 100644 --- a/x/treasury/types/exptected_keepers.go +++ b/x/treasury/types/exptected_keepers.go @@ -5,7 +5,7 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" distrtypes "github.com/cosmos/cosmos-sdk/x/distribution/types" - oracletypes "github.com/classic-terra/core/v2/x/oracle/types" + oracletypes "github.com/classic-terra/core/v3/x/oracle/types" ) // AccountKeeper expected account keeper diff --git a/x/treasury/types/params.go b/x/treasury/types/params.go index 5bdf497dd..45eb7e8e1 100644 --- a/x/treasury/types/params.go +++ b/x/treasury/types/params.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" paramstypes "github.com/cosmos/cosmos-sdk/x/params/types" - core "github.com/classic-terra/core/v2/types" + core "github.com/classic-terra/core/v3/types" ) // Parameter keys diff --git a/x/vesting/module.go b/x/vesting/module.go index 3ab86a133..13ea60a0b 100644 --- a/x/vesting/module.go +++ b/x/vesting/module.go @@ -11,7 +11,7 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/classic-terra/core/v2/x/vesting/types" + "github.com/classic-terra/core/v3/x/vesting/types" ) var _ module.AppModuleBasic = AppModuleBasic{} diff --git a/x/vesting/types/common_test.go b/x/vesting/types/common_test.go index 94a065dd1..8be4bf3d7 100644 --- a/x/vesting/types/common_test.go +++ b/x/vesting/types/common_test.go @@ -3,8 +3,8 @@ package types_test import ( "testing" - "github.com/classic-terra/core/v2/custom/auth" - "github.com/classic-terra/core/v2/x/vesting/types" + "github.com/classic-terra/core/v3/custom/auth" + "github.com/classic-terra/core/v3/x/vesting/types" "github.com/cometbft/cometbft/crypto" "github.com/cometbft/cometbft/crypto/secp256k1" diff --git a/x/vesting/types/genesis_test.go b/x/vesting/types/genesis_test.go index 332f2564e..3ff2b8cb0 100644 --- a/x/vesting/types/genesis_test.go +++ b/x/vesting/types/genesis_test.go @@ -10,8 +10,8 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" authvesttypes "github.com/cosmos/cosmos-sdk/x/auth/vesting/types" - core "github.com/classic-terra/core/v2/types" - "github.com/classic-terra/core/v2/x/vesting/types" + core "github.com/classic-terra/core/v3/types" + "github.com/classic-terra/core/v3/x/vesting/types" ) var ( diff --git a/x/vesting/types/vesting_account_test.go b/x/vesting/types/vesting_account_test.go index 53e711920..9259e1f55 100644 --- a/x/vesting/types/vesting_account_test.go +++ b/x/vesting/types/vesting_account_test.go @@ -14,8 +14,8 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" authvestingtypes "github.com/cosmos/cosmos-sdk/x/auth/vesting/types" - core "github.com/classic-terra/core/v2/types" - "github.com/classic-terra/core/v2/x/vesting/types" + core "github.com/classic-terra/core/v3/types" + "github.com/classic-terra/core/v3/x/vesting/types" ) var (