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

refactor: Package bump from v7 to v8 #130

Merged
merged 4 commits into from
Aug 3, 2024
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
excludelist+=" $(find ./ -type f -name '*.pb.gw.go')"
excludelist+=" $(find ./ -type f -path './tests/mocks/*.go')"
for filename in ${excludelist}; do
filename=$(echo $filename | sed 's/^./github.com\/Canto-Network\/Canto\/v7/g')
filename=$(echo $filename | sed 's/^./github.com\/Canto-Network\/Canto\/v8/g')
echo "Excluding ${filename} from coverage report..."
sed -i "/$(echo $filename | sed 's/\//\\\//g')/d" coverage.txt
done
Expand Down
34 changes: 17 additions & 17 deletions app/amino_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,23 +27,23 @@ import (
"github.com/cosmos/cosmos-sdk/x/auth/signing"
"github.com/cosmos/cosmos-sdk/x/auth/tx"

coinswapapi "github.com/Canto-Network/Canto/v7/api/canto/coinswap/v1"
csrapi "github.com/Canto-Network/Canto/v7/api/canto/csr/v1"
govshuttleapi "github.com/Canto-Network/Canto/v7/api/canto/govshuttle/v1"
inflationapi "github.com/Canto-Network/Canto/v7/api/canto/inflation/v1"
onboardingapi "github.com/Canto-Network/Canto/v7/api/canto/onboarding/v1"
"github.com/Canto-Network/Canto/v7/x/coinswap"
coinswaptypes "github.com/Canto-Network/Canto/v7/x/coinswap/types"
"github.com/Canto-Network/Canto/v7/x/csr"
csrtypes "github.com/Canto-Network/Canto/v7/x/csr/types"
"github.com/Canto-Network/Canto/v7/x/epochs"
"github.com/Canto-Network/Canto/v7/x/erc20"
"github.com/Canto-Network/Canto/v7/x/govshuttle"
govshuttletypes "github.com/Canto-Network/Canto/v7/x/govshuttle/types"
"github.com/Canto-Network/Canto/v7/x/inflation"
inflationtypes "github.com/Canto-Network/Canto/v7/x/inflation/types"
"github.com/Canto-Network/Canto/v7/x/onboarding"
onboardingtypes "github.com/Canto-Network/Canto/v7/x/onboarding/types"
coinswapapi "github.com/Canto-Network/Canto/v8/api/canto/coinswap/v1"
csrapi "github.com/Canto-Network/Canto/v8/api/canto/csr/v1"
govshuttleapi "github.com/Canto-Network/Canto/v8/api/canto/govshuttle/v1"
inflationapi "github.com/Canto-Network/Canto/v8/api/canto/inflation/v1"
onboardingapi "github.com/Canto-Network/Canto/v8/api/canto/onboarding/v1"
"github.com/Canto-Network/Canto/v8/x/coinswap"
coinswaptypes "github.com/Canto-Network/Canto/v8/x/coinswap/types"
"github.com/Canto-Network/Canto/v8/x/csr"
csrtypes "github.com/Canto-Network/Canto/v8/x/csr/types"
"github.com/Canto-Network/Canto/v8/x/epochs"
"github.com/Canto-Network/Canto/v8/x/erc20"
"github.com/Canto-Network/Canto/v8/x/govshuttle"
govshuttletypes "github.com/Canto-Network/Canto/v8/x/govshuttle/types"
"github.com/Canto-Network/Canto/v8/x/inflation"
inflationtypes "github.com/Canto-Network/Canto/v8/x/inflation/types"
"github.com/Canto-Network/Canto/v8/x/onboarding"
onboardingtypes "github.com/Canto-Network/Canto/v8/x/onboarding/types"
)

// TestAminoJSON_Equivalence tests that x/tx/Encoder encoding is equivalent to the legacy Encoder encoding.
Expand Down
2 changes: 1 addition & 1 deletion app/ante/utils_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
protov2 "google.golang.org/protobuf/proto"

sdkmath "cosmossdk.io/math"
"github.com/Canto-Network/Canto/v7/app"
"github.com/Canto-Network/Canto/v8/app"
abci "github.com/cometbft/cometbft/abci/types"
"github.com/cometbft/cometbft/crypto/tmhash"
tmproto "github.com/cometbft/cometbft/proto/tendermint/types"
Expand Down
74 changes: 37 additions & 37 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ import (
ibctesting "github.com/cosmos/ibc-go/v8/testing"
ibctestingtypes "github.com/cosmos/ibc-go/v8/testing/types"

coinswapv1 "github.com/Canto-Network/Canto/v7/api/canto/coinswap/v1"
erc20v1 "github.com/Canto-Network/Canto/v7/api/canto/erc20/v1"
coinswapv1 "github.com/Canto-Network/Canto/v8/api/canto/coinswap/v1"
erc20v1 "github.com/Canto-Network/Canto/v8/api/canto/erc20/v1"
evmv1 "github.com/evmos/ethermint/api/ethermint/evm/v1"
ethante "github.com/evmos/ethermint/app/ante"
enccodec "github.com/evmos/ethermint/encoding/codec"
Expand All @@ -134,43 +134,43 @@ import (
feemarkettypes "github.com/evmos/ethermint/x/feemarket/types"

// unnamed import of statik for swagger UI support
_ "github.com/Canto-Network/Canto/v7/client/docs/statik"

"github.com/Canto-Network/Canto/v7/app/ante"
"github.com/Canto-Network/Canto/v7/x/epochs"
epochskeeper "github.com/Canto-Network/Canto/v7/x/epochs/keeper"
epochstypes "github.com/Canto-Network/Canto/v7/x/epochs/types"
"github.com/Canto-Network/Canto/v7/x/erc20"
erc20keeper "github.com/Canto-Network/Canto/v7/x/erc20/keeper"
erc20types "github.com/Canto-Network/Canto/v7/x/erc20/types"

"github.com/Canto-Network/Canto/v7/x/inflation"
inflationkeeper "github.com/Canto-Network/Canto/v7/x/inflation/keeper"
inflationtypes "github.com/Canto-Network/Canto/v7/x/inflation/types"
"github.com/Canto-Network/Canto/v7/x/onboarding"
onboardingkeeper "github.com/Canto-Network/Canto/v7/x/onboarding/keeper"
onboardingtypes "github.com/Canto-Network/Canto/v7/x/onboarding/types"
_ "github.com/Canto-Network/Canto/v8/client/docs/statik"

"github.com/Canto-Network/Canto/v8/app/ante"
"github.com/Canto-Network/Canto/v8/x/epochs"
epochskeeper "github.com/Canto-Network/Canto/v8/x/epochs/keeper"
epochstypes "github.com/Canto-Network/Canto/v8/x/epochs/types"
"github.com/Canto-Network/Canto/v8/x/erc20"
erc20keeper "github.com/Canto-Network/Canto/v8/x/erc20/keeper"
erc20types "github.com/Canto-Network/Canto/v8/x/erc20/types"

"github.com/Canto-Network/Canto/v8/x/inflation"
inflationkeeper "github.com/Canto-Network/Canto/v8/x/inflation/keeper"
inflationtypes "github.com/Canto-Network/Canto/v8/x/inflation/types"
"github.com/Canto-Network/Canto/v8/x/onboarding"
onboardingkeeper "github.com/Canto-Network/Canto/v8/x/onboarding/keeper"
onboardingtypes "github.com/Canto-Network/Canto/v8/x/onboarding/types"

//govshuttle imports
"github.com/Canto-Network/Canto/v7/x/govshuttle"
govshuttlekeeper "github.com/Canto-Network/Canto/v7/x/govshuttle/keeper"
govshuttletypes "github.com/Canto-Network/Canto/v7/x/govshuttle/types"

"github.com/Canto-Network/Canto/v7/x/csr"
csrkeeper "github.com/Canto-Network/Canto/v7/x/csr/keeper"
csrtypes "github.com/Canto-Network/Canto/v7/x/csr/types"

"github.com/Canto-Network/Canto/v7/x/coinswap"
coinswapkeeper "github.com/Canto-Network/Canto/v7/x/coinswap/keeper"
coinswaptypes "github.com/Canto-Network/Canto/v7/x/coinswap/types"

v2 "github.com/Canto-Network/Canto/v7/app/upgrades/v2"
v3 "github.com/Canto-Network/Canto/v7/app/upgrades/v3"
v4 "github.com/Canto-Network/Canto/v7/app/upgrades/v4"
v5 "github.com/Canto-Network/Canto/v7/app/upgrades/v5"
v6 "github.com/Canto-Network/Canto/v7/app/upgrades/v6"
v7 "github.com/Canto-Network/Canto/v7/app/upgrades/v7"
v8 "github.com/Canto-Network/Canto/v7/app/upgrades/v8"
"github.com/Canto-Network/Canto/v8/x/govshuttle"
govshuttlekeeper "github.com/Canto-Network/Canto/v8/x/govshuttle/keeper"
govshuttletypes "github.com/Canto-Network/Canto/v8/x/govshuttle/types"

"github.com/Canto-Network/Canto/v8/x/csr"
csrkeeper "github.com/Canto-Network/Canto/v8/x/csr/keeper"
csrtypes "github.com/Canto-Network/Canto/v8/x/csr/types"

"github.com/Canto-Network/Canto/v8/x/coinswap"
coinswapkeeper "github.com/Canto-Network/Canto/v8/x/coinswap/keeper"
coinswaptypes "github.com/Canto-Network/Canto/v8/x/coinswap/types"

v2 "github.com/Canto-Network/Canto/v8/app/upgrades/v2"
v3 "github.com/Canto-Network/Canto/v8/app/upgrades/v3"
v4 "github.com/Canto-Network/Canto/v8/app/upgrades/v4"
v5 "github.com/Canto-Network/Canto/v8/app/upgrades/v5"
v6 "github.com/Canto-Network/Canto/v8/app/upgrades/v6"
v7 "github.com/Canto-Network/Canto/v8/app/upgrades/v7"
v8 "github.com/Canto-Network/Canto/v8/app/upgrades/v8"
)

// Name defines the application binary name
Expand Down
8 changes: 4 additions & 4 deletions app/app_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ import (
evmtypes "github.com/evmos/ethermint/x/evm/types"
feemarkettypes "github.com/evmos/ethermint/x/feemarket/types"

"github.com/Canto-Network/Canto/v7/types"
coinswaptypes "github.com/Canto-Network/Canto/v7/x/coinswap/types"
epochstypes "github.com/Canto-Network/Canto/v7/x/epochs/types"
inflationtypes "github.com/Canto-Network/Canto/v7/x/inflation/types"
"github.com/Canto-Network/Canto/v8/types"
coinswaptypes "github.com/Canto-Network/Canto/v8/x/coinswap/types"
epochstypes "github.com/Canto-Network/Canto/v8/x/epochs/types"
inflationtypes "github.com/Canto-Network/Canto/v8/x/inflation/types"
)

func TestCantoExport(t *testing.T) {
Expand Down
8 changes: 4 additions & 4 deletions app/signer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ import (
"github.com/cosmos/cosmos-sdk/codec/address"
sdk "github.com/cosmos/cosmos-sdk/types"

coinswapv1 "github.com/Canto-Network/Canto/v7/api/canto/coinswap/v1"
erc20v1 "github.com/Canto-Network/Canto/v7/api/canto/erc20/v1"
coinswaptypes "github.com/Canto-Network/Canto/v7/x/coinswap/types"
erc20types "github.com/Canto-Network/Canto/v7/x/erc20/types"
coinswapv1 "github.com/Canto-Network/Canto/v8/api/canto/coinswap/v1"
erc20v1 "github.com/Canto-Network/Canto/v8/api/canto/erc20/v1"
coinswaptypes "github.com/Canto-Network/Canto/v8/x/coinswap/types"
erc20types "github.com/Canto-Network/Canto/v8/x/erc20/types"
)

func TestDefineCustomGetSigners(t *testing.T) {
Expand Down
6 changes: 3 additions & 3 deletions app/sim_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"testing"

upgradetypes "cosmossdk.io/x/upgrade/types"
"github.com/Canto-Network/Canto/v7/types"
"github.com/Canto-Network/Canto/v8/types"
"github.com/spf13/viper"
"github.com/stretchr/testify/require"

Expand All @@ -36,8 +36,8 @@ import (
slashingtypes "github.com/cosmos/cosmos-sdk/x/slashing/types"
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"

cantoconfig "github.com/Canto-Network/Canto/v7/cmd/config"
epochstypes "github.com/Canto-Network/Canto/v7/x/epochs/types"
cantoconfig "github.com/Canto-Network/Canto/v8/cmd/config"
epochstypes "github.com/Canto-Network/Canto/v8/x/epochs/types"
)

var FlagEnableStreamingValue bool
Expand Down
4 changes: 2 additions & 2 deletions app/test_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ import (

feemarkettypes "github.com/evmos/ethermint/x/feemarket/types"

"github.com/Canto-Network/Canto/v7/cmd/config"
"github.com/Canto-Network/Canto/v7/types"
"github.com/Canto-Network/Canto/v8/cmd/config"
"github.com/Canto-Network/Canto/v8/types"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion app/upgrades/v4/upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"context"

upgradetypes "cosmossdk.io/x/upgrade/types"
shuttleKeeper "github.com/Canto-Network/Canto/v7/x/govshuttle/keeper"
shuttleKeeper "github.com/Canto-Network/Canto/v8/x/govshuttle/keeper"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/module"
"github.com/ethereum/go-ethereum/common"
Expand Down
8 changes: 4 additions & 4 deletions app/upgrades/v7/upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ import (
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/module"

coinswapkeeper "github.com/Canto-Network/Canto/v7/x/coinswap/keeper"
coinswaptypes "github.com/Canto-Network/Canto/v7/x/coinswap/types"
onboardingkeeper "github.com/Canto-Network/Canto/v7/x/onboarding/keeper"
onboardingtypes "github.com/Canto-Network/Canto/v7/x/onboarding/types"
coinswapkeeper "github.com/Canto-Network/Canto/v8/x/coinswap/keeper"
coinswaptypes "github.com/Canto-Network/Canto/v8/x/coinswap/types"
onboardingkeeper "github.com/Canto-Network/Canto/v8/x/onboarding/keeper"
onboardingtypes "github.com/Canto-Network/Canto/v8/x/onboarding/types"
)

// CreateUpgradeHandler creates an SDK upgrade handler for v7
Expand Down
8 changes: 4 additions & 4 deletions app/upgrades/v7/upgrades_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ import (
abci "github.com/cometbft/cometbft/abci/types"
tmproto "github.com/cometbft/cometbft/proto/tendermint/types"

chain "github.com/Canto-Network/Canto/v7/app"
v7 "github.com/Canto-Network/Canto/v7/app/upgrades/v7"
coinswaptypes "github.com/Canto-Network/Canto/v7/x/coinswap/types"
onboardingtypes "github.com/Canto-Network/Canto/v7/x/onboarding/types"
chain "github.com/Canto-Network/Canto/v8/app"
v7 "github.com/Canto-Network/Canto/v8/app/upgrades/v7"
coinswaptypes "github.com/Canto-Network/Canto/v8/x/coinswap/types"
onboardingtypes "github.com/Canto-Network/Canto/v8/x/onboarding/types"
)

type UpgradeTestSuite struct {
Expand Down
4 changes: 2 additions & 2 deletions app/upgrades/v8/upgrades_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ import (
abci "github.com/cometbft/cometbft/abci/types"
cmtproto "github.com/cometbft/cometbft/proto/tendermint/types"

chain "github.com/Canto-Network/Canto/v7/app"
v8 "github.com/Canto-Network/Canto/v7/app/upgrades/v8"
chain "github.com/Canto-Network/Canto/v8/app"
v8 "github.com/Canto-Network/Canto/v8/app/upgrades/v8"
)

type UpgradeTestSuite struct {
Expand Down
4 changes: 2 additions & 2 deletions cmd/cantod/cmd_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"github.com/cosmos/cosmos-sdk/x/genutil/client/cli"
"github.com/stretchr/testify/require"

"github.com/Canto-Network/Canto/v7/app"
cantod "github.com/Canto-Network/Canto/v7/cmd/cantod"
"github.com/Canto-Network/Canto/v8/app"
cantod "github.com/Canto-Network/Canto/v8/cmd/cantod"
)

func TestInitCmd(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion cmd/cantod/genaccounts.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
ethermint "github.com/evmos/ethermint/types"
evmtypes "github.com/evmos/ethermint/x/evm/types"

cantokr "github.com/Canto-Network/Canto/v7/crypto/keyring"
cantokr "github.com/Canto-Network/Canto/v8/crypto/keyring"
)

// AddGenesisAccountCmd returns add-genesis-account cobra Command.
Expand Down
4 changes: 2 additions & 2 deletions cmd/cantod/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
svrcmd "github.com/cosmos/cosmos-sdk/server/cmd"
sdk "github.com/cosmos/cosmos-sdk/types"

"github.com/Canto-Network/Canto/v7/app"
cmdcfg "github.com/Canto-Network/Canto/v7/cmd/config"
"github.com/Canto-Network/Canto/v8/app"
cmdcfg "github.com/Canto-Network/Canto/v8/cmd/config"
)

func main() {
Expand Down
6 changes: 3 additions & 3 deletions cmd/cantod/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ import (
servercfg "github.com/evmos/ethermint/server/config"
srvflags "github.com/evmos/ethermint/server/flags"

"github.com/Canto-Network/Canto/v7/app"
cmdcfg "github.com/Canto-Network/Canto/v7/cmd/config"
cantokr "github.com/Canto-Network/Canto/v7/crypto/keyring"
"github.com/Canto-Network/Canto/v8/app"
cmdcfg "github.com/Canto-Network/Canto/v8/cmd/config"
cantokr "github.com/Canto-Network/Canto/v8/crypto/keyring"

rosettacmd "github.com/cosmos/rosetta/cmd"
)
Expand Down
6 changes: 3 additions & 3 deletions cmd/cantod/testnet.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ import (
ethermint "github.com/evmos/ethermint/types"
evmtypes "github.com/evmos/ethermint/x/evm/types"

cmdcfg "github.com/Canto-Network/Canto/v7/cmd/config"
cantokr "github.com/Canto-Network/Canto/v7/crypto/keyring"
"github.com/Canto-Network/Canto/v7/testutil/network"
cmdcfg "github.com/Canto-Network/Canto/v8/cmd/config"
cantokr "github.com/Canto-Network/Canto/v8/crypto/keyring"
"github.com/Canto-Network/Canto/v8/testutil/network"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion contracts/erc20.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/ethereum/go-ethereum/common"
evmtypes "github.com/evmos/ethermint/x/evm/types"

"github.com/Canto-Network/Canto/v7/x/erc20/types"
"github.com/Canto-Network/Canto/v8/x/erc20/types"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion contracts/erc20DirectBalanceManipulation.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/ethereum/go-ethereum/common"
evmtypes "github.com/evmos/ethermint/x/evm/types"

"github.com/Canto-Network/Canto/v7/x/erc20/types"
"github.com/Canto-Network/Canto/v8/x/erc20/types"
)

// This is an evil token. Whenever an A -> B transfer is called,
Expand Down
2 changes: 1 addition & 1 deletion contracts/erc20maliciousdelayed.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/ethereum/go-ethereum/common"
evmtypes "github.com/evmos/ethermint/x/evm/types"

"github.com/Canto-Network/Canto/v7/x/erc20/types"
"github.com/Canto-Network/Canto/v8/x/erc20/types"
)

// This is an evil token. Whenever an A -> B transfer is called,
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/Canto-Network/Canto/v7
module github.com/Canto-Network/Canto/v8

go 1.21

Expand Down
4 changes: 2 additions & 2 deletions ibc/testing/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"
capabilitykeeper "github.com/cosmos/ibc-go/modules/capability/keeper"

"github.com/Canto-Network/Canto/v7/ibc/testing/simapp"
"github.com/Canto-Network/Canto/v8/ibc/testing/simapp"
"github.com/cosmos/ibc-go/v8/modules/core/keeper"
ibctestingtypes "github.com/cosmos/ibc-go/v8/testing/types"

Expand All @@ -33,7 +33,7 @@ import (
tmtypes "github.com/cometbft/cometbft/types"
dbm "github.com/cosmos/cosmos-db"

cantoapp "github.com/Canto-Network/Canto/v7/app"
cantoapp "github.com/Canto-Network/Canto/v8/app"
)

var DefaultTestingAppInit func() (TestingApp, map[string]json.RawMessage) = SetupTestingApp
Expand Down
2 changes: 1 addition & 1 deletion ibc/testing/chain.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ import (
ethermint "github.com/evmos/ethermint/types"
evmtypes "github.com/evmos/ethermint/x/evm/types"

"github.com/Canto-Network/Canto/v7/ibc/testing/simapp"
"github.com/Canto-Network/Canto/v8/ibc/testing/simapp"
)

var MaxAccounts = 10
Expand Down
2 changes: 1 addition & 1 deletion ibc/testing/chain_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

"github.com/cosmos/cosmos-sdk/x/staking/types"

ibctesting "github.com/Canto-Network/Canto/v7/ibc/testing"
ibctesting "github.com/Canto-Network/Canto/v8/ibc/testing"
)

func TestChangeValSet(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion ibc/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
transfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types"
channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types"

canto "github.com/Canto-Network/Canto/v7/types"
canto "github.com/Canto-Network/Canto/v8/types"
)

// GetTransferSenderRecipient returns the sender and recipient sdk.AccAddresses
Expand Down
Loading
Loading