diff --git a/app/ante/ante.go b/app/ante/ante.go index bce220ae8..65e8e47de 100644 --- a/app/ante/ante.go +++ b/app/ante/ante.go @@ -10,9 +10,9 @@ import ( ante "github.com/cosmos/cosmos-sdk/x/auth/ante" "github.com/cosmos/cosmos-sdk/x/auth/signing" - tfmwKeeper "github.com/notional-labs/centauri/v4/x/transfermiddleware/keeper" - txBoundaryAnte "github.com/notional-labs/centauri/v4/x/tx-boundary/ante" - txBoundaryKeeper "github.com/notional-labs/centauri/v4/x/tx-boundary/keeper" + tfmwKeeper "github.com/notional-labs/centauri/v5/x/transfermiddleware/keeper" + txBoundaryAnte "github.com/notional-labs/centauri/v5/x/tx-boundary/ante" + txBoundaryKeeper "github.com/notional-labs/centauri/v5/x/tx-boundary/keeper" ) // Link to default ante handler used by cosmos sdk: diff --git a/app/ante/ibc_ante.go b/app/ante/ibc_ante.go index 34a4ad95b..15642a58f 100644 --- a/app/ante/ibc_ante.go +++ b/app/ante/ibc_ante.go @@ -10,7 +10,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/authz" clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - tfmwKeeper "github.com/notional-labs/centauri/v4/x/transfermiddleware/keeper" + tfmwKeeper "github.com/notional-labs/centauri/v5/x/transfermiddleware/keeper" ) type IBCPermissionDecorator struct { diff --git a/app/app.go b/app/app.go index f8b223275..c2d96d326 100644 --- a/app/app.go +++ b/app/app.go @@ -32,9 +32,9 @@ import ( vestingtypes "github.com/cosmos/cosmos-sdk/x/auth/vesting/types" "github.com/cosmos/cosmos-sdk/x/bank" - "github.com/notional-labs/centauri/v4/app/keepers" - v4 "github.com/notional-labs/centauri/v4/app/upgrades/v4" - v5 "github.com/notional-labs/centauri/v4/app/upgrades/v5" + "github.com/notional-labs/centauri/v5/app/keepers" + v4 "github.com/notional-labs/centauri/v5/app/upgrades/v4" + v5 "github.com/notional-labs/centauri/v5/app/upgrades/v5" // bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" @@ -92,36 +92,36 @@ import ( alliancemoduleclient "github.com/terra-money/alliance/x/alliance/client" alliancemoduletypes "github.com/terra-money/alliance/x/alliance/types" - custombankmodule "github.com/notional-labs/centauri/v4/custom/bank" + custombankmodule "github.com/notional-labs/centauri/v5/custom/bank" - "github.com/notional-labs/centauri/v4/app/ante" - transfermiddleware "github.com/notional-labs/centauri/v4/x/transfermiddleware" - transfermiddlewaretypes "github.com/notional-labs/centauri/v4/x/transfermiddleware/types" + "github.com/notional-labs/centauri/v5/app/ante" + transfermiddleware "github.com/notional-labs/centauri/v5/x/transfermiddleware" + transfermiddlewaretypes "github.com/notional-labs/centauri/v5/x/transfermiddleware/types" - txBoundary "github.com/notional-labs/centauri/v4/x/tx-boundary" - txBoundaryTypes "github.com/notional-labs/centauri/v4/x/tx-boundary/types" + txBoundary "github.com/notional-labs/centauri/v5/x/tx-boundary" + txBoundaryTypes "github.com/notional-labs/centauri/v5/x/tx-boundary/types" - ratelimitmodule "github.com/notional-labs/centauri/v4/x/ratelimit" - ratelimitmoduletypes "github.com/notional-labs/centauri/v4/x/ratelimit/types" + ratelimitmodule "github.com/notional-labs/centauri/v5/x/ratelimit" + ratelimitmoduletypes "github.com/notional-labs/centauri/v5/x/ratelimit/types" consensusparamtypes "github.com/cosmos/cosmos-sdk/x/consensus/types" - "github.com/notional-labs/centauri/v4/x/mint" - minttypes "github.com/notional-labs/centauri/v4/x/mint/types" + "github.com/notional-labs/centauri/v5/x/mint" + minttypes "github.com/notional-labs/centauri/v5/x/mint/types" ibctestingtypes "github.com/cosmos/ibc-go/v7/testing/types" - ibc_hooks "github.com/notional-labs/centauri/v4/x/ibc-hooks" - ibchookstypes "github.com/notional-labs/centauri/v4/x/ibc-hooks/types" + ibc_hooks "github.com/notional-labs/centauri/v5/x/ibc-hooks" + ibchookstypes "github.com/notional-labs/centauri/v5/x/ibc-hooks/types" "github.com/CosmWasm/wasmd/x/wasm" wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" - v4_5 "github.com/notional-labs/centauri/v4/app/upgrades/v4_5" - v4_5_1 "github.com/notional-labs/centauri/v4/app/upgrades/v4_5_1" + v4_5 "github.com/notional-labs/centauri/v5/app/upgrades/v4_5" + v4_5_1 "github.com/notional-labs/centauri/v5/app/upgrades/v4_5_1" - upgrades "github.com/notional-labs/centauri/v4/app/upgrades" + upgrades "github.com/notional-labs/centauri/v5/app/upgrades" ) const ( diff --git a/app/helpers/test_helpers.go b/app/helpers/test_helpers.go index 3f6d53201..bcaf04129 100644 --- a/app/helpers/test_helpers.go +++ b/app/helpers/test_helpers.go @@ -27,7 +27,7 @@ import ( "github.com/cosmos/ibc-go/v7/testing/mock" "github.com/stretchr/testify/require" - centauri "github.com/notional-labs/centauri/v4/app" + centauri "github.com/notional-labs/centauri/v5/app" ) // SimAppChainID hardcoded chainID for simulation diff --git a/app/ibctesting/chain.go b/app/ibctesting/chain.go index f08d5fff9..46795c96b 100644 --- a/app/ibctesting/chain.go +++ b/app/ibctesting/chain.go @@ -8,7 +8,7 @@ import ( "testing" "time" - ratelimitmodulekeeper "github.com/notional-labs/centauri/v4/x/ratelimit/keeper" + ratelimitmodulekeeper "github.com/notional-labs/centauri/v5/x/ratelimit/keeper" "cosmossdk.io/errors" abci "github.com/cometbft/cometbft/abci/types" @@ -54,9 +54,9 @@ import ( "github.com/stretchr/testify/require" "github.com/stretchr/testify/suite" - centauri "github.com/notional-labs/centauri/v4/app" - "github.com/notional-labs/centauri/v4/app/ibctesting/simapp" - routerKeeper "github.com/notional-labs/centauri/v4/x/transfermiddleware/keeper" + centauri "github.com/notional-labs/centauri/v5/app" + "github.com/notional-labs/centauri/v5/app/ibctesting/simapp" + routerKeeper "github.com/notional-labs/centauri/v5/x/transfermiddleware/keeper" ) // TestChain is a testing struct that wraps a simapp with the last TM Header, the current ABCI diff --git a/app/ibctesting/simapp/app.go b/app/ibctesting/simapp/app.go index 78f04432a..bf55f3330 100644 --- a/app/ibctesting/simapp/app.go +++ b/app/ibctesting/simapp/app.go @@ -90,9 +90,9 @@ import ( "github.com/gorilla/mux" // TODO: mint module not complete yet, - "github.com/notional-labs/centauri/v4/x/mint" - mintkeeper "github.com/notional-labs/centauri/v4/x/mint/keeper" - minttypes "github.com/notional-labs/centauri/v4/x/mint/types" + "github.com/notional-labs/centauri/v5/x/mint" + mintkeeper "github.com/notional-labs/centauri/v5/x/mint/keeper" + minttypes "github.com/notional-labs/centauri/v5/x/mint/types" "github.com/rakyll/statik/fs" "github.com/spf13/cast" @@ -124,13 +124,13 @@ import ( ibcmock "github.com/cosmos/ibc-go/v7/testing/mock" ibctestingtypes "github.com/cosmos/ibc-go/v7/testing/types" - simappparams "github.com/notional-labs/centauri/v4/app/ibctesting/simapp/params" - simappupgrades "github.com/notional-labs/centauri/v4/app/ibctesting/simapp/upgrades" - v6 "github.com/notional-labs/centauri/v4/app/ibctesting/simapp/upgrades/v6" - v7 "github.com/notional-labs/centauri/v4/app/ibctesting/simapp/upgrades/v7" - transfermiddleware "github.com/notional-labs/centauri/v4/x/transfermiddleware" - transfermiddlewarekeeper "github.com/notional-labs/centauri/v4/x/transfermiddleware/keeper" - transfermiddlewaretypes "github.com/notional-labs/centauri/v4/x/transfermiddleware/types" + simappparams "github.com/notional-labs/centauri/v5/app/ibctesting/simapp/params" + simappupgrades "github.com/notional-labs/centauri/v5/app/ibctesting/simapp/upgrades" + v6 "github.com/notional-labs/centauri/v5/app/ibctesting/simapp/upgrades/v6" + v7 "github.com/notional-labs/centauri/v5/app/ibctesting/simapp/upgrades/v7" + transfermiddleware "github.com/notional-labs/centauri/v5/x/transfermiddleware" + transfermiddlewarekeeper "github.com/notional-labs/centauri/v5/x/transfermiddleware/keeper" + transfermiddlewaretypes "github.com/notional-labs/centauri/v5/x/transfermiddleware/types" ) const appName = "SimApp" diff --git a/app/ibctesting/simapp/encoding.go b/app/ibctesting/simapp/encoding.go index fe48f7b94..5fb6d8696 100644 --- a/app/ibctesting/simapp/encoding.go +++ b/app/ibctesting/simapp/encoding.go @@ -3,7 +3,7 @@ package simapp import ( "github.com/cosmos/cosmos-sdk/std" - simappparams "github.com/notional-labs/centauri/v4/app/ibctesting/simapp/params" + simappparams "github.com/notional-labs/centauri/v5/app/ibctesting/simapp/params" ) // MakeTestEncodingConfig creates an EncodingConfig for testing. This function diff --git a/app/ibctesting/simapp/sim_test.go b/app/ibctesting/simapp/sim_test.go index 121b2fd00..29d982f02 100644 --- a/app/ibctesting/simapp/sim_test.go +++ b/app/ibctesting/simapp/sim_test.go @@ -30,7 +30,7 @@ import ( stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" "github.com/stretchr/testify/require" - minttypes "github.com/notional-labs/centauri/v4/x/mint/types" + minttypes "github.com/notional-labs/centauri/v5/x/mint/types" ibctransfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" diff --git a/app/keepers/keepers.go b/app/keepers/keepers.go index d759d7d7c..d342fc81e 100644 --- a/app/keepers/keepers.go +++ b/app/keepers/keepers.go @@ -66,7 +66,7 @@ import ( icqkeeper "github.com/strangelove-ventures/async-icq/v7/keeper" icqtypes "github.com/strangelove-ventures/async-icq/v7/types" - custombankkeeper "github.com/notional-labs/centauri/v4/custom/bank/keeper" + custombankkeeper "github.com/notional-labs/centauri/v5/custom/bank/keeper" "github.com/strangelove-ventures/packet-forward-middleware/v7/router" routerkeeper "github.com/strangelove-ventures/packet-forward-middleware/v7/router/keeper" @@ -76,22 +76,22 @@ import ( alliancemodulekeeper "github.com/terra-money/alliance/x/alliance/keeper" alliancemoduletypes "github.com/terra-money/alliance/x/alliance/types" - transfermiddleware "github.com/notional-labs/centauri/v4/x/transfermiddleware" - transfermiddlewarekeeper "github.com/notional-labs/centauri/v4/x/transfermiddleware/keeper" - transfermiddlewaretypes "github.com/notional-labs/centauri/v4/x/transfermiddleware/types" + transfermiddleware "github.com/notional-labs/centauri/v5/x/transfermiddleware" + transfermiddlewarekeeper "github.com/notional-labs/centauri/v5/x/transfermiddleware/keeper" + transfermiddlewaretypes "github.com/notional-labs/centauri/v5/x/transfermiddleware/types" - txBoundaryKeeper "github.com/notional-labs/centauri/v4/x/tx-boundary/keeper" - txBoundaryTypes "github.com/notional-labs/centauri/v4/x/tx-boundary/types" + txBoundaryKeeper "github.com/notional-labs/centauri/v5/x/tx-boundary/keeper" + txBoundaryTypes "github.com/notional-labs/centauri/v5/x/tx-boundary/types" - ratelimitmodule "github.com/notional-labs/centauri/v4/x/ratelimit" - ratelimitmodulekeeper "github.com/notional-labs/centauri/v4/x/ratelimit/keeper" - ratelimitmoduletypes "github.com/notional-labs/centauri/v4/x/ratelimit/types" + ratelimitmodule "github.com/notional-labs/centauri/v5/x/ratelimit" + ratelimitmodulekeeper "github.com/notional-labs/centauri/v5/x/ratelimit/keeper" + ratelimitmoduletypes "github.com/notional-labs/centauri/v5/x/ratelimit/types" consensusparamkeeper "github.com/cosmos/cosmos-sdk/x/consensus/keeper" consensusparamtypes "github.com/cosmos/cosmos-sdk/x/consensus/types" - mintkeeper "github.com/notional-labs/centauri/v4/x/mint/keeper" - minttypes "github.com/notional-labs/centauri/v4/x/mint/types" + mintkeeper "github.com/notional-labs/centauri/v5/x/mint/keeper" + minttypes "github.com/notional-labs/centauri/v5/x/mint/types" "github.com/CosmWasm/wasmd/x/wasm" servertypes "github.com/cosmos/cosmos-sdk/server/types" @@ -99,9 +99,9 @@ import ( wasm08Keeper "github.com/cosmos/ibc-go/v7/modules/light-clients/08-wasm/keeper" wasmtypes "github.com/cosmos/ibc-go/v7/modules/light-clients/08-wasm/types" - ibc_hooks "github.com/notional-labs/centauri/v4/x/ibc-hooks" - ibchookskeeper "github.com/notional-labs/centauri/v4/x/ibc-hooks/keeper" - ibchookstypes "github.com/notional-labs/centauri/v4/x/ibc-hooks/types" + ibc_hooks "github.com/notional-labs/centauri/v5/x/ibc-hooks" + ibchookskeeper "github.com/notional-labs/centauri/v5/x/ibc-hooks/keeper" + ibchookstypes "github.com/notional-labs/centauri/v5/x/ibc-hooks/types" ) const ( diff --git a/app/keepers/keys.go b/app/keepers/keys.go index 39be5746d..ee2accf49 100644 --- a/app/keepers/keys.go +++ b/app/keepers/keys.go @@ -27,16 +27,16 @@ import ( routertypes "github.com/strangelove-ventures/packet-forward-middleware/v7/router/types" alliancemoduletypes "github.com/terra-money/alliance/x/alliance/types" - ibchookstypes "github.com/notional-labs/centauri/v4/x/ibc-hooks/types" - ratelimitmoduletypes "github.com/notional-labs/centauri/v4/x/ratelimit/types" - transfermiddlewaretypes "github.com/notional-labs/centauri/v4/x/transfermiddleware/types" - txBoundaryTypes "github.com/notional-labs/centauri/v4/x/tx-boundary/types" + ibchookstypes "github.com/notional-labs/centauri/v5/x/ibc-hooks/types" + ratelimitmoduletypes "github.com/notional-labs/centauri/v5/x/ratelimit/types" + transfermiddlewaretypes "github.com/notional-labs/centauri/v5/x/transfermiddleware/types" + txBoundaryTypes "github.com/notional-labs/centauri/v5/x/tx-boundary/types" consensusparamtypes "github.com/cosmos/cosmos-sdk/x/consensus/types" storetypes "github.com/cosmos/cosmos-sdk/store/types" - minttypes "github.com/notional-labs/centauri/v4/x/mint/types" + minttypes "github.com/notional-labs/centauri/v5/x/mint/types" "github.com/CosmWasm/wasmd/x/wasm" wasm08types "github.com/cosmos/ibc-go/v7/modules/light-clients/08-wasm/types" diff --git a/app/test_access.go b/app/test_access.go index eedc05478..b7ba6dcc3 100644 --- a/app/test_access.go +++ b/app/test_access.go @@ -16,8 +16,8 @@ import ( ibckeeper "github.com/cosmos/ibc-go/v7/modules/core/keeper" wasm08 "github.com/cosmos/ibc-go/v7/modules/light-clients/08-wasm/keeper" - ratelimitkeeper "github.com/notional-labs/centauri/v4/x/ratelimit/keeper" - tfmdKeeper "github.com/notional-labs/centauri/v4/x/transfermiddleware/keeper" + ratelimitkeeper "github.com/notional-labs/centauri/v5/x/ratelimit/keeper" + tfmdKeeper "github.com/notional-labs/centauri/v5/x/transfermiddleware/keeper" ) type TestSupport struct { diff --git a/app/test_helpers.go b/app/test_helpers.go index 53de76ebd..1e4521a00 100644 --- a/app/test_helpers.go +++ b/app/test_helpers.go @@ -36,7 +36,7 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - minttypes "github.com/notional-labs/centauri/v4/x/mint/types" + minttypes "github.com/notional-labs/centauri/v5/x/mint/types" "github.com/CosmWasm/wasmd/x/wasm" wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" diff --git a/app/upgrades/centauri/upgrade.go b/app/upgrades/centauri/upgrade.go index ce6260b21..c83658368 100644 --- a/app/upgrades/centauri/upgrade.go +++ b/app/upgrades/centauri/upgrade.go @@ -16,10 +16,10 @@ import ( govkeeper "github.com/cosmos/cosmos-sdk/x/gov/keeper" - bech32authmigration "github.com/notional-labs/centauri/v4/bech32-migration/auth" - bech32govmigration "github.com/notional-labs/centauri/v4/bech32-migration/gov" - bech32slashingmigration "github.com/notional-labs/centauri/v4/bech32-migration/slashing" - bech32stakingmigration "github.com/notional-labs/centauri/v4/bech32-migration/staking" + bech32authmigration "github.com/notional-labs/centauri/v5/bech32-migration/auth" + bech32govmigration "github.com/notional-labs/centauri/v5/bech32-migration/gov" + bech32slashingmigration "github.com/notional-labs/centauri/v5/bech32-migration/slashing" + bech32stakingmigration "github.com/notional-labs/centauri/v5/bech32-migration/staking" ) func CreateUpgradeHandler( diff --git a/app/upgrades/reward/upgrade.go b/app/upgrades/reward/upgrade.go index 75e56612b..991d2eb3a 100644 --- a/app/upgrades/reward/upgrade.go +++ b/app/upgrades/reward/upgrade.go @@ -5,8 +5,8 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - mintkeeper "github.com/notional-labs/centauri/v4/x/mint/keeper" - tfmwkeeper "github.com/notional-labs/centauri/v4/x/transfermiddleware/keeper" + mintkeeper "github.com/notional-labs/centauri/v5/x/mint/keeper" + tfmwkeeper "github.com/notional-labs/centauri/v5/x/transfermiddleware/keeper" ) var listAllowedRelayAddress = []string{ diff --git a/app/upgrades/types.go b/app/upgrades/types.go index 17780db22..fb35080de 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/notional-labs/centauri/v4/app/keepers" + "github.com/notional-labs/centauri/v5/app/keepers" ) // BaseAppParamManager defines an interrace that BaseApp is expected to fullfil diff --git a/app/upgrades/v4/constants.go b/app/upgrades/v4/constants.go index 5e889c57e..e6e7a7360 100644 --- a/app/upgrades/v4/constants.go +++ b/app/upgrades/v4/constants.go @@ -5,9 +5,9 @@ import ( store "github.com/cosmos/cosmos-sdk/store/types" icahosttypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types" - "github.com/notional-labs/centauri/v4/app/upgrades" - ibchookstypes "github.com/notional-labs/centauri/v4/x/ibc-hooks/types" - ratelimitmoduletypes "github.com/notional-labs/centauri/v4/x/ratelimit/types" + "github.com/notional-labs/centauri/v5/app/upgrades" + ibchookstypes "github.com/notional-labs/centauri/v5/x/ibc-hooks/types" + ratelimitmoduletypes "github.com/notional-labs/centauri/v5/x/ratelimit/types" ) const ( diff --git a/app/upgrades/v4/upgrade.go b/app/upgrades/v4/upgrade.go index 283c52fdf..eb614ffba 100644 --- a/app/upgrades/v4/upgrade.go +++ b/app/upgrades/v4/upgrade.go @@ -6,9 +6,9 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - "github.com/notional-labs/centauri/v4/app/keepers" - "github.com/notional-labs/centauri/v4/app/upgrades" - tfmdtypes "github.com/notional-labs/centauri/v4/x/transfermiddleware/types" + "github.com/notional-labs/centauri/v5/app/keepers" + "github.com/notional-labs/centauri/v5/app/upgrades" + tfmdtypes "github.com/notional-labs/centauri/v5/x/transfermiddleware/types" ) func CreateUpgradeHandler( diff --git a/app/upgrades/v4_5/constants.go b/app/upgrades/v4_5/constants.go index f17b5dd49..ef7b9665d 100644 --- a/app/upgrades/v4_5/constants.go +++ b/app/upgrades/v4_5/constants.go @@ -1,6 +1,6 @@ package v45 -import "github.com/notional-labs/centauri/v4/app/upgrades" +import "github.com/notional-labs/centauri/v5/app/upgrades" const ( // UpgradeName defines the on-chain upgrade name for the Centauri upgrade. diff --git a/app/upgrades/v4_5/fork.go b/app/upgrades/v4_5/fork.go index cdb131975..d1d9b6d5f 100644 --- a/app/upgrades/v4_5/fork.go +++ b/app/upgrades/v4_5/fork.go @@ -12,7 +12,7 @@ import ( icahosttypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types" ibctransfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - "github.com/notional-labs/centauri/v4/app/keepers" + "github.com/notional-labs/centauri/v5/app/keepers" ) func RunForkLogic(ctx sdk.Context, appKeepers *keepers.AppKeepers) { diff --git a/app/upgrades/v4_5_1/constants.go b/app/upgrades/v4_5_1/constants.go index 6976f6a05..bae8d3337 100644 --- a/app/upgrades/v4_5_1/constants.go +++ b/app/upgrades/v4_5_1/constants.go @@ -1,6 +1,6 @@ package v4_5_1 -import "github.com/notional-labs/centauri/v4/app/upgrades" +import "github.com/notional-labs/centauri/v5/app/upgrades" const ( // UpgradeName defines the on-chain upgrade name for the Composable v5 upgrade. diff --git a/app/upgrades/v4_5_1/fork.go b/app/upgrades/v4_5_1/fork.go index 5c2cf8a9f..f0b85d60e 100644 --- a/app/upgrades/v4_5_1/fork.go +++ b/app/upgrades/v4_5_1/fork.go @@ -3,8 +3,8 @@ package v4_5_1 import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/notional-labs/centauri/v4/app/keepers" - rateLimitKeeper "github.com/notional-labs/centauri/v4/x/ratelimit/keeper" + "github.com/notional-labs/centauri/v5/app/keepers" + rateLimitKeeper "github.com/notional-labs/centauri/v5/x/ratelimit/keeper" ) func RunForkLogic(ctx sdk.Context, keepers *keepers.AppKeepers) { diff --git a/app/upgrades/v5/constants.go b/app/upgrades/v5/constants.go index 1bc1c269e..f73738fbf 100644 --- a/app/upgrades/v5/constants.go +++ b/app/upgrades/v5/constants.go @@ -2,7 +2,7 @@ package v5 import ( store "github.com/cosmos/cosmos-sdk/store/types" - "github.com/notional-labs/centauri/v4/app/upgrades" + "github.com/notional-labs/centauri/v5/app/upgrades" ) const ( diff --git a/app/upgrades/v5/upgrade.go b/app/upgrades/v5/upgrade.go index 5de1d507c..3e19763c2 100644 --- a/app/upgrades/v5/upgrade.go +++ b/app/upgrades/v5/upgrade.go @@ -5,9 +5,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - "github.com/notional-labs/centauri/v4/app/keepers" - "github.com/notional-labs/centauri/v4/app/upgrades" - "github.com/notional-labs/centauri/v4/x/ratelimit/types" + "github.com/notional-labs/centauri/v5/app/keepers" + "github.com/notional-labs/centauri/v5/app/upgrades" + "github.com/notional-labs/centauri/v5/x/ratelimit/types" ) const ( @@ -53,7 +53,7 @@ func CreateUpgradeHandler( Path: &path, Quota: "a, Flow: &flow, - MinRateLimitAmount: sdk.NewInt(1282_000_000), + MinRateLimitAmount: sdk.NewInt(1282_000_000), // decimal 6 } rlKeeper.SetRateLimit(ctx, uatomRateLimit) } else { @@ -86,11 +86,11 @@ func CreateUpgradeHandler( Path: &path, Quota: "a, Flow: &flow, - MinRateLimitAmount: sdk.NewInt(2267_000_000_000_000), + MinRateLimitAmount: sdk.NewInt(22_670_000_000_000), // decimal 10 } rlKeeper.SetRateLimit(ctx, dotRateLimit) } else { - dotRateLimit.MinRateLimitAmount = sdk.NewInt(2267_000_000_000_000) + dotRateLimit.MinRateLimitAmount = sdk.NewInt(22_670_000_000_000) rlKeeper.SetRateLimit(ctx, dotRateLimit) } // add ksm @@ -119,7 +119,7 @@ func CreateUpgradeHandler( Path: &path, Quota: "a, Flow: &flow, - MinRateLimitAmount: sdk.NewInt(510_000_000_000_000), + MinRateLimitAmount: sdk.NewInt(510_000_000_000_000), // decimal 12 } rlKeeper.SetRateLimit(ctx, ksmRateLimit) } else { @@ -152,11 +152,11 @@ func CreateUpgradeHandler( Path: &path, Quota: "a, Flow: &flow, - MinRateLimitAmount: sdk.NewInt(10_000_000_000_000_000), + MinRateLimitAmount: sdk.NewInt(10_000_000_000), // decimal 6 } rlKeeper.SetRateLimit(ctx, usdtRateLimit) } else { - usdtRateLimit.MinRateLimitAmount = sdk.NewInt(10_000_000_000_000_000) + usdtRateLimit.MinRateLimitAmount = sdk.NewInt(10_000_000_000) rlKeeper.SetRateLimit(ctx, usdtRateLimit) } diff --git a/bech32-migration/auth/auth.go b/bech32-migration/auth/auth.go index 89fabf2b8..ae1cd868f 100644 --- a/bech32-migration/auth/auth.go +++ b/bech32-migration/auth/auth.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/auth/types" vestingtypes "github.com/cosmos/cosmos-sdk/x/auth/vesting/types" - "github.com/notional-labs/centauri/v4/bech32-migration/utils" + "github.com/notional-labs/centauri/v5/bech32-migration/utils" ) func MigrateAddressBech32(ctx sdk.Context, storeKey storetypes.StoreKey, cdc codec.BinaryCodec) { diff --git a/bech32-migration/gov/gov.go b/bech32-migration/gov/gov.go index be4006e3e..40f222a6f 100644 --- a/bech32-migration/gov/gov.go +++ b/bech32-migration/gov/gov.go @@ -9,7 +9,7 @@ import ( v1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" - "github.com/notional-labs/centauri/v4/bech32-migration/utils" + "github.com/notional-labs/centauri/v5/bech32-migration/utils" ) func MigrateAddressBech32(ctx sdk.Context, storeKey storetypes.StoreKey, cdc codec.BinaryCodec) { diff --git a/bech32-migration/slashing/slashing.go b/bech32-migration/slashing/slashing.go index 6d34399ea..4964c5474 100644 --- a/bech32-migration/slashing/slashing.go +++ b/bech32-migration/slashing/slashing.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/x/slashing/types" - "github.com/notional-labs/centauri/v4/bech32-migration/utils" + "github.com/notional-labs/centauri/v5/bech32-migration/utils" ) func MigrateAddressBech32(ctx sdk.Context, storeKey storetypes.StoreKey, cdc codec.BinaryCodec) { diff --git a/bech32-migration/staking/staking.go b/bech32-migration/staking/staking.go index 7e500a31f..47147152a 100644 --- a/bech32-migration/staking/staking.go +++ b/bech32-migration/staking/staking.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/notional-labs/centauri/v4/bech32-migration/utils" + "github.com/notional-labs/centauri/v5/bech32-migration/utils" ) func MigrateAddressBech32(ctx sdk.Context, storeKey storetypes.StoreKey, cdc codec.BinaryCodec) { diff --git a/cmd/centaurid/cmd/genaccounts.go b/cmd/centaurid/cmd/genaccounts.go index b18d8d62c..37a68d1ec 100644 --- a/cmd/centaurid/cmd/genaccounts.go +++ b/cmd/centaurid/cmd/genaccounts.go @@ -8,7 +8,7 @@ import ( "github.com/spf13/cobra" - "github.com/notional-labs/centauri/v4/bech32-migration/utils" + "github.com/notional-labs/centauri/v5/bech32-migration/utils" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" diff --git a/cmd/centaurid/cmd/root.go b/cmd/centaurid/cmd/root.go index a4d0bd3e9..159891d1b 100644 --- a/cmd/centaurid/cmd/root.go +++ b/cmd/centaurid/cmd/root.go @@ -33,8 +33,8 @@ import ( genutilcli "github.com/cosmos/cosmos-sdk/x/genutil/client/cli" genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types" - "github.com/notional-labs/centauri/v4/app" - // "github.com/notional-labs/centauri/v4/app/params" + "github.com/notional-labs/centauri/v5/app" + // "github.com/notional-labs/centauri/v5/app/params" // this line is used by starport scaffolding # stargate/root/import ) diff --git a/cmd/centaurid/main.go b/cmd/centaurid/main.go index 58b8996e5..5c9cb1894 100644 --- a/cmd/centaurid/main.go +++ b/cmd/centaurid/main.go @@ -5,9 +5,9 @@ import ( svrcmd "github.com/cosmos/cosmos-sdk/server/cmd" - "github.com/notional-labs/centauri/v4/app" - cmd "github.com/notional-labs/centauri/v4/cmd/centaurid/cmd" - cmdcfg "github.com/notional-labs/centauri/v4/cmd/centaurid/config" + "github.com/notional-labs/centauri/v5/app" + cmd "github.com/notional-labs/centauri/v5/cmd/centaurid/cmd" + cmdcfg "github.com/notional-labs/centauri/v5/cmd/centaurid/config" ) func main() { diff --git a/custom/bank/bank_test.go b/custom/bank/bank_test.go index ed208413a..a4905ab3a 100644 --- a/custom/bank/bank_test.go +++ b/custom/bank/bank_test.go @@ -10,7 +10,7 @@ import ( clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" "github.com/stretchr/testify/suite" - customibctesting "github.com/notional-labs/centauri/v4/app/ibctesting" + customibctesting "github.com/notional-labs/centauri/v5/app/ibctesting" ) type CustomBankTestSuite struct { diff --git a/custom/bank/keeper/keeper.go b/custom/bank/keeper/keeper.go index 67cdd22da..a71599d8c 100644 --- a/custom/bank/keeper/keeper.go +++ b/custom/bank/keeper/keeper.go @@ -13,9 +13,9 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - banktypes "github.com/notional-labs/centauri/v4/custom/bank/types" + banktypes "github.com/notional-labs/centauri/v5/custom/bank/types" - transfermiddlewarekeeper "github.com/notional-labs/centauri/v4/x/transfermiddleware/keeper" + transfermiddlewarekeeper "github.com/notional-labs/centauri/v5/x/transfermiddleware/keeper" alliancekeeper "github.com/terra-money/alliance/x/alliance/keeper" alliancetypes "github.com/terra-money/alliance/x/alliance/types" diff --git a/custom/bank/module.go b/custom/bank/module.go index 431fffbb9..e55cda7ca 100644 --- a/custom/bank/module.go +++ b/custom/bank/module.go @@ -10,7 +10,7 @@ import ( bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" "github.com/cosmos/cosmos-sdk/x/bank/types" - custombankkeeper "github.com/notional-labs/centauri/v4/custom/bank/keeper" + custombankkeeper "github.com/notional-labs/centauri/v5/custom/bank/keeper" ) // AppModule wraps around the bank module and the bank keeper to return the right total supply ignoring bonded tokens diff --git a/go.mod b/go.mod index 62a3e1ad7..205c5c581 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/notional-labs/centauri/v4 +module github.com/notional-labs/centauri/v5 go 1.19 @@ -322,7 +322,7 @@ replace ( // ibc-go with wasm client github.com/cosmos/ibc-go/v7 => github.com/notional-labs/ibc-go/v7 v7.0.1-wasm-client.0.20230724144435-2b77d4a1ce70 - github.com/strangelove-ventures/packet-forward-middleware/v7 => github.com/notional-labs/packet-forward-middleware/v7 v7.0.0-20230720035542-4b1cd673ad3e + github.com/strangelove-ventures/packet-forward-middleware/v7 => github.com/notional-labs/packet-forward-middleware/v7 v7.0.0-20230828115741-8f5f501461be github.com/syndtr/goleveldb => github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 github.com/terra-money/alliance => github.com/notional-labs/alliance v1.0.1-0.20230523105704-66dba9499c01 diff --git a/go.sum b/go.sum index 836351acd..8738e523b 100644 --- a/go.sum +++ b/go.sum @@ -967,8 +967,8 @@ github.com/notional-labs/alliance v1.0.1-0.20230523105704-66dba9499c01 h1:koCsoc github.com/notional-labs/alliance v1.0.1-0.20230523105704-66dba9499c01/go.mod h1:GFQ8TsXDMTpu7kif0Dwddz6rxazy0ZJQHfN38ZmAodI= github.com/notional-labs/ibc-go/v7 v7.0.1-wasm-client.0.20230724144435-2b77d4a1ce70 h1:oZTUDZzUBp8D2h3uZfPQmZGVksrROqubHDASvFB/+u0= github.com/notional-labs/ibc-go/v7 v7.0.1-wasm-client.0.20230724144435-2b77d4a1ce70/go.mod h1:ISHo/Qitjtvj2svGmttaZv03zVXmS+uqvUyF9kFqlI0= -github.com/notional-labs/packet-forward-middleware/v7 v7.0.0-20230720035542-4b1cd673ad3e h1:5Jm678g0o1NJ8TibGYVyMf62pxwcfKgbd3GEgKyMyjI= -github.com/notional-labs/packet-forward-middleware/v7 v7.0.0-20230720035542-4b1cd673ad3e/go.mod h1:3jaW2/rb+utcdgh54fUxnvrWMFLe8OyQA0sgUOHYtCE= +github.com/notional-labs/packet-forward-middleware/v7 v7.0.0-20230828115741-8f5f501461be h1:fCcfI4QG6WsnTvmwG6BC/jLpTHOg0v4aOrBWDXVmohE= +github.com/notional-labs/packet-forward-middleware/v7 v7.0.0-20230828115741-8f5f501461be/go.mod h1:+Urw3FnxiiB7qs3CQaMWlgfntFkbebHlYNYt2y8JI/I= github.com/nxadm/tail v1.4.4/go.mod h1:kenIhsEOeOJmVchQTgglprH7qJGnHDVpk1VPCcaMI8A= github.com/nxadm/tail v1.4.8 h1:nPr65rt6Y5JFSKQO7qToXr7pePgD6Gwiw05lkbyAQTE= github.com/oklog/oklog v0.3.2/go.mod h1:FCV+B7mhrz4o+ueLpx+KqkyXRGMWOYEvfiXtdGtbWGs= diff --git a/x/ibc-hooks/client/cli/query.go b/x/ibc-hooks/client/cli/query.go index 2d44bff4f..d50b33721 100644 --- a/x/ibc-hooks/client/cli/query.go +++ b/x/ibc-hooks/client/cli/query.go @@ -9,9 +9,9 @@ import ( "github.com/cosmos/cosmos-sdk/version" "github.com/spf13/cobra" - "github.com/notional-labs/centauri/v4/x/ibc-hooks/keeper" + "github.com/notional-labs/centauri/v5/x/ibc-hooks/keeper" - "github.com/notional-labs/centauri/v4/x/ibc-hooks/types" + "github.com/notional-labs/centauri/v5/x/ibc-hooks/types" ) func indexRunCmd(cmd *cobra.Command, _ []string) error { diff --git a/x/ibc-hooks/keeper/keeper.go b/x/ibc-hooks/keeper/keeper.go index 9d8f84dd8..ce62455b2 100644 --- a/x/ibc-hooks/keeper/keeper.go +++ b/x/ibc-hooks/keeper/keeper.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/address" - "github.com/notional-labs/centauri/v4/x/ibc-hooks/types" + "github.com/notional-labs/centauri/v5/x/ibc-hooks/types" ) type ( diff --git a/x/ibc-hooks/module.go b/x/ibc-hooks/module.go index e0bc65430..3ccf43cc5 100644 --- a/x/ibc-hooks/module.go +++ b/x/ibc-hooks/module.go @@ -10,8 +10,8 @@ import ( "github.com/grpc-ecosystem/grpc-gateway/runtime" "github.com/spf13/cobra" - "github.com/notional-labs/centauri/v4/x/ibc-hooks/client/cli" - "github.com/notional-labs/centauri/v4/x/ibc-hooks/types" + "github.com/notional-labs/centauri/v5/x/ibc-hooks/client/cli" + "github.com/notional-labs/centauri/v5/x/ibc-hooks/types" cdctypes "github.com/cosmos/cosmos-sdk/codec/types" diff --git a/x/ibc-hooks/relay_test.go b/x/ibc-hooks/relay_test.go index 8f33c728e..a76b2c2dc 100644 --- a/x/ibc-hooks/relay_test.go +++ b/x/ibc-hooks/relay_test.go @@ -10,8 +10,8 @@ import ( clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" "github.com/stretchr/testify/suite" - customibctesting "github.com/notional-labs/centauri/v4/app/ibctesting" - ibchookskeeper "github.com/notional-labs/centauri/v4/x/ibc-hooks/keeper" + customibctesting "github.com/notional-labs/centauri/v5/app/ibctesting" + ibchookskeeper "github.com/notional-labs/centauri/v5/x/ibc-hooks/keeper" ) // TODO: use testsuite here. diff --git a/x/ibc-hooks/wasm_hook.go b/x/ibc-hooks/wasm_hook.go index c5c4100cd..a69a3b5bb 100644 --- a/x/ibc-hooks/wasm_hook.go +++ b/x/ibc-hooks/wasm_hook.go @@ -11,8 +11,8 @@ import ( channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" - "github.com/notional-labs/centauri/v4/x/ibc-hooks/keeper" - "github.com/notional-labs/centauri/v4/x/ibc-hooks/types" + "github.com/notional-labs/centauri/v5/x/ibc-hooks/keeper" + "github.com/notional-labs/centauri/v5/x/ibc-hooks/types" errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/mint/abci.go b/x/mint/abci.go index 929bc5a06..fa4579202 100644 --- a/x/mint/abci.go +++ b/x/mint/abci.go @@ -6,8 +6,8 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/notional-labs/centauri/v4/x/mint/keeper" - "github.com/notional-labs/centauri/v4/x/mint/types" + "github.com/notional-labs/centauri/v5/x/mint/keeper" + "github.com/notional-labs/centauri/v5/x/mint/types" ) // BeginBlocker mints new tokens for the previous block. diff --git a/x/mint/client/cli/query.go b/x/mint/client/cli/query.go index 8c17c4e00..e8ea5154a 100644 --- a/x/mint/client/cli/query.go +++ b/x/mint/client/cli/query.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" - "github.com/notional-labs/centauri/v4/x/mint/types" + "github.com/notional-labs/centauri/v5/x/mint/types" ) // GetQueryCmd returns the cli query commands for the minting module. diff --git a/x/mint/client/cli/tx.go b/x/mint/client/cli/tx.go index 0837d2d67..1c89d5367 100644 --- a/x/mint/client/cli/tx.go +++ b/x/mint/client/cli/tx.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/spf13/cobra" - "github.com/notional-labs/centauri/v4/x/mint/types" + "github.com/notional-labs/centauri/v5/x/mint/types" ) // GetTxCmd returns the tx commands for mint diff --git a/x/mint/keeper/genesis.go b/x/mint/keeper/genesis.go index f866823ed..c81cd6e8f 100644 --- a/x/mint/keeper/genesis.go +++ b/x/mint/keeper/genesis.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/notional-labs/centauri/v4/x/mint/types" + "github.com/notional-labs/centauri/v5/x/mint/types" ) // InitGenesis new mint genesis diff --git a/x/mint/keeper/grpc_query.go b/x/mint/keeper/grpc_query.go index 62ed90e40..0ce76b45c 100644 --- a/x/mint/keeper/grpc_query.go +++ b/x/mint/keeper/grpc_query.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/notional-labs/centauri/v4/x/mint/types" + "github.com/notional-labs/centauri/v5/x/mint/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/mint/keeper/keeper.go b/x/mint/keeper/keeper.go index 9cf41f3bd..cd9e95606 100644 --- a/x/mint/keeper/keeper.go +++ b/x/mint/keeper/keeper.go @@ -10,7 +10,7 @@ import ( storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/notional-labs/centauri/v4/x/mint/types" + "github.com/notional-labs/centauri/v5/x/mint/types" ) // Keeper of the mint store diff --git a/x/mint/keeper/msg_server.go b/x/mint/keeper/msg_server.go index 124f25b39..89a6c2876 100644 --- a/x/mint/keeper/msg_server.go +++ b/x/mint/keeper/msg_server.go @@ -8,7 +8,7 @@ import ( govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/notional-labs/centauri/v4/x/mint/types" + "github.com/notional-labs/centauri/v5/x/mint/types" ) var _ types.MsgServer = msgServer{} diff --git a/x/mint/module.go b/x/mint/module.go index 022167197..1769e9d05 100644 --- a/x/mint/module.go +++ b/x/mint/module.go @@ -16,10 +16,10 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/notional-labs/centauri/v4/x/mint/client/cli" - "github.com/notional-labs/centauri/v4/x/mint/keeper" - "github.com/notional-labs/centauri/v4/x/mint/simulation" - "github.com/notional-labs/centauri/v4/x/mint/types" + "github.com/notional-labs/centauri/v5/x/mint/client/cli" + "github.com/notional-labs/centauri/v5/x/mint/keeper" + "github.com/notional-labs/centauri/v5/x/mint/simulation" + "github.com/notional-labs/centauri/v5/x/mint/types" ) var ( diff --git a/x/mint/simulation/decoder.go b/x/mint/simulation/decoder.go index 1672b2c12..14f17c7db 100644 --- a/x/mint/simulation/decoder.go +++ b/x/mint/simulation/decoder.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec" "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/notional-labs/centauri/v4/x/mint/types" + "github.com/notional-labs/centauri/v5/x/mint/types" ) // NewDecodeStore returns a decoder function closure that unmarshals the KVPair's diff --git a/x/mint/simulation/decoder_test.go b/x/mint/simulation/decoder_test.go index 041f6277c..f8d51a8c8 100644 --- a/x/mint/simulation/decoder_test.go +++ b/x/mint/simulation/decoder_test.go @@ -10,8 +10,8 @@ import ( "github.com/cosmos/cosmos-sdk/types/kv" "github.com/cosmos/cosmos-sdk/types/module/testutil" - "github.com/notional-labs/centauri/v4/x/mint/simulation" - centauriminttypes "github.com/notional-labs/centauri/v4/x/mint/types" + "github.com/notional-labs/centauri/v5/x/mint/simulation" + centauriminttypes "github.com/notional-labs/centauri/v5/x/mint/types" ) func TestDecodeStore(t *testing.T) { diff --git a/x/mint/simulation/genesis.go b/x/mint/simulation/genesis.go index 5359d2305..8aba1bcc2 100644 --- a/x/mint/simulation/genesis.go +++ b/x/mint/simulation/genesis.go @@ -9,7 +9,7 @@ import ( simtypes "github.com/cosmos/cosmos-sdk/types/simulation" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/notional-labs/centauri/v4/x/mint/types" + "github.com/notional-labs/centauri/v5/x/mint/types" ) // Simulation parameter constants diff --git a/x/mint/simulation/genesis_test.go b/x/mint/simulation/genesis_test.go index d02138e61..8cc2fac34 100644 --- a/x/mint/simulation/genesis_test.go +++ b/x/mint/simulation/genesis_test.go @@ -14,8 +14,8 @@ import ( simtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/mint" - "github.com/notional-labs/centauri/v4/x/mint/simulation" - "github.com/notional-labs/centauri/v4/x/mint/types" + "github.com/notional-labs/centauri/v5/x/mint/simulation" + "github.com/notional-labs/centauri/v5/x/mint/types" ) // TestRandomizedGenState tests the normal scenario of applying RandomizedGenState. diff --git a/x/mint/simulation/proposals.go b/x/mint/simulation/proposals.go index 1ecc11e3a..d98b8d360 100644 --- a/x/mint/simulation/proposals.go +++ b/x/mint/simulation/proposals.go @@ -8,7 +8,7 @@ import ( simtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" - "github.com/notional-labs/centauri/v4/x/mint/types" + "github.com/notional-labs/centauri/v5/x/mint/types" ) // Simulation operation weights constants diff --git a/x/mint/simulation/proposals_test.go b/x/mint/simulation/proposals_test.go index d6226bb9f..56d62c167 100644 --- a/x/mint/simulation/proposals_test.go +++ b/x/mint/simulation/proposals_test.go @@ -11,8 +11,8 @@ import ( "github.com/cosmos/cosmos-sdk/types/address" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/notional-labs/centauri/v4/x/mint/simulation" - "github.com/notional-labs/centauri/v4/x/mint/types" + "github.com/notional-labs/centauri/v5/x/mint/simulation" + "github.com/notional-labs/centauri/v5/x/mint/types" ) func TestProposalMsgs(t *testing.T) { diff --git a/x/ratelimit/client/cli/query.go b/x/ratelimit/client/cli/query.go index c88e39a33..863873fcd 100644 --- a/x/ratelimit/client/cli/query.go +++ b/x/ratelimit/client/cli/query.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" - "github.com/notional-labs/centauri/v4/x/ratelimit/types" + "github.com/notional-labs/centauri/v5/x/ratelimit/types" ) // GetQueryCmd returns the cli query commands for this module. diff --git a/x/ratelimit/client/cli/tx.go b/x/ratelimit/client/cli/tx.go index fed5a5efe..f4bdde62b 100644 --- a/x/ratelimit/client/cli/tx.go +++ b/x/ratelimit/client/cli/tx.go @@ -5,7 +5,7 @@ import ( "github.com/spf13/cobra" - "github.com/notional-labs/centauri/v4/x/ratelimit/types" + "github.com/notional-labs/centauri/v5/x/ratelimit/types" ) // GetTxCmd returns the tx commands for router diff --git a/x/ratelimit/ibc_middleware.go b/x/ratelimit/ibc_middleware.go index 2cd090891..9e3d6904f 100644 --- a/x/ratelimit/ibc_middleware.go +++ b/x/ratelimit/ibc_middleware.go @@ -3,7 +3,7 @@ package ratelimit import ( "fmt" - "github.com/notional-labs/centauri/v4/x/ratelimit/keeper" + "github.com/notional-labs/centauri/v5/x/ratelimit/keeper" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/ratelimit/keeper/abci.go b/x/ratelimit/keeper/abci.go index bf002148d..2f097721a 100644 --- a/x/ratelimit/keeper/abci.go +++ b/x/ratelimit/keeper/abci.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/notional-labs/centauri/v4/x/ratelimit/types" + "github.com/notional-labs/centauri/v5/x/ratelimit/types" ) // BeginBlocker of epochs module. diff --git a/x/ratelimit/keeper/epoch.go b/x/ratelimit/keeper/epoch.go index 266adf938..bb993ce56 100644 --- a/x/ratelimit/keeper/epoch.go +++ b/x/ratelimit/keeper/epoch.go @@ -6,7 +6,7 @@ import ( "github.com/gogo/protobuf/proto" - "github.com/notional-labs/centauri/v4/x/ratelimit/types" + "github.com/notional-labs/centauri/v5/x/ratelimit/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/ratelimit/keeper/genesis.go b/x/ratelimit/keeper/genesis.go index ff1cdf7bc..1f50a23ad 100644 --- a/x/ratelimit/keeper/genesis.go +++ b/x/ratelimit/keeper/genesis.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/notional-labs/centauri/v4/x/ratelimit/types" + "github.com/notional-labs/centauri/v5/x/ratelimit/types" ) func (k Keeper) InitGenesis(ctx sdk.Context, genState types.GenesisState) { diff --git a/x/ratelimit/keeper/grpc_query.go b/x/ratelimit/keeper/grpc_query.go index b92098344..87ff085c6 100644 --- a/x/ratelimit/keeper/grpc_query.go +++ b/x/ratelimit/keeper/grpc_query.go @@ -8,7 +8,7 @@ import ( transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" ibctmtypes "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - "github.com/notional-labs/centauri/v4/x/ratelimit/types" + "github.com/notional-labs/centauri/v5/x/ratelimit/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/ratelimit/keeper/keeper.go b/x/ratelimit/keeper/keeper.go index f9b4dc8f1..d2b8cc24b 100644 --- a/x/ratelimit/keeper/keeper.go +++ b/x/ratelimit/keeper/keeper.go @@ -10,8 +10,8 @@ import ( paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" - "github.com/notional-labs/centauri/v4/x/ratelimit/types" - tfmwkeeper "github.com/notional-labs/centauri/v4/x/transfermiddleware/keeper" + "github.com/notional-labs/centauri/v5/x/ratelimit/types" + tfmwkeeper "github.com/notional-labs/centauri/v5/x/transfermiddleware/keeper" ) type Keeper struct { diff --git a/x/ratelimit/keeper/msg_server.go b/x/ratelimit/keeper/msg_server.go index 6a2979e33..3ea6ce7d9 100644 --- a/x/ratelimit/keeper/msg_server.go +++ b/x/ratelimit/keeper/msg_server.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/notional-labs/centauri/v4/x/ratelimit/types" + "github.com/notional-labs/centauri/v5/x/ratelimit/types" ) var _ types.MsgServer = msgServer{} diff --git a/x/ratelimit/keeper/packet.go b/x/ratelimit/keeper/packet.go index f6377b58f..a023960b8 100644 --- a/x/ratelimit/keeper/packet.go +++ b/x/ratelimit/keeper/packet.go @@ -14,7 +14,7 @@ import ( channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" - "github.com/notional-labs/centauri/v4/x/ratelimit/types" + "github.com/notional-labs/centauri/v5/x/ratelimit/types" ) type RateLimitedPacketInfo struct { diff --git a/x/ratelimit/keeper/rate_limit.go b/x/ratelimit/keeper/rate_limit.go index 9e1f6813e..4f39808cf 100644 --- a/x/ratelimit/keeper/rate_limit.go +++ b/x/ratelimit/keeper/rate_limit.go @@ -11,7 +11,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/notional-labs/centauri/v4/x/ratelimit/types" + "github.com/notional-labs/centauri/v5/x/ratelimit/types" ) // Get the rate limit byte key built from the denom and channelID diff --git a/x/ratelimit/module.go b/x/ratelimit/module.go index d14753c8d..e523d8f91 100644 --- a/x/ratelimit/module.go +++ b/x/ratelimit/module.go @@ -16,9 +16,9 @@ import ( "github.com/grpc-ecosystem/grpc-gateway/runtime" "github.com/spf13/cobra" - "github.com/notional-labs/centauri/v4/x/ratelimit/client/cli" - "github.com/notional-labs/centauri/v4/x/ratelimit/keeper" - "github.com/notional-labs/centauri/v4/x/ratelimit/types" + "github.com/notional-labs/centauri/v5/x/ratelimit/client/cli" + "github.com/notional-labs/centauri/v5/x/ratelimit/keeper" + "github.com/notional-labs/centauri/v5/x/ratelimit/types" ) var ( diff --git a/x/ratelimit/relay_test.go b/x/ratelimit/relay_test.go index 39e8cc44f..ca821bb30 100644 --- a/x/ratelimit/relay_test.go +++ b/x/ratelimit/relay_test.go @@ -8,8 +8,8 @@ import ( clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" "github.com/stretchr/testify/suite" - customibctesting "github.com/notional-labs/centauri/v4/app/ibctesting" - ratelimittypes "github.com/notional-labs/centauri/v4/x/ratelimit/types" + customibctesting "github.com/notional-labs/centauri/v5/app/ibctesting" + ratelimittypes "github.com/notional-labs/centauri/v5/x/ratelimit/types" ) type RateLimitTestSuite struct { diff --git a/x/transfermiddleware/client/cli/cli.go b/x/transfermiddleware/client/cli/cli.go index d34a09179..6e4aec095 100644 --- a/x/transfermiddleware/client/cli/cli.go +++ b/x/transfermiddleware/client/cli/cli.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/version" "github.com/spf13/cobra" - "github.com/notional-labs/centauri/v4/x/transfermiddleware/types" + "github.com/notional-labs/centauri/v5/x/transfermiddleware/types" ) // GetQueryCmd returns the query commands for router diff --git a/x/transfermiddleware/client/cli/tx.go b/x/transfermiddleware/client/cli/tx.go index 864e5c2ef..65757d25d 100644 --- a/x/transfermiddleware/client/cli/tx.go +++ b/x/transfermiddleware/client/cli/tx.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/version" "github.com/spf13/cobra" - "github.com/notional-labs/centauri/v4/x/transfermiddleware/types" + "github.com/notional-labs/centauri/v5/x/transfermiddleware/types" ) // GetTxCmd returns the tx commands for router diff --git a/x/transfermiddleware/ibc_ante_test.go b/x/transfermiddleware/ibc_ante_test.go index c5b8e5216..5eb3fcd6e 100644 --- a/x/transfermiddleware/ibc_ante_test.go +++ b/x/transfermiddleware/ibc_ante_test.go @@ -12,7 +12,7 @@ import ( wasmtypes "github.com/cosmos/ibc-go/v7/modules/light-clients/08-wasm/types" "github.com/stretchr/testify/suite" - customibctesting "github.com/notional-labs/centauri/v4/app/ibctesting" + customibctesting "github.com/notional-labs/centauri/v5/app/ibctesting" ) var govAuthorityAddress = "centauri10556m38z4x6pqalr9rl5ytf3cff8q46nk85k9m" diff --git a/x/transfermiddleware/ibc_middleware.go b/x/transfermiddleware/ibc_middleware.go index de9df6c0a..cc00c0c5d 100644 --- a/x/transfermiddleware/ibc_middleware.go +++ b/x/transfermiddleware/ibc_middleware.go @@ -11,7 +11,7 @@ import ( porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" - "github.com/notional-labs/centauri/v4/x/transfermiddleware/keeper" + "github.com/notional-labs/centauri/v5/x/transfermiddleware/keeper" ) var _ porttypes.Middleware = &IBCMiddleware{} diff --git a/x/transfermiddleware/keeper/abci.go b/x/transfermiddleware/keeper/abci.go index 4b449a450..4712e28ce 100644 --- a/x/transfermiddleware/keeper/abci.go +++ b/x/transfermiddleware/keeper/abci.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/notional-labs/centauri/v4/x/transfermiddleware/types" + "github.com/notional-labs/centauri/v5/x/transfermiddleware/types" ) // BeginBlocker of epochs module. diff --git a/x/transfermiddleware/keeper/genesis.go b/x/transfermiddleware/keeper/genesis.go index c1c34fa6c..0004a28d4 100644 --- a/x/transfermiddleware/keeper/genesis.go +++ b/x/transfermiddleware/keeper/genesis.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/notional-labs/centauri/v4/x/transfermiddleware/types" + "github.com/notional-labs/centauri/v5/x/transfermiddleware/types" ) // TODO: add init genesis logic diff --git a/x/transfermiddleware/keeper/genesis_test.go b/x/transfermiddleware/keeper/genesis_test.go index 1e5ee07c8..0084b58bd 100644 --- a/x/transfermiddleware/keeper/genesis_test.go +++ b/x/transfermiddleware/keeper/genesis_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - helpers "github.com/notional-labs/centauri/v4/app/helpers" - "github.com/notional-labs/centauri/v4/x/transfermiddleware/types" + helpers "github.com/notional-labs/centauri/v5/app/helpers" + "github.com/notional-labs/centauri/v5/x/transfermiddleware/types" ) func TestTFMInitGenesis(t *testing.T) { diff --git a/x/transfermiddleware/keeper/grpc_query.go b/x/transfermiddleware/keeper/grpc_query.go index 88f6742e2..cb654fa02 100644 --- a/x/transfermiddleware/keeper/grpc_query.go +++ b/x/transfermiddleware/keeper/grpc_query.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - "github.com/notional-labs/centauri/v4/x/transfermiddleware/types" + "github.com/notional-labs/centauri/v5/x/transfermiddleware/types" ) func (k Keeper) ParaTokenInfo(c context.Context, req *types.QueryParaTokenInfoRequest) (*types.QueryParaTokenInfoResponse, error) { diff --git a/x/transfermiddleware/keeper/ics4wrapper.go b/x/transfermiddleware/keeper/ics4wrapper.go index a6aeefe74..703ff20c5 100644 --- a/x/transfermiddleware/keeper/ics4wrapper.go +++ b/x/transfermiddleware/keeper/ics4wrapper.go @@ -12,7 +12,7 @@ import ( channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" - "github.com/notional-labs/centauri/v4/x/transfermiddleware/types" + "github.com/notional-labs/centauri/v5/x/transfermiddleware/types" ) func (keeper Keeper) hasParachainIBCTokenInfo(ctx sdk.Context, nativeDenom string) bool { diff --git a/x/transfermiddleware/keeper/keeper.go b/x/transfermiddleware/keeper/keeper.go index fe1f13356..e28c11a17 100644 --- a/x/transfermiddleware/keeper/keeper.go +++ b/x/transfermiddleware/keeper/keeper.go @@ -14,7 +14,7 @@ import ( porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" "github.com/cosmos/ibc-go/v7/modules/core/exported" - "github.com/notional-labs/centauri/v4/x/transfermiddleware/types" + "github.com/notional-labs/centauri/v5/x/transfermiddleware/types" ) type Keeper struct { diff --git a/x/transfermiddleware/keeper/msg_server.go b/x/transfermiddleware/keeper/msg_server.go index b26623fdb..dba2d76d7 100644 --- a/x/transfermiddleware/keeper/msg_server.go +++ b/x/transfermiddleware/keeper/msg_server.go @@ -9,7 +9,7 @@ import ( "cosmossdk.io/errors" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/notional-labs/centauri/v4/x/transfermiddleware/types" + "github.com/notional-labs/centauri/v5/x/transfermiddleware/types" ) var _ types.MsgServer = msgServer{} diff --git a/x/transfermiddleware/keeper/params.go b/x/transfermiddleware/keeper/params.go index e25206c39..890882030 100644 --- a/x/transfermiddleware/keeper/params.go +++ b/x/transfermiddleware/keeper/params.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/notional-labs/centauri/v4/x/transfermiddleware/types" + "github.com/notional-labs/centauri/v5/x/transfermiddleware/types" ) func (k Keeper) GetParams(ctx sdk.Context) (params types.Params) { diff --git a/x/transfermiddleware/keeper/relay.go b/x/transfermiddleware/keeper/relay.go index 4ec07e2b0..ecaedbd79 100644 --- a/x/transfermiddleware/keeper/relay.go +++ b/x/transfermiddleware/keeper/relay.go @@ -6,7 +6,7 @@ import ( transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - "github.com/notional-labs/centauri/v4/x/transfermiddleware/types" + "github.com/notional-labs/centauri/v5/x/transfermiddleware/types" ) func (k Keeper) OnRecvPacket(ctx sdk.Context, packet channeltypes.Packet, data transfertypes.FungibleTokenPacketData) error { diff --git a/x/transfermiddleware/module.go b/x/transfermiddleware/module.go index 9d7874bf3..a0421ce3f 100644 --- a/x/transfermiddleware/module.go +++ b/x/transfermiddleware/module.go @@ -16,9 +16,9 @@ import ( "github.com/grpc-ecosystem/grpc-gateway/runtime" "github.com/spf13/cobra" - "github.com/notional-labs/centauri/v4/x/transfermiddleware/client/cli" - "github.com/notional-labs/centauri/v4/x/transfermiddleware/keeper" - "github.com/notional-labs/centauri/v4/x/transfermiddleware/types" + "github.com/notional-labs/centauri/v5/x/transfermiddleware/client/cli" + "github.com/notional-labs/centauri/v5/x/transfermiddleware/keeper" + "github.com/notional-labs/centauri/v5/x/transfermiddleware/types" ) var ( diff --git a/x/transfermiddleware/pfm_test.go b/x/transfermiddleware/pfm_test.go index 804a7d881..1cef4d519 100644 --- a/x/transfermiddleware/pfm_test.go +++ b/x/transfermiddleware/pfm_test.go @@ -13,7 +13,7 @@ import ( clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" "github.com/stretchr/testify/suite" - customibctesting "github.com/notional-labs/centauri/v4/app/ibctesting" + customibctesting "github.com/notional-labs/centauri/v5/app/ibctesting" ) type PacketMetadata struct { diff --git a/x/transfermiddleware/relay_test.go b/x/transfermiddleware/relay_test.go index 7c7ec36ca..5753e4bdf 100644 --- a/x/transfermiddleware/relay_test.go +++ b/x/transfermiddleware/relay_test.go @@ -10,7 +10,7 @@ import ( clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" "github.com/stretchr/testify/suite" - customibctesting "github.com/notional-labs/centauri/v4/app/ibctesting" + customibctesting "github.com/notional-labs/centauri/v5/app/ibctesting" ) // TODO: use testsuite here. diff --git a/x/transfermiddleware/types/info_test.go b/x/transfermiddleware/types/info_test.go index 744033b95..aa19f53f3 100644 --- a/x/transfermiddleware/types/info_test.go +++ b/x/transfermiddleware/types/info_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/notional-labs/centauri/v4/x/transfermiddleware/types" + "github.com/notional-labs/centauri/v5/x/transfermiddleware/types" ) func TestValidateBasic(t *testing.T) { diff --git a/x/tx-boundary/ante/antetest/ante_test.go b/x/tx-boundary/ante/antetest/ante_test.go index 86f22435c..d4588e6ec 100644 --- a/x/tx-boundary/ante/antetest/ante_test.go +++ b/x/tx-boundary/ante/antetest/ante_test.go @@ -9,8 +9,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/x/authz" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - txboundaryAnte "github.com/notional-labs/centauri/v4/x/tx-boundary/ante" - "github.com/notional-labs/centauri/v4/x/tx-boundary/types" + txboundaryAnte "github.com/notional-labs/centauri/v5/x/tx-boundary/ante" + "github.com/notional-labs/centauri/v5/x/tx-boundary/types" "github.com/stretchr/testify/require" "github.com/stretchr/testify/suite" ) diff --git a/x/tx-boundary/ante/antetest/ante_test_setup.go b/x/tx-boundary/ante/antetest/ante_test_setup.go index 33ef2fb6c..fd75d81a0 100644 --- a/x/tx-boundary/ante/antetest/ante_test_setup.go +++ b/x/tx-boundary/ante/antetest/ante_test_setup.go @@ -17,8 +17,8 @@ import ( xauthsigning "github.com/cosmos/cosmos-sdk/x/auth/signing" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" "github.com/cosmos/ibc-go/v7/testing/mock" - "github.com/notional-labs/centauri/v4/app" - "github.com/notional-labs/centauri/v4/app/helpers" + "github.com/notional-labs/centauri/v5/app" + "github.com/notional-labs/centauri/v5/app/helpers" "github.com/stretchr/testify/require" "github.com/stretchr/testify/suite" ) diff --git a/x/tx-boundary/ante/decorate.go b/x/tx-boundary/ante/decorate.go index 8bfec5a8f..9f2e6ca8b 100644 --- a/x/tx-boundary/ante/decorate.go +++ b/x/tx-boundary/ante/decorate.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/authz" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - txBoundaryKeeper "github.com/notional-labs/centauri/v4/x/tx-boundary/keeper" + txBoundaryKeeper "github.com/notional-labs/centauri/v5/x/tx-boundary/keeper" ) type StakingPermissionDecorator struct { diff --git a/x/tx-boundary/client/cli/query.go b/x/tx-boundary/client/cli/query.go index 984b9fb9f..4054769b3 100644 --- a/x/tx-boundary/client/cli/query.go +++ b/x/tx-boundary/client/cli/query.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" - "github.com/notional-labs/centauri/v4/x/tx-boundary/types" + "github.com/notional-labs/centauri/v5/x/tx-boundary/types" ) // GetQueryCmd returns the cli query commands for the tx-boundary module. diff --git a/x/tx-boundary/client/cli/tx.go b/x/tx-boundary/client/cli/tx.go index e0899b12e..bb630ed5f 100644 --- a/x/tx-boundary/client/cli/tx.go +++ b/x/tx-boundary/client/cli/tx.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/client/tx" - "github.com/notional-labs/centauri/v4/x/tx-boundary/types" + "github.com/notional-labs/centauri/v5/x/tx-boundary/types" "github.com/spf13/cobra" ) diff --git a/x/tx-boundary/keeper/genensis.go b/x/tx-boundary/keeper/genensis.go index a871d459c..5050809b3 100644 --- a/x/tx-boundary/keeper/genensis.go +++ b/x/tx-boundary/keeper/genensis.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/notional-labs/centauri/v4/x/tx-boundary/types" + "github.com/notional-labs/centauri/v5/x/tx-boundary/types" ) // InitGenesis initializes the capability module's state from a provided genesis diff --git a/x/tx-boundary/keeper/grpc_query.go b/x/tx-boundary/keeper/grpc_query.go index 772ae2f5c..256f85dce 100644 --- a/x/tx-boundary/keeper/grpc_query.go +++ b/x/tx-boundary/keeper/grpc_query.go @@ -4,7 +4,7 @@ import ( "context" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/notional-labs/centauri/v4/x/tx-boundary/types" + "github.com/notional-labs/centauri/v5/x/tx-boundary/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/tx-boundary/keeper/keeper.go b/x/tx-boundary/keeper/keeper.go index 135ef46a9..e8dd0a0fd 100644 --- a/x/tx-boundary/keeper/keeper.go +++ b/x/tx-boundary/keeper/keeper.go @@ -9,7 +9,7 @@ import ( storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/notional-labs/centauri/v4/x/tx-boundary/types" + "github.com/notional-labs/centauri/v5/x/tx-boundary/types" ) // Keeper struct diff --git a/x/tx-boundary/keeper/keeper_test.go b/x/tx-boundary/keeper/keeper_test.go index ef1ab015e..d51f5660e 100644 --- a/x/tx-boundary/keeper/keeper_test.go +++ b/x/tx-boundary/keeper/keeper_test.go @@ -8,9 +8,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/suite" - "github.com/notional-labs/centauri/v4/app" - "github.com/notional-labs/centauri/v4/app/helpers" - "github.com/notional-labs/centauri/v4/x/tx-boundary/types" + "github.com/notional-labs/centauri/v5/app" + "github.com/notional-labs/centauri/v5/app/helpers" + "github.com/notional-labs/centauri/v5/x/tx-boundary/types" ) type KeeperTestSuite struct { diff --git a/x/tx-boundary/module.go b/x/tx-boundary/module.go index dd980fe34..9d32bd2b4 100644 --- a/x/tx-boundary/module.go +++ b/x/tx-boundary/module.go @@ -15,9 +15,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/notional-labs/centauri/v4/x/tx-boundary/client/cli" - "github.com/notional-labs/centauri/v4/x/tx-boundary/keeper" - "github.com/notional-labs/centauri/v4/x/tx-boundary/types" + "github.com/notional-labs/centauri/v5/x/tx-boundary/client/cli" + "github.com/notional-labs/centauri/v5/x/tx-boundary/keeper" + "github.com/notional-labs/centauri/v5/x/tx-boundary/types" ) var (