Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

rename module #481

Draft
wants to merge 1 commit into
base: release/v6.5.x
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions app/ante/ante.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ import (
ibcante "github.com/cosmos/ibc-go/v7/modules/core/ante"
ibckeeper "github.com/cosmos/ibc-go/v7/modules/core/keeper"

tfmwKeeper "github.com/ComposableFi/composable-cosmos/v6/x/transfermiddleware/keeper"
txBoundaryAnte "github.com/ComposableFi/composable-cosmos/v6/x/tx-boundary/ante"
txBoundaryKeeper "github.com/ComposableFi/composable-cosmos/v6/x/tx-boundary/keeper"
"github.com/cosmos/cosmos-sdk/codec"
servertypes "github.com/cosmos/cosmos-sdk/server/types"
sdk "github.com/cosmos/cosmos-sdk/types"
ante "github.com/cosmos/cosmos-sdk/x/auth/ante"
"github.com/cosmos/cosmos-sdk/x/auth/signing"
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
tfmwKeeper "github.com/notional-labs/composable/v6/x/transfermiddleware/keeper"
txBoundaryAnte "github.com/notional-labs/composable/v6/x/tx-boundary/ante"
txBoundaryKeeper "github.com/notional-labs/composable/v6/x/tx-boundary/keeper"
)

// Link to default ante handler used by cosmos sdk:
Expand Down
2 changes: 1 addition & 1 deletion app/ante/ibc_ante.go
Original file line number Diff line number Diff line change
Expand Up @@ -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/composable/v6/x/transfermiddleware/keeper"
tfmwKeeper "github.com/ComposableFi/composable-cosmos/v6/x/transfermiddleware/keeper"
)

type IBCPermissionDecorator struct {
Expand Down
42 changes: 21 additions & 21 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ import (
vestingtypes "github.com/cosmos/cosmos-sdk/x/auth/vesting/types"
"github.com/cosmos/cosmos-sdk/x/bank"

"github.com/notional-labs/composable/v6/app/keepers"
"github.com/notional-labs/composable/v6/app/upgrades/v6_5_0"
"github.com/ComposableFi/composable-cosmos/v6/app/keepers"
"github.com/ComposableFi/composable-cosmos/v6/app/upgrades/v6_5_0"

// bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper"

Expand Down Expand Up @@ -74,6 +74,8 @@ import (
slashingtypes "github.com/cosmos/cosmos-sdk/x/slashing/types"
"github.com/cosmos/cosmos-sdk/x/staking"

customibctransfer "github.com/ComposableFi/composable-cosmos/v6/custom/ibc-transfer"
customstaking "github.com/ComposableFi/composable-cosmos/v6/custom/staking"
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"
"github.com/cosmos/cosmos-sdk/x/upgrade"
upgradeclient "github.com/cosmos/cosmos-sdk/x/upgrade/client"
Expand All @@ -87,8 +89,6 @@ import (
ibcclientclient "github.com/cosmos/ibc-go/v7/modules/core/02-client/client"
ibchost "github.com/cosmos/ibc-go/v7/modules/core/exported"
ibckeeper "github.com/cosmos/ibc-go/v7/modules/core/keeper"
customibctransfer "github.com/notional-labs/composable/v6/custom/ibc-transfer"
customstaking "github.com/notional-labs/composable/v6/custom/staking"
"github.com/spf13/cast"
icq "github.com/strangelove-ventures/async-icq/v7"
icqtypes "github.com/strangelove-ventures/async-icq/v7/types"
Expand All @@ -99,37 +99,37 @@ import (
alliancemoduleclient "github.com/terra-money/alliance/x/alliance/client"
alliancemoduletypes "github.com/terra-money/alliance/x/alliance/types"

custombankmodule "github.com/notional-labs/composable/v6/custom/bank"
custombankmodule "github.com/ComposableFi/composable-cosmos/v6/custom/bank"

"github.com/notional-labs/composable/v6/app/ante"
"github.com/notional-labs/composable/v6/x/ibctransfermiddleware"
"github.com/notional-labs/composable/v6/x/stakingmiddleware"
transfermiddleware "github.com/notional-labs/composable/v6/x/transfermiddleware"
transfermiddlewaretypes "github.com/notional-labs/composable/v6/x/transfermiddleware/types"
"github.com/ComposableFi/composable-cosmos/v6/app/ante"
"github.com/ComposableFi/composable-cosmos/v6/x/ibctransfermiddleware"
"github.com/ComposableFi/composable-cosmos/v6/x/stakingmiddleware"
transfermiddleware "github.com/ComposableFi/composable-cosmos/v6/x/transfermiddleware"
transfermiddlewaretypes "github.com/ComposableFi/composable-cosmos/v6/x/transfermiddleware/types"

txBoundary "github.com/notional-labs/composable/v6/x/tx-boundary"
txBoundaryTypes "github.com/notional-labs/composable/v6/x/tx-boundary/types"
txBoundary "github.com/ComposableFi/composable-cosmos/v6/x/tx-boundary"
txBoundaryTypes "github.com/ComposableFi/composable-cosmos/v6/x/tx-boundary/types"

ratelimitmodule "github.com/notional-labs/composable/v6/x/ratelimit"
ratelimitmoduletypes "github.com/notional-labs/composable/v6/x/ratelimit/types"
ratelimitmodule "github.com/ComposableFi/composable-cosmos/v6/x/ratelimit"
ratelimitmoduletypes "github.com/ComposableFi/composable-cosmos/v6/x/ratelimit/types"

consensusparamtypes "github.com/cosmos/cosmos-sdk/x/consensus/types"

"github.com/notional-labs/composable/v6/x/mint"
minttypes "github.com/notional-labs/composable/v6/x/mint/types"
"github.com/ComposableFi/composable-cosmos/v6/x/mint"
minttypes "github.com/ComposableFi/composable-cosmos/v6/x/mint/types"

ibctestingtypes "github.com/cosmos/ibc-go/v7/testing/types"

ibc_hooks "github.com/notional-labs/composable/v6/x/ibc-hooks"
ibchookstypes "github.com/notional-labs/composable/v6/x/ibc-hooks/types"
ibc_hooks "github.com/ComposableFi/composable-cosmos/v6/x/ibc-hooks"
ibchookstypes "github.com/ComposableFi/composable-cosmos/v6/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"

upgrades "github.com/notional-labs/composable/v6/app/upgrades"
ibctransfermiddlewaretypes "github.com/notional-labs/composable/v6/x/ibctransfermiddleware/types"
stakingmiddlewaretypes "github.com/notional-labs/composable/v6/x/stakingmiddleware/types"
upgrades "github.com/ComposableFi/composable-cosmos/v6/app/upgrades"
ibctransfermiddlewaretypes "github.com/ComposableFi/composable-cosmos/v6/x/ibctransfermiddleware/types"
stakingmiddlewaretypes "github.com/ComposableFi/composable-cosmos/v6/x/stakingmiddleware/types"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion app/helpers/test_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import (
"github.com/cosmos/ibc-go/v7/testing/mock"
"github.com/stretchr/testify/require"

composable "github.com/notional-labs/composable/v6/app"
composable "github.com/ComposableFi/composable-cosmos/v6/app"
)

// SimAppChainID hardcoded chainID for simulation
Expand Down
8 changes: 4 additions & 4 deletions app/ibctesting/chain.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"testing"
"time"

ratelimitmodulekeeper "github.com/notional-labs/composable/v6/x/ratelimit/keeper"
ratelimitmodulekeeper "github.com/ComposableFi/composable-cosmos/v6/x/ratelimit/keeper"

"cosmossdk.io/errors"
abci "github.com/cometbft/cometbft/abci/types"
Expand Down Expand Up @@ -54,9 +54,9 @@ import (
"github.com/stretchr/testify/require"
"github.com/stretchr/testify/suite"

composable "github.com/notional-labs/composable/v6/app"
"github.com/notional-labs/composable/v6/app/ibctesting/simapp"
routerKeeper "github.com/notional-labs/composable/v6/x/transfermiddleware/keeper"
composable "github.com/ComposableFi/composable-cosmos/v6/app"
"github.com/ComposableFi/composable-cosmos/v6/app/ibctesting/simapp"
routerKeeper "github.com/ComposableFi/composable-cosmos/v6/x/transfermiddleware/keeper"
)

// TestChain is a testing struct that wraps a simapp with the last TM Header, the current ABCI
Expand Down
20 changes: 10 additions & 10 deletions app/ibctesting/simapp/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ import (
"github.com/gorilla/mux"

// TODO: mint module not complete yet,
"github.com/notional-labs/composable/v6/x/mint"
mintkeeper "github.com/notional-labs/composable/v6/x/mint/keeper"
minttypes "github.com/notional-labs/composable/v6/x/mint/types"
"github.com/ComposableFi/composable-cosmos/v6/x/mint"
mintkeeper "github.com/ComposableFi/composable-cosmos/v6/x/mint/keeper"
minttypes "github.com/ComposableFi/composable-cosmos/v6/x/mint/types"

"github.com/rakyll/statik/fs"
"github.com/spf13/cast"
Expand Down Expand Up @@ -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/composable/v6/app/ibctesting/simapp/params"
simappupgrades "github.com/notional-labs/composable/v6/app/ibctesting/simapp/upgrades"
v6 "github.com/notional-labs/composable/v6/app/ibctesting/simapp/upgrades/v6"
v7 "github.com/notional-labs/composable/v6/app/ibctesting/simapp/upgrades/v7"
transfermiddleware "github.com/notional-labs/composable/v6/x/transfermiddleware"
transfermiddlewarekeeper "github.com/notional-labs/composable/v6/x/transfermiddleware/keeper"
transfermiddlewaretypes "github.com/notional-labs/composable/v6/x/transfermiddleware/types"
simappparams "github.com/ComposableFi/composable-cosmos/v6/app/ibctesting/simapp/params"
simappupgrades "github.com/ComposableFi/composable-cosmos/v6/app/ibctesting/simapp/upgrades"
v6 "github.com/ComposableFi/composable-cosmos/v6/app/ibctesting/simapp/upgrades/v6"
v7 "github.com/ComposableFi/composable-cosmos/v6/app/ibctesting/simapp/upgrades/v7"
transfermiddleware "github.com/ComposableFi/composable-cosmos/v6/x/transfermiddleware"
transfermiddlewarekeeper "github.com/ComposableFi/composable-cosmos/v6/x/transfermiddleware/keeper"
transfermiddlewaretypes "github.com/ComposableFi/composable-cosmos/v6/x/transfermiddleware/types"
)

const appName = "SimApp"
Expand Down
2 changes: 1 addition & 1 deletion app/ibctesting/simapp/encoding.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package simapp
import (
"github.com/cosmos/cosmos-sdk/std"

simappparams "github.com/notional-labs/composable/v6/app/ibctesting/simapp/params"
simappparams "github.com/ComposableFi/composable-cosmos/v6/app/ibctesting/simapp/params"
)

// MakeTestEncodingConfig creates an EncodingConfig for testing. This function
Expand Down
2 changes: 1 addition & 1 deletion app/ibctesting/simapp/sim_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import (
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"
"github.com/stretchr/testify/require"

minttypes "github.com/notional-labs/composable/v6/x/mint/types"
minttypes "github.com/ComposableFi/composable-cosmos/v6/x/mint/types"

ibctransfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types"
ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported"
Expand Down
40 changes: 20 additions & 20 deletions app/keepers/keepers.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ import (
slashingkeeper "github.com/cosmos/cosmos-sdk/x/slashing/keeper"
slashingtypes "github.com/cosmos/cosmos-sdk/x/slashing/types"

customstaking "github.com/ComposableFi/composable-cosmos/v6/custom/staking/keeper"
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"
customstaking "github.com/notional-labs/composable/v6/custom/staking/keeper"

"github.com/cosmos/cosmos-sdk/x/upgrade"
upgradekeeper "github.com/cosmos/cosmos-sdk/x/upgrade/keeper"
Expand All @@ -58,17 +58,17 @@ import (
icahosttypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types"
"github.com/cosmos/ibc-go/v7/modules/apps/transfer"

customibctransferkeeper "github.com/ComposableFi/composable-cosmos/v6/custom/ibc-transfer/keeper"
ibctransfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types"
ibcclient "github.com/cosmos/ibc-go/v7/modules/core/02-client"
ibcclienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types"
ibchost "github.com/cosmos/ibc-go/v7/modules/core/exported"
ibckeeper "github.com/cosmos/ibc-go/v7/modules/core/keeper"
customibctransferkeeper "github.com/notional-labs/composable/v6/custom/ibc-transfer/keeper"
icq "github.com/strangelove-ventures/async-icq/v7"
icqkeeper "github.com/strangelove-ventures/async-icq/v7/keeper"
icqtypes "github.com/strangelove-ventures/async-icq/v7/types"

custombankkeeper "github.com/notional-labs/composable/v6/custom/bank/keeper"
custombankkeeper "github.com/ComposableFi/composable-cosmos/v6/custom/bank/keeper"

router "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v7/packetforward"
routerkeeper "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v7/packetforward/keeper"
Expand All @@ -78,22 +78,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/composable/v6/x/transfermiddleware"
transfermiddlewarekeeper "github.com/notional-labs/composable/v6/x/transfermiddleware/keeper"
transfermiddlewaretypes "github.com/notional-labs/composable/v6/x/transfermiddleware/types"
transfermiddleware "github.com/ComposableFi/composable-cosmos/v6/x/transfermiddleware"
transfermiddlewarekeeper "github.com/ComposableFi/composable-cosmos/v6/x/transfermiddleware/keeper"
transfermiddlewaretypes "github.com/ComposableFi/composable-cosmos/v6/x/transfermiddleware/types"

txBoundaryKeeper "github.com/notional-labs/composable/v6/x/tx-boundary/keeper"
txBoundaryTypes "github.com/notional-labs/composable/v6/x/tx-boundary/types"
txBoundaryKeeper "github.com/ComposableFi/composable-cosmos/v6/x/tx-boundary/keeper"
txBoundaryTypes "github.com/ComposableFi/composable-cosmos/v6/x/tx-boundary/types"

ratelimitmodule "github.com/notional-labs/composable/v6/x/ratelimit"
ratelimitmodulekeeper "github.com/notional-labs/composable/v6/x/ratelimit/keeper"
ratelimitmoduletypes "github.com/notional-labs/composable/v6/x/ratelimit/types"
ratelimitmodule "github.com/ComposableFi/composable-cosmos/v6/x/ratelimit"
ratelimitmodulekeeper "github.com/ComposableFi/composable-cosmos/v6/x/ratelimit/keeper"
ratelimitmoduletypes "github.com/ComposableFi/composable-cosmos/v6/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/composable/v6/x/mint/keeper"
minttypes "github.com/notional-labs/composable/v6/x/mint/types"
mintkeeper "github.com/ComposableFi/composable-cosmos/v6/x/mint/keeper"
minttypes "github.com/ComposableFi/composable-cosmos/v6/x/mint/types"

"github.com/CosmWasm/wasmd/x/wasm"
wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types"
Expand All @@ -102,14 +102,14 @@ import (
wasm08Keeper "github.com/cosmos/ibc-go/v7/modules/light-clients/08-wasm/keeper"
wasm08types "github.com/cosmos/ibc-go/v7/modules/light-clients/08-wasm/types"

ibc_hooks "github.com/notional-labs/composable/v6/x/ibc-hooks"
ibchookskeeper "github.com/notional-labs/composable/v6/x/ibc-hooks/keeper"
ibchookstypes "github.com/notional-labs/composable/v6/x/ibc-hooks/types"
stakingmiddleware "github.com/notional-labs/composable/v6/x/stakingmiddleware/keeper"
stakingmiddlewaretypes "github.com/notional-labs/composable/v6/x/stakingmiddleware/types"
ibc_hooks "github.com/ComposableFi/composable-cosmos/v6/x/ibc-hooks"
ibchookskeeper "github.com/ComposableFi/composable-cosmos/v6/x/ibc-hooks/keeper"
ibchookstypes "github.com/ComposableFi/composable-cosmos/v6/x/ibc-hooks/types"
stakingmiddleware "github.com/ComposableFi/composable-cosmos/v6/x/stakingmiddleware/keeper"
stakingmiddlewaretypes "github.com/ComposableFi/composable-cosmos/v6/x/stakingmiddleware/types"

ibctransfermiddleware "github.com/notional-labs/composable/v6/x/ibctransfermiddleware/keeper"
ibctransfermiddlewaretypes "github.com/notional-labs/composable/v6/x/ibctransfermiddleware/types"
ibctransfermiddleware "github.com/ComposableFi/composable-cosmos/v6/x/ibctransfermiddleware/keeper"
ibctransfermiddlewaretypes "github.com/ComposableFi/composable-cosmos/v6/x/ibctransfermiddleware/types"
)

const (
Expand Down
16 changes: 8 additions & 8 deletions app/keepers/keys.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,24 +29,24 @@ import (
routertypes "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v7/packetforward/types"
alliancemoduletypes "github.com/terra-money/alliance/x/alliance/types"

ibchookstypes "github.com/notional-labs/composable/v6/x/ibc-hooks/types"
ratelimitmoduletypes "github.com/notional-labs/composable/v6/x/ratelimit/types"
transfermiddlewaretypes "github.com/notional-labs/composable/v6/x/transfermiddleware/types"
txBoundaryTypes "github.com/notional-labs/composable/v6/x/tx-boundary/types"
ibchookstypes "github.com/ComposableFi/composable-cosmos/v6/x/ibc-hooks/types"
ratelimitmoduletypes "github.com/ComposableFi/composable-cosmos/v6/x/ratelimit/types"
transfermiddlewaretypes "github.com/ComposableFi/composable-cosmos/v6/x/transfermiddleware/types"
txBoundaryTypes "github.com/ComposableFi/composable-cosmos/v6/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/composable/v6/x/mint/types"
minttypes "github.com/ComposableFi/composable-cosmos/v6/x/mint/types"

"github.com/CosmWasm/wasmd/x/wasm"
wasm08types "github.com/cosmos/ibc-go/v7/modules/light-clients/08-wasm/types"

// customstakingtypes "github.com/notional-labs/composable/v6/custom/staking/types"
stakingmiddleware "github.com/notional-labs/composable/v6/x/stakingmiddleware/types"
// customstakingtypes "github.com/ComposableFi/composable-cosmos/v6/custom/staking/types"
stakingmiddleware "github.com/ComposableFi/composable-cosmos/v6/x/stakingmiddleware/types"

ibctransfermiddleware "github.com/notional-labs/composable/v6/x/ibctransfermiddleware/types"
ibctransfermiddleware "github.com/ComposableFi/composable-cosmos/v6/x/ibctransfermiddleware/types"
)

// GenerateKeys generates new keys (KV Store, Transient store, and memory store).
Expand Down
4 changes: 2 additions & 2 deletions app/test_access.go
Original file line number Diff line number Diff line change
Expand Up @@ -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/composable/v6/x/ratelimit/keeper"
tfmdKeeper "github.com/notional-labs/composable/v6/x/transfermiddleware/keeper"
ratelimitkeeper "github.com/ComposableFi/composable-cosmos/v6/x/ratelimit/keeper"
tfmdKeeper "github.com/ComposableFi/composable-cosmos/v6/x/transfermiddleware/keeper"
)

type TestSupport struct {
Expand Down
2 changes: 1 addition & 1 deletion app/test_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -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/composable/v6/x/mint/types"
minttypes "github.com/ComposableFi/composable-cosmos/v6/x/mint/types"

"github.com/CosmWasm/wasmd/x/wasm"
wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types"
Expand Down
8 changes: 4 additions & 4 deletions app/upgrades/centauri/upgrade.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ import (

govkeeper "github.com/cosmos/cosmos-sdk/x/gov/keeper"

bech32authmigration "github.com/notional-labs/composable/v6/bech32-migration/auth"
bech32govmigration "github.com/notional-labs/composable/v6/bech32-migration/gov"
bech32slashingmigration "github.com/notional-labs/composable/v6/bech32-migration/slashing"
bech32stakingmigration "github.com/notional-labs/composable/v6/bech32-migration/staking"
bech32authmigration "github.com/ComposableFi/composable-cosmos/v6/bech32-migration/auth"
bech32govmigration "github.com/ComposableFi/composable-cosmos/v6/bech32-migration/gov"
bech32slashingmigration "github.com/ComposableFi/composable-cosmos/v6/bech32-migration/slashing"
bech32stakingmigration "github.com/ComposableFi/composable-cosmos/v6/bech32-migration/staking"
)

func CreateUpgradeHandler(
Expand Down
4 changes: 2 additions & 2 deletions app/upgrades/reward/upgrade.go
Original file line number Diff line number Diff line change
Expand Up @@ -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/composable/v6/x/mint/keeper"
tfmwkeeper "github.com/notional-labs/composable/v6/x/transfermiddleware/keeper"
mintkeeper "github.com/ComposableFi/composable-cosmos/v6/x/mint/keeper"
tfmwkeeper "github.com/ComposableFi/composable-cosmos/v6/x/transfermiddleware/keeper"
)

var listAllowedRelayAddress = []string{
Expand Down
2 changes: 1 addition & 1 deletion app/upgrades/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/cosmos/cosmos-sdk/types/module"
upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types"

"github.com/notional-labs/composable/v6/app/keepers"
"github.com/ComposableFi/composable-cosmos/v6/app/keepers"
)

// BaseAppParamManager defines an interrace that BaseApp is expected to fullfil
Expand Down
6 changes: 3 additions & 3 deletions app/upgrades/v4/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -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/composable/v6/app/upgrades"
ibchookstypes "github.com/notional-labs/composable/v6/x/ibc-hooks/types"
ratelimitmoduletypes "github.com/notional-labs/composable/v6/x/ratelimit/types"
"github.com/ComposableFi/composable-cosmos/v6/app/upgrades"
ibchookstypes "github.com/ComposableFi/composable-cosmos/v6/x/ibc-hooks/types"
ratelimitmoduletypes "github.com/ComposableFi/composable-cosmos/v6/x/ratelimit/types"
)

const (
Expand Down
Loading