diff --git a/app/ante/handler_options.go b/app/ante/handler_options.go index 4e2a20e8c4..3c27972e32 100644 --- a/app/ante/handler_options.go +++ b/app/ante/handler_options.go @@ -14,7 +14,7 @@ import ( ethante "github.com/evmos/ethermint/app/ante" evmtypes "github.com/evmos/ethermint/x/evm/types" - vestingtypes "github.com/evmos/evmos/v8/x/vesting/types" + vestingtypes "github.com/evmos/evmos/v9/x/vesting/types" ) // HandlerOptions defines the list of module keepers required to run the Evmos diff --git a/app/ante/utils_test.go b/app/ante/utils_test.go index 52cb103487..7b48f84c23 100644 --- a/app/ante/utils_test.go +++ b/app/ante/utils_test.go @@ -18,8 +18,8 @@ import ( "github.com/evmos/ethermint/encoding" evmtypes "github.com/evmos/ethermint/x/evm/types" feemarkettypes "github.com/evmos/ethermint/x/feemarket/types" - "github.com/evmos/evmos/v8/app" - claimstypes "github.com/evmos/evmos/v8/x/claims/types" + "github.com/evmos/evmos/v9/app" + claimstypes "github.com/evmos/evmos/v9/x/claims/types" abci "github.com/tendermint/tendermint/abci/types" "github.com/tendermint/tendermint/crypto/tmhash" tmproto "github.com/tendermint/tendermint/proto/tendermint/types" diff --git a/app/ante/vesting.go b/app/ante/vesting.go index d01a47f6d6..021682a638 100644 --- a/app/ante/vesting.go +++ b/app/ante/vesting.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/authz" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" evmtypes "github.com/evmos/ethermint/x/evm/types" - vestingtypes "github.com/evmos/evmos/v8/x/vesting/types" + vestingtypes "github.com/evmos/evmos/v9/x/vesting/types" ) // EthVestingTransactionDecorator validates if clawback vesting accounts are diff --git a/app/app.go b/app/app.go index 0ae9def5db..024b9639b0 100644 --- a/app/app.go +++ b/app/app.go @@ -105,43 +105,43 @@ import ( feemarkettypes "github.com/evmos/ethermint/x/feemarket/types" // unnamed import of statik for swagger UI support - _ "github.com/evmos/evmos/v8/client/docs/statik" - - "github.com/evmos/evmos/v8/app/ante" - v2 "github.com/evmos/evmos/v8/app/upgrades/v2" - v4 "github.com/evmos/evmos/v8/app/upgrades/v4" - v5 "github.com/evmos/evmos/v8/app/upgrades/v5" - v6 "github.com/evmos/evmos/v8/app/upgrades/v6" - v7 "github.com/evmos/evmos/v8/app/upgrades/v7" - v8 "github.com/evmos/evmos/v8/app/upgrades/v8" - v81 "github.com/evmos/evmos/v8/app/upgrades/v8_1" - v82 "github.com/evmos/evmos/v8/app/upgrades/v8_2" - "github.com/evmos/evmos/v8/x/claims" - claimskeeper "github.com/evmos/evmos/v8/x/claims/keeper" - claimstypes "github.com/evmos/evmos/v8/x/claims/types" - "github.com/evmos/evmos/v8/x/epochs" - epochskeeper "github.com/evmos/evmos/v8/x/epochs/keeper" - epochstypes "github.com/evmos/evmos/v8/x/epochs/types" - "github.com/evmos/evmos/v8/x/erc20" - erc20client "github.com/evmos/evmos/v8/x/erc20/client" - erc20keeper "github.com/evmos/evmos/v8/x/erc20/keeper" - erc20types "github.com/evmos/evmos/v8/x/erc20/types" - "github.com/evmos/evmos/v8/x/incentives" - incentivesclient "github.com/evmos/evmos/v8/x/incentives/client" - incentiveskeeper "github.com/evmos/evmos/v8/x/incentives/keeper" - incentivestypes "github.com/evmos/evmos/v8/x/incentives/types" - "github.com/evmos/evmos/v8/x/inflation" - inflationkeeper "github.com/evmos/evmos/v8/x/inflation/keeper" - inflationtypes "github.com/evmos/evmos/v8/x/inflation/types" - "github.com/evmos/evmos/v8/x/recovery" - recoverykeeper "github.com/evmos/evmos/v8/x/recovery/keeper" - recoverytypes "github.com/evmos/evmos/v8/x/recovery/types" - "github.com/evmos/evmos/v8/x/revenue" - revenuekeeper "github.com/evmos/evmos/v8/x/revenue/keeper" - revenuetypes "github.com/evmos/evmos/v8/x/revenue/types" - "github.com/evmos/evmos/v8/x/vesting" - vestingkeeper "github.com/evmos/evmos/v8/x/vesting/keeper" - vestingtypes "github.com/evmos/evmos/v8/x/vesting/types" + _ "github.com/evmos/evmos/v9/client/docs/statik" + + "github.com/evmos/evmos/v9/app/ante" + v2 "github.com/evmos/evmos/v9/app/upgrades/v2" + v4 "github.com/evmos/evmos/v9/app/upgrades/v4" + v5 "github.com/evmos/evmos/v9/app/upgrades/v5" + v6 "github.com/evmos/evmos/v9/app/upgrades/v6" + v7 "github.com/evmos/evmos/v9/app/upgrades/v7" + v8 "github.com/evmos/evmos/v9/app/upgrades/v8" + v81 "github.com/evmos/evmos/v9/app/upgrades/v8_1" + v82 "github.com/evmos/evmos/v9/app/upgrades/v8_2" + "github.com/evmos/evmos/v9/x/claims" + claimskeeper "github.com/evmos/evmos/v9/x/claims/keeper" + claimstypes "github.com/evmos/evmos/v9/x/claims/types" + "github.com/evmos/evmos/v9/x/epochs" + epochskeeper "github.com/evmos/evmos/v9/x/epochs/keeper" + epochstypes "github.com/evmos/evmos/v9/x/epochs/types" + "github.com/evmos/evmos/v9/x/erc20" + erc20client "github.com/evmos/evmos/v9/x/erc20/client" + erc20keeper "github.com/evmos/evmos/v9/x/erc20/keeper" + erc20types "github.com/evmos/evmos/v9/x/erc20/types" + "github.com/evmos/evmos/v9/x/incentives" + incentivesclient "github.com/evmos/evmos/v9/x/incentives/client" + incentiveskeeper "github.com/evmos/evmos/v9/x/incentives/keeper" + incentivestypes "github.com/evmos/evmos/v9/x/incentives/types" + "github.com/evmos/evmos/v9/x/inflation" + inflationkeeper "github.com/evmos/evmos/v9/x/inflation/keeper" + inflationtypes "github.com/evmos/evmos/v9/x/inflation/types" + "github.com/evmos/evmos/v9/x/recovery" + recoverykeeper "github.com/evmos/evmos/v9/x/recovery/keeper" + recoverytypes "github.com/evmos/evmos/v9/x/recovery/types" + "github.com/evmos/evmos/v9/x/revenue" + revenuekeeper "github.com/evmos/evmos/v9/x/revenue/keeper" + revenuetypes "github.com/evmos/evmos/v9/x/revenue/types" + "github.com/evmos/evmos/v9/x/vesting" + vestingkeeper "github.com/evmos/evmos/v9/x/vesting/keeper" + vestingtypes "github.com/evmos/evmos/v9/x/vesting/types" ) func init() { diff --git a/app/app_test.go b/app/app_test.go index e29bf6cb1f..a056b54fd0 100644 --- a/app/app_test.go +++ b/app/app_test.go @@ -14,7 +14,7 @@ import ( dbm "github.com/tendermint/tm-db" "github.com/evmos/ethermint/encoding" - "github.com/evmos/evmos/v8/types" + "github.com/evmos/evmos/v9/types" ) func TestEvmosExport(t *testing.T) { diff --git a/app/forks.go b/app/forks.go index 0a7656e7da..56e5e7568c 100644 --- a/app/forks.go +++ b/app/forks.go @@ -6,11 +6,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - v2 "github.com/evmos/evmos/v8/app/upgrades/v2" - v4 "github.com/evmos/evmos/v8/app/upgrades/v4" - v7 "github.com/evmos/evmos/v8/app/upgrades/v7" - v82 "github.com/evmos/evmos/v8/app/upgrades/v8_2" - "github.com/evmos/evmos/v8/types" + v2 "github.com/evmos/evmos/v9/app/upgrades/v2" + v4 "github.com/evmos/evmos/v9/app/upgrades/v4" + v7 "github.com/evmos/evmos/v9/app/upgrades/v7" + v82 "github.com/evmos/evmos/v9/app/upgrades/v8_2" + "github.com/evmos/evmos/v9/types" ) // ScheduleForkUpgrade executes any necessary fork logic for based upon the current diff --git a/app/test_helpers.go b/app/test_helpers.go index 30d0bd6b0a..480a069b43 100644 --- a/app/test_helpers.go +++ b/app/test_helpers.go @@ -16,8 +16,8 @@ import ( "github.com/evmos/ethermint/encoding" feemarkettypes "github.com/evmos/ethermint/x/feemarket/types" - "github.com/evmos/evmos/v8/cmd/config" - "github.com/evmos/evmos/v8/types" + "github.com/evmos/evmos/v9/cmd/config" + "github.com/evmos/evmos/v9/types" ) func init() { diff --git a/app/upgrades/v2/upgrades.go b/app/upgrades/v2/upgrades.go index 47292bd7b8..cea06fac51 100644 --- a/app/upgrades/v2/upgrades.go +++ b/app/upgrades/v2/upgrades.go @@ -5,8 +5,8 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - claimstypes "github.com/evmos/evmos/v8/x/claims/types" - erc20types "github.com/evmos/evmos/v8/x/erc20/types" + claimstypes "github.com/evmos/evmos/v9/x/claims/types" + erc20types "github.com/evmos/evmos/v9/x/erc20/types" ) // CreateUpgradeHandler creates an SDK upgrade handler for v2 diff --git a/app/upgrades/v4/upgrades.go b/app/upgrades/v4/upgrades.go index 730c356afc..d6929be37b 100644 --- a/app/upgrades/v4/upgrades.go +++ b/app/upgrades/v4/upgrades.go @@ -8,7 +8,7 @@ import ( ibcclientkeeper "github.com/cosmos/ibc-go/v3/modules/core/02-client/keeper" ibcclienttypes "github.com/cosmos/ibc-go/v3/modules/core/02-client/types" - "github.com/evmos/evmos/v8/types" + "github.com/evmos/evmos/v9/types" ) // CreateUpgradeHandler creates an SDK upgrade handler for v4 diff --git a/app/upgrades/v4/upgrades_test.go b/app/upgrades/v4/upgrades_test.go index a2e3876588..1f939268ad 100644 --- a/app/upgrades/v4/upgrades_test.go +++ b/app/upgrades/v4/upgrades_test.go @@ -19,8 +19,8 @@ import ( "github.com/evmos/ethermint/crypto/ethsecp256k1" feemarkettypes "github.com/evmos/ethermint/x/feemarket/types" - "github.com/evmos/evmos/v8/app" - v4 "github.com/evmos/evmos/v8/app/upgrades/v4" + "github.com/evmos/evmos/v9/app" + v4 "github.com/evmos/evmos/v9/app/upgrades/v4" ) type UpgradeTestSuite struct { diff --git a/app/upgrades/v5/upgrades.go b/app/upgrades/v5/upgrades.go index 5c887a4f7f..0bd035ce59 100644 --- a/app/upgrades/v5/upgrades.go +++ b/app/upgrades/v5/upgrades.go @@ -22,9 +22,9 @@ import ( feemarketv011 "github.com/evmos/ethermint/x/feemarket/migrations/v011" feemarkettypes "github.com/evmos/ethermint/x/feemarket/types" - "github.com/evmos/evmos/v8/types" - claimskeeper "github.com/evmos/evmos/v8/x/claims/keeper" - claimstypes "github.com/evmos/evmos/v8/x/claims/types" + "github.com/evmos/evmos/v9/types" + claimskeeper "github.com/evmos/evmos/v9/x/claims/keeper" + claimstypes "github.com/evmos/evmos/v9/x/claims/types" ) // TestnetDenomMetadata defines the metadata for the tEVMOS denom on testnet diff --git a/app/upgrades/v5/upgrades_test.go b/app/upgrades/v5/upgrades_test.go index 4b2a40ada1..f1558544c8 100644 --- a/app/upgrades/v5/upgrades_test.go +++ b/app/upgrades/v5/upgrades_test.go @@ -21,11 +21,11 @@ import ( ibctransfertypes "github.com/cosmos/ibc-go/v3/modules/apps/transfer/types" - "github.com/evmos/evmos/v8/app" - v5 "github.com/evmos/evmos/v8/app/upgrades/v5" - evmostypes "github.com/evmos/evmos/v8/types" - claimskeeper "github.com/evmos/evmos/v8/x/claims/keeper" - claimstypes "github.com/evmos/evmos/v8/x/claims/types" + "github.com/evmos/evmos/v9/app" + v5 "github.com/evmos/evmos/v9/app/upgrades/v5" + evmostypes "github.com/evmos/evmos/v9/types" + claimskeeper "github.com/evmos/evmos/v9/x/claims/keeper" + claimstypes "github.com/evmos/evmos/v9/x/claims/types" ) type UpgradeTestSuite struct { diff --git a/app/upgrades/v6/upgrades.go b/app/upgrades/v6/upgrades.go index 7119627749..9335df3e31 100644 --- a/app/upgrades/v6/upgrades.go +++ b/app/upgrades/v6/upgrades.go @@ -14,9 +14,9 @@ import ( evmtypes "github.com/evmos/ethermint/x/evm/types" feemarkettypes "github.com/evmos/ethermint/x/feemarket/types" - v5 "github.com/evmos/evmos/v8/app/upgrades/v5" - "github.com/evmos/evmos/v8/types" - claimskeeper "github.com/evmos/evmos/v8/x/claims/keeper" + v5 "github.com/evmos/evmos/v9/app/upgrades/v5" + "github.com/evmos/evmos/v9/types" + claimskeeper "github.com/evmos/evmos/v9/x/claims/keeper" ) // CreateUpgradeHandler creates an SDK upgrade handler for v6 diff --git a/app/upgrades/v6/upgrades_test.go b/app/upgrades/v6/upgrades_test.go index 67878ba26a..4e9e0728da 100644 --- a/app/upgrades/v6/upgrades_test.go +++ b/app/upgrades/v6/upgrades_test.go @@ -17,9 +17,9 @@ import ( "github.com/evmos/ethermint/crypto/ethsecp256k1" feemarkettypes "github.com/evmos/ethermint/x/feemarket/types" - "github.com/evmos/evmos/v8/app" - v6 "github.com/evmos/evmos/v8/app/upgrades/v6" - evmostypes "github.com/evmos/evmos/v8/types" + "github.com/evmos/evmos/v9/app" + v6 "github.com/evmos/evmos/v9/app/upgrades/v6" + evmostypes "github.com/evmos/evmos/v9/types" ) type UpgradeTestSuite struct { diff --git a/app/upgrades/v7/upgrades.go b/app/upgrades/v7/upgrades.go index 1232aa9cf3..535fe1d09a 100644 --- a/app/upgrades/v7/upgrades.go +++ b/app/upgrades/v7/upgrades.go @@ -7,9 +7,9 @@ import ( bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - "github.com/evmos/evmos/v8/types" - claimskeeper "github.com/evmos/evmos/v8/x/claims/keeper" - inflationkeeper "github.com/evmos/evmos/v8/x/inflation/keeper" + "github.com/evmos/evmos/v9/types" + claimskeeper "github.com/evmos/evmos/v9/x/claims/keeper" + inflationkeeper "github.com/evmos/evmos/v9/x/inflation/keeper" ) // CreateUpgradeHandler creates an SDK upgrade handler for v7 diff --git a/app/upgrades/v7/upgrades_test.go b/app/upgrades/v7/upgrades_test.go index 280664377f..0ad90039cc 100644 --- a/app/upgrades/v7/upgrades_test.go +++ b/app/upgrades/v7/upgrades_test.go @@ -17,11 +17,11 @@ import ( "github.com/evmos/ethermint/crypto/ethsecp256k1" feemarkettypes "github.com/evmos/ethermint/x/feemarket/types" - "github.com/evmos/evmos/v8/app" - v7 "github.com/evmos/evmos/v8/app/upgrades/v7" - "github.com/evmos/evmos/v8/testutil" - evmostypes "github.com/evmos/evmos/v8/types" - claimstypes "github.com/evmos/evmos/v8/x/claims/types" + "github.com/evmos/evmos/v9/app" + v7 "github.com/evmos/evmos/v9/app/upgrades/v7" + "github.com/evmos/evmos/v9/testutil" + evmostypes "github.com/evmos/evmos/v9/types" + claimstypes "github.com/evmos/evmos/v9/x/claims/types" ) type UpgradeTestSuite struct { diff --git a/app/upgrades/v8/upgrades_test.go b/app/upgrades/v8/upgrades_test.go index 53d02c6509..bb32f7c721 100644 --- a/app/upgrades/v8/upgrades_test.go +++ b/app/upgrades/v8/upgrades_test.go @@ -16,7 +16,7 @@ import ( "github.com/evmos/ethermint/crypto/ethsecp256k1" feemarkettypes "github.com/evmos/ethermint/x/feemarket/types" - "github.com/evmos/evmos/v8/app" + "github.com/evmos/evmos/v9/app" ) type UpgradeTestSuite struct { diff --git a/cmd/config/observability.go b/cmd/config/observability.go index 305b437ca9..0593f52db9 100644 --- a/cmd/config/observability.go +++ b/cmd/config/observability.go @@ -5,7 +5,7 @@ func EnableObservability() error { // if true { // Temporarily disabling this until we can configure out port reuse // fast enough or enabling observability through the config. - // Please see https://github.com/evmos/evmos/v8/issues/84 + // Please see https://github.com/evmos/evmos/v9/issues/84 // return nil // } diff --git a/cmd/evmosd/cmd_test.go b/cmd/evmosd/cmd_test.go index 517a52ae63..6609847a9a 100644 --- a/cmd/evmosd/cmd_test.go +++ b/cmd/evmosd/cmd_test.go @@ -9,8 +9,8 @@ import ( "github.com/cosmos/cosmos-sdk/x/genutil/client/cli" "github.com/stretchr/testify/require" - "github.com/evmos/evmos/v8/app" - evmosd "github.com/evmos/evmos/v8/cmd/evmosd" + "github.com/evmos/evmos/v9/app" + evmosd "github.com/evmos/evmos/v9/cmd/evmosd" ) func TestInitCmd(t *testing.T) { diff --git a/cmd/evmosd/genaccounts.go b/cmd/evmosd/genaccounts.go index 3792a75932..0ed7cb1595 100644 --- a/cmd/evmosd/genaccounts.go +++ b/cmd/evmosd/genaccounts.go @@ -23,10 +23,10 @@ import ( ethermint "github.com/evmos/ethermint/types" evmtypes "github.com/evmos/ethermint/x/evm/types" - evmoskr "github.com/evmos/evmos/v8/crypto/keyring" + evmoskr "github.com/evmos/evmos/v9/crypto/keyring" - vestingcli "github.com/evmos/evmos/v8/x/vesting/client/cli" - vestingtypes "github.com/evmos/evmos/v8/x/vesting/types" + vestingcli "github.com/evmos/evmos/v9/x/vesting/client/cli" + vestingtypes "github.com/evmos/evmos/v9/x/vesting/types" ) const ( diff --git a/cmd/evmosd/main.go b/cmd/evmosd/main.go index d1ded1d095..1feebe8509 100644 --- a/cmd/evmosd/main.go +++ b/cmd/evmosd/main.go @@ -7,8 +7,8 @@ import ( svrcmd "github.com/cosmos/cosmos-sdk/server/cmd" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v8/app" - cmdcfg "github.com/evmos/evmos/v8/cmd/config" + "github.com/evmos/evmos/v9/app" + cmdcfg "github.com/evmos/evmos/v9/cmd/config" ) func main() { diff --git a/cmd/evmosd/migrate.go b/cmd/evmosd/migrate.go index 4ca05f5154..acadf30223 100644 --- a/cmd/evmosd/migrate.go +++ b/cmd/evmosd/migrate.go @@ -16,9 +16,9 @@ import ( "github.com/cosmos/cosmos-sdk/version" genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types" - v3 "github.com/evmos/evmos/v8/app/upgrades/v3" - v5 "github.com/evmos/evmos/v8/app/upgrades/v5" - "github.com/evmos/evmos/v8/types" + v3 "github.com/evmos/evmos/v9/app/upgrades/v3" + v5 "github.com/evmos/evmos/v9/app/upgrades/v5" + "github.com/evmos/evmos/v9/types" ) // FlagGenesisTime defines the genesis time in string format diff --git a/cmd/evmosd/root.go b/cmd/evmosd/root.go index 719af8121b..4cb62d16c0 100644 --- a/cmd/evmosd/root.go +++ b/cmd/evmosd/root.go @@ -40,9 +40,9 @@ import ( servercfg "github.com/evmos/ethermint/server/config" srvflags "github.com/evmos/ethermint/server/flags" - "github.com/evmos/evmos/v8/app" - cmdcfg "github.com/evmos/evmos/v8/cmd/config" - evmoskr "github.com/evmos/evmos/v8/crypto/keyring" + "github.com/evmos/evmos/v9/app" + cmdcfg "github.com/evmos/evmos/v9/cmd/config" + evmoskr "github.com/evmos/evmos/v9/crypto/keyring" ) const ( diff --git a/cmd/evmosd/testnet.go b/cmd/evmosd/testnet.go index 53e2db01fe..ad471faced 100644 --- a/cmd/evmosd/testnet.go +++ b/cmd/evmosd/testnet.go @@ -43,9 +43,9 @@ import ( ethermint "github.com/evmos/ethermint/types" evmtypes "github.com/evmos/ethermint/x/evm/types" - cmdcfg "github.com/evmos/evmos/v8/cmd/config" - evmoskr "github.com/evmos/evmos/v8/crypto/keyring" - "github.com/evmos/evmos/v8/testutil/network" + cmdcfg "github.com/evmos/evmos/v9/cmd/config" + evmoskr "github.com/evmos/evmos/v9/crypto/keyring" + "github.com/evmos/evmos/v9/testutil/network" ) var ( diff --git a/contracts/erc20.go b/contracts/erc20.go index 444533a452..2f979e001e 100644 --- a/contracts/erc20.go +++ b/contracts/erc20.go @@ -7,7 +7,7 @@ import ( "github.com/ethereum/go-ethereum/common" evmtypes "github.com/evmos/ethermint/x/evm/types" - "github.com/evmos/evmos/v8/x/erc20/types" + "github.com/evmos/evmos/v9/x/erc20/types" ) var ( diff --git a/contracts/erc20DirectBalanceManipulation.go b/contracts/erc20DirectBalanceManipulation.go index ffa08addc6..9594961608 100644 --- a/contracts/erc20DirectBalanceManipulation.go +++ b/contracts/erc20DirectBalanceManipulation.go @@ -7,7 +7,7 @@ import ( "github.com/ethereum/go-ethereum/common" evmtypes "github.com/evmos/ethermint/x/evm/types" - "github.com/evmos/evmos/v8/x/erc20/types" + "github.com/evmos/evmos/v9/x/erc20/types" ) // This is an evil token. Whenever an A -> B transfer is called, diff --git a/contracts/erc20maliciousdelayed.go b/contracts/erc20maliciousdelayed.go index 85bfb1f9cd..a2eba29fda 100644 --- a/contracts/erc20maliciousdelayed.go +++ b/contracts/erc20maliciousdelayed.go @@ -7,7 +7,7 @@ import ( "github.com/ethereum/go-ethereum/common" evmtypes "github.com/evmos/ethermint/x/evm/types" - "github.com/evmos/evmos/v8/x/erc20/types" + "github.com/evmos/evmos/v9/x/erc20/types" ) // This is an evil token. Whenever an A -> B transfer is called, diff --git a/go.mod b/go.mod index 1c3b498ec5..2ee0403038 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/evmos/evmos/v8 +module github.com/evmos/evmos/v9 go 1.18 diff --git a/ibc/testing/app.go b/ibc/testing/app.go index 6b2f022fff..b8e85e7e02 100644 --- a/ibc/testing/app.go +++ b/ibc/testing/app.go @@ -20,7 +20,7 @@ import ( ibcgotesting "github.com/cosmos/ibc-go/v3/testing" ethermint "github.com/evmos/ethermint/types" - evmosapp "github.com/evmos/evmos/v8/app" + evmosapp "github.com/evmos/evmos/v9/app" ) var DefaultTestingAppInit func() (ibcgotesting.TestingApp, map[string]json.RawMessage) = evmosapp.SetupTestingApp diff --git a/ibc/utils.go b/ibc/utils.go index c877161f0d..8277d2120a 100644 --- a/ibc/utils.go +++ b/ibc/utils.go @@ -7,7 +7,7 @@ import ( transfertypes "github.com/cosmos/ibc-go/v3/modules/apps/transfer/types" channeltypes "github.com/cosmos/ibc-go/v3/modules/core/04-channel/types" - evmos "github.com/evmos/evmos/v8/types" + evmos "github.com/evmos/evmos/v9/types" ) // GetTransferSenderRecipient returns the sender and recipient sdk.AccAddresses diff --git a/ibc/utils_test.go b/ibc/utils_test.go index 52d295f6ec..ce92cc54c3 100644 --- a/ibc/utils_test.go +++ b/ibc/utils_test.go @@ -3,7 +3,7 @@ package ibc import ( "testing" - "github.com/evmos/evmos/v8/x/claims/types" + "github.com/evmos/evmos/v9/x/claims/types" "github.com/stretchr/testify/require" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/proto/evmos/claims/v1/claims.proto b/proto/evmos/claims/v1/claims.proto index d49e20faac..421354b321 100644 --- a/proto/evmos/claims/v1/claims.proto +++ b/proto/evmos/claims/v1/claims.proto @@ -3,7 +3,7 @@ package evmos.claims.v1; import "gogoproto/gogo.proto"; -option go_package = "github.com/evmos/evmos/v8/x/claims/types"; +option go_package = "github.com/evmos/evmos/v9/x/claims/types"; // Action defines the list of available actions to claim the airdrop tokens. enum Action { diff --git a/proto/evmos/claims/v1/genesis.proto b/proto/evmos/claims/v1/genesis.proto index fab4548682..afd72bf04c 100644 --- a/proto/evmos/claims/v1/genesis.proto +++ b/proto/evmos/claims/v1/genesis.proto @@ -6,7 +6,7 @@ import "google/protobuf/duration.proto"; import "google/protobuf/timestamp.proto"; import "evmos/claims/v1/claims.proto"; -option go_package = "github.com/evmos/evmos/v8/x/claims/types"; +option go_package = "github.com/evmos/evmos/v9/x/claims/types"; // GenesisState define the claims module's genesis state. message GenesisState { diff --git a/proto/evmos/claims/v1/query.proto b/proto/evmos/claims/v1/query.proto index 76f15ef961..e1effc6174 100644 --- a/proto/evmos/claims/v1/query.proto +++ b/proto/evmos/claims/v1/query.proto @@ -8,7 +8,7 @@ import "cosmos/base/v1beta1/coin.proto"; import "evmos/claims/v1/claims.proto"; import "evmos/claims/v1/genesis.proto"; -option go_package = "github.com/evmos/evmos/v8/x/claims/types"; +option go_package = "github.com/evmos/evmos/v9/x/claims/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/evmos/epochs/v1/genesis.proto b/proto/evmos/epochs/v1/genesis.proto index 690f8f38c7..95d2be2eba 100644 --- a/proto/evmos/epochs/v1/genesis.proto +++ b/proto/evmos/epochs/v1/genesis.proto @@ -5,7 +5,7 @@ import "gogoproto/gogo.proto"; import "google/protobuf/duration.proto"; import "google/protobuf/timestamp.proto"; -option go_package = "github.com/evmos/evmos/v8/x/epochs/types"; +option go_package = "github.com/evmos/evmos/v9/x/epochs/types"; message EpochInfo { string identifier = 1; diff --git a/proto/evmos/epochs/v1/query.proto b/proto/evmos/epochs/v1/query.proto index b9a50bbb2a..ae8a7c2c8a 100644 --- a/proto/evmos/epochs/v1/query.proto +++ b/proto/evmos/epochs/v1/query.proto @@ -6,7 +6,7 @@ import "google/api/annotations.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; import "evmos/epochs/v1/genesis.proto"; -option go_package = "github.com/evmos/evmos/v8/x/epochs/types"; +option go_package = "github.com/evmos/evmos/v9/x/epochs/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/evmos/erc20/v1/erc20.proto b/proto/evmos/erc20/v1/erc20.proto index 3d5bbb1747..98a4d51938 100644 --- a/proto/evmos/erc20/v1/erc20.proto +++ b/proto/evmos/erc20/v1/erc20.proto @@ -3,7 +3,7 @@ package evmos.erc20.v1; import "gogoproto/gogo.proto"; import "cosmos/bank/v1beta1/bank.proto"; -option go_package = "github.com/evmos/evmos/v8/x/erc20/types"; +option go_package = "github.com/evmos/evmos/v9/x/erc20/types"; // Owner enumerates the ownership of a ERC20 contract. enum Owner { diff --git a/proto/evmos/erc20/v1/genesis.proto b/proto/evmos/erc20/v1/genesis.proto index 92875c4d6d..06195be049 100644 --- a/proto/evmos/erc20/v1/genesis.proto +++ b/proto/evmos/erc20/v1/genesis.proto @@ -4,7 +4,7 @@ package evmos.erc20.v1; import "evmos/erc20/v1/erc20.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/evmos/evmos/v8/x/erc20/types"; +option go_package = "github.com/evmos/evmos/v9/x/erc20/types"; // GenesisState defines the module's genesis state. message GenesisState { diff --git a/proto/evmos/erc20/v1/query.proto b/proto/evmos/erc20/v1/query.proto index 51127750f1..de3074a202 100644 --- a/proto/evmos/erc20/v1/query.proto +++ b/proto/evmos/erc20/v1/query.proto @@ -7,7 +7,7 @@ import "evmos/erc20/v1/erc20.proto"; import "google/api/annotations.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/evmos/evmos/v8/x/erc20/types"; +option go_package = "github.com/evmos/evmos/v9/x/erc20/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/evmos/erc20/v1/tx.proto b/proto/evmos/erc20/v1/tx.proto index 1ce07d00a7..0ad6882012 100644 --- a/proto/evmos/erc20/v1/tx.proto +++ b/proto/evmos/erc20/v1/tx.proto @@ -5,7 +5,7 @@ import "google/api/annotations.proto"; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; -option go_package = "github.com/evmos/evmos/v8/x/erc20/types"; +option go_package = "github.com/evmos/evmos/v9/x/erc20/types"; // Msg defines the erc20 Msg service. service Msg { diff --git a/proto/evmos/incentives/v1/genesis.proto b/proto/evmos/incentives/v1/genesis.proto index 62cd4819fe..2d0a605d5b 100644 --- a/proto/evmos/incentives/v1/genesis.proto +++ b/proto/evmos/incentives/v1/genesis.proto @@ -4,7 +4,7 @@ import "evmos/incentives/v1/incentives.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/evmos/evmos/v8/x/incentives/types"; +option go_package = "github.com/evmos/evmos/v9/x/incentives/types"; // GenesisState defines the module's genesis state. message GenesisState { diff --git a/proto/evmos/incentives/v1/incentives.proto b/proto/evmos/incentives/v1/incentives.proto index 71f6f77a2a..9a915928ac 100644 --- a/proto/evmos/incentives/v1/incentives.proto +++ b/proto/evmos/incentives/v1/incentives.proto @@ -4,7 +4,7 @@ package evmos.incentives.v1; import "gogoproto/gogo.proto"; import "google/protobuf/timestamp.proto"; import "cosmos/base/v1beta1/coin.proto"; -option go_package = "github.com/evmos/evmos/v8/x/incentives/types"; +option go_package = "github.com/evmos/evmos/v9/x/incentives/types"; // Incentive defines an instance that organizes distribution conditions for a // given smart contract diff --git a/proto/evmos/incentives/v1/query.proto b/proto/evmos/incentives/v1/query.proto index b0464e6c31..87aca1432e 100644 --- a/proto/evmos/incentives/v1/query.proto +++ b/proto/evmos/incentives/v1/query.proto @@ -8,7 +8,7 @@ import "evmos/incentives/v1/incentives.proto"; import "google/api/annotations.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/evmos/evmos/v8/x/incentives/types"; +option go_package = "github.com/evmos/evmos/v9/x/incentives/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/evmos/inflation/v1/genesis.proto b/proto/evmos/inflation/v1/genesis.proto index 5d0ca8347e..6252d89384 100644 --- a/proto/evmos/inflation/v1/genesis.proto +++ b/proto/evmos/inflation/v1/genesis.proto @@ -5,7 +5,7 @@ import "gogoproto/gogo.proto"; import "evmos/inflation/v1/inflation.proto"; -option go_package = "github.com/evmos/evmos/v8/x/inflation/types"; +option go_package = "github.com/evmos/evmos/v9/x/inflation/types"; // GenesisState defines the inflation module's genesis state. message GenesisState { diff --git a/proto/evmos/inflation/v1/inflation.proto b/proto/evmos/inflation/v1/inflation.proto index cbf2ef6ef8..a89eaa3392 100644 --- a/proto/evmos/inflation/v1/inflation.proto +++ b/proto/evmos/inflation/v1/inflation.proto @@ -3,7 +3,7 @@ package evmos.inflation.v1; import "gogoproto/gogo.proto"; -option go_package = "github.com/evmos/evmos/v8/x/inflation/types"; +option go_package = "github.com/evmos/evmos/v9/x/inflation/types"; // InflationDistribution defines the distribution in which inflation is // allocated through minting on each epoch (staking, incentives, community). It diff --git a/proto/evmos/inflation/v1/query.proto b/proto/evmos/inflation/v1/query.proto index e924b4eaa9..39aa136cb2 100644 --- a/proto/evmos/inflation/v1/query.proto +++ b/proto/evmos/inflation/v1/query.proto @@ -6,7 +6,7 @@ import "google/api/annotations.proto"; import "cosmos/base/v1beta1/coin.proto"; import "evmos/inflation/v1/genesis.proto"; -option go_package = "github.com/evmos/evmos/v8/x/inflation/types"; +option go_package = "github.com/evmos/evmos/v9/x/inflation/types"; // Query provides defines the gRPC querier service. service Query { diff --git a/proto/evmos/recovery/v1/genesis.proto b/proto/evmos/recovery/v1/genesis.proto index 6bfa0e85a1..d8fddb2307 100644 --- a/proto/evmos/recovery/v1/genesis.proto +++ b/proto/evmos/recovery/v1/genesis.proto @@ -4,7 +4,7 @@ package evmos.recovery.v1; import "gogoproto/gogo.proto"; import "google/protobuf/duration.proto"; -option go_package = "github.com/evmos/evmos/v8/x/recovery/types"; +option go_package = "github.com/evmos/evmos/v9/x/recovery/types"; // GenesisState defines the recovery module's genesis state. message GenesisState { diff --git a/proto/evmos/recovery/v1/query.proto b/proto/evmos/recovery/v1/query.proto index 2302c24e9d..255a06eeb1 100644 --- a/proto/evmos/recovery/v1/query.proto +++ b/proto/evmos/recovery/v1/query.proto @@ -5,7 +5,7 @@ import "google/api/annotations.proto"; import "gogoproto/gogo.proto"; import "evmos/recovery/v1/genesis.proto"; -option go_package = "github.com/evmos/evmos/v8/x/recovery/types"; +option go_package = "github.com/evmos/evmos/v9/x/recovery/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/evmos/revenue/v1/genesis.proto b/proto/evmos/revenue/v1/genesis.proto index 07d19e88df..0f34f96a4d 100644 --- a/proto/evmos/revenue/v1/genesis.proto +++ b/proto/evmos/revenue/v1/genesis.proto @@ -4,7 +4,7 @@ package evmos.revenue.v1; import "evmos/revenue/v1/revenue.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/evmos/evmos/v8/x/revenue/types"; +option go_package = "github.com/evmos/evmos/v9/x/revenue/types"; // GenesisState defines the module's genesis state. message GenesisState { diff --git a/proto/evmos/revenue/v1/query.proto b/proto/evmos/revenue/v1/query.proto index 3c29b40a39..0a00e69c25 100644 --- a/proto/evmos/revenue/v1/query.proto +++ b/proto/evmos/revenue/v1/query.proto @@ -7,7 +7,7 @@ import "evmos/revenue/v1/revenue.proto"; import "google/api/annotations.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/evmos/evmos/v8/x/revenue/types"; +option go_package = "github.com/evmos/evmos/v9/x/revenue/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/evmos/revenue/v1/revenue.proto b/proto/evmos/revenue/v1/revenue.proto index 158627f92c..00fe5a2bdd 100644 --- a/proto/evmos/revenue/v1/revenue.proto +++ b/proto/evmos/revenue/v1/revenue.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package evmos.revenue.v1; -option go_package = "github.com/evmos/evmos/v8/x/revenue/types"; +option go_package = "github.com/evmos/evmos/v9/x/revenue/types"; // Revenue defines an instance that organizes fee distribution conditions for // the owner of a given smart contract diff --git a/proto/evmos/revenue/v1/tx.proto b/proto/evmos/revenue/v1/tx.proto index f3b1b4bbff..24579e1678 100644 --- a/proto/evmos/revenue/v1/tx.proto +++ b/proto/evmos/revenue/v1/tx.proto @@ -4,7 +4,7 @@ package evmos.revenue.v1; import "google/api/annotations.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/evmos/evmos/v8/x/revenue/types"; +option go_package = "github.com/evmos/evmos/v9/x/revenue/types"; // Msg defines the fees Msg service. service Msg { diff --git a/proto/evmos/vesting/v1/query.proto b/proto/evmos/vesting/v1/query.proto index 4da5a8543a..17c1b4dbce 100644 --- a/proto/evmos/vesting/v1/query.proto +++ b/proto/evmos/vesting/v1/query.proto @@ -5,7 +5,7 @@ import "cosmos/base/v1beta1/coin.proto"; import "google/api/annotations.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/evmos/evmos/v8/x/vesting/types"; +option go_package = "github.com/evmos/evmos/v9/x/vesting/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/evmos/vesting/v1/tx.proto b/proto/evmos/vesting/v1/tx.proto index c7bcde28a4..3b10b0f02f 100644 --- a/proto/evmos/vesting/v1/tx.proto +++ b/proto/evmos/vesting/v1/tx.proto @@ -6,7 +6,7 @@ import "gogoproto/gogo.proto"; import "google/protobuf/timestamp.proto"; import "cosmos/vesting/v1beta1/vesting.proto"; -option go_package = "github.com/evmos/evmos/v8/x/vesting/types"; +option go_package = "github.com/evmos/evmos/v9/x/vesting/types"; // Msg defines the vesting Msg service. service Msg { diff --git a/proto/evmos/vesting/v1/vesting.proto b/proto/evmos/vesting/v1/vesting.proto index f31ed311fb..88dc3a2ea0 100644 --- a/proto/evmos/vesting/v1/vesting.proto +++ b/proto/evmos/vesting/v1/vesting.proto @@ -5,7 +5,7 @@ import "gogoproto/gogo.proto"; import "cosmos/vesting/v1beta1/vesting.proto"; import "google/protobuf/timestamp.proto"; -option go_package = "github.com/evmos/evmos/v8/x/vesting/types"; +option go_package = "github.com/evmos/evmos/v9/x/vesting/types"; // ClawbackVestingAccount implements the VestingAccount interface. It provides // an account that can hold contributions subject to "lockup" (like a diff --git a/testutil/fund.go b/testutil/fund.go index ee8acd597c..8366004dbd 100644 --- a/testutil/fund.go +++ b/testutil/fund.go @@ -3,7 +3,7 @@ package testutil import ( sdk "github.com/cosmos/cosmos-sdk/types" bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" - inflationtypes "github.com/evmos/evmos/v8/x/inflation/types" + inflationtypes "github.com/evmos/evmos/v9/x/inflation/types" ) // FundAccount is a utility function that funds an account by minting and diff --git a/testutil/network/network.go b/testutil/network/network.go index f89363aded..612d17e5dc 100644 --- a/testutil/network/network.go +++ b/testutil/network/network.go @@ -48,7 +48,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/genutil" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" "github.com/evmos/ethermint/crypto/hd" - "github.com/evmos/evmos/v8/app" + "github.com/evmos/evmos/v9/app" "github.com/evmos/ethermint/encoding" "github.com/evmos/ethermint/server/config" diff --git a/testutil/network/network_test.go b/testutil/network/network_test.go index d21401ba0d..5ce05fc529 100644 --- a/testutil/network/network_test.go +++ b/testutil/network/network_test.go @@ -14,7 +14,7 @@ import ( "github.com/evmos/ethermint/server/config" "github.com/evmos/ethermint/testutil/network" - evmosnetwork "github.com/evmos/evmos/v8/testutil/network" + evmosnetwork "github.com/evmos/evmos/v9/testutil/network" ) type IntegrationTestSuite struct { diff --git a/testutil/network/util.go b/testutil/network/util.go index e4a8deabbb..c4bfab3d43 100644 --- a/testutil/network/util.go +++ b/testutil/network/util.go @@ -26,7 +26,7 @@ import ( genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - inflationtypes "github.com/evmos/evmos/v8/x/inflation/types" + inflationtypes "github.com/evmos/evmos/v9/x/inflation/types" "github.com/evmos/ethermint/server" evmtypes "github.com/evmos/ethermint/x/evm/types" diff --git a/x/claims/client/cli/query.go b/x/claims/client/cli/query.go index 2c538b142c..127256896a 100644 --- a/x/claims/client/cli/query.go +++ b/x/claims/client/cli/query.go @@ -10,7 +10,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/version" - "github.com/evmos/evmos/v8/x/claims/types" + "github.com/evmos/evmos/v9/x/claims/types" ) // GetQueryCmd returns the cli query commands for this module diff --git a/x/claims/genesis.go b/x/claims/genesis.go index ab7ea653dc..d400fc18f1 100644 --- a/x/claims/genesis.go +++ b/x/claims/genesis.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v8/x/claims/keeper" - "github.com/evmos/evmos/v8/x/claims/types" + "github.com/evmos/evmos/v9/x/claims/keeper" + "github.com/evmos/evmos/v9/x/claims/types" ) // InitGenesis initializes the claim module's state from a provided genesis diff --git a/x/claims/genesis_test.go b/x/claims/genesis_test.go index b72650e778..1ea2cbbaf4 100644 --- a/x/claims/genesis_test.go +++ b/x/claims/genesis_test.go @@ -15,10 +15,10 @@ import ( "github.com/evmos/ethermint/tests" feemarkettypes "github.com/evmos/ethermint/x/feemarket/types" - "github.com/evmos/evmos/v8/app" - "github.com/evmos/evmos/v8/testutil" - "github.com/evmos/evmos/v8/x/claims" - "github.com/evmos/evmos/v8/x/claims/types" + "github.com/evmos/evmos/v9/app" + "github.com/evmos/evmos/v9/testutil" + "github.com/evmos/evmos/v9/x/claims" + "github.com/evmos/evmos/v9/x/claims/types" ) type GenesisTestSuite struct { diff --git a/x/claims/handler.go b/x/claims/handler.go index 7f7ebf71d8..284505f102 100644 --- a/x/claims/handler.go +++ b/x/claims/handler.go @@ -6,8 +6,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/evmos/evmos/v8/x/claims/keeper" - "github.com/evmos/evmos/v8/x/claims/types" + "github.com/evmos/evmos/v9/x/claims/keeper" + "github.com/evmos/evmos/v9/x/claims/types" ) // NewHandler returns claim module messages diff --git a/x/claims/ibc_middleware.go b/x/claims/ibc_middleware.go index 5faec9532c..587591f729 100644 --- a/x/claims/ibc_middleware.go +++ b/x/claims/ibc_middleware.go @@ -7,8 +7,8 @@ import ( porttypes "github.com/cosmos/ibc-go/v3/modules/core/05-port/types" "github.com/cosmos/ibc-go/v3/modules/core/exported" - "github.com/evmos/evmos/v8/ibc" - "github.com/evmos/evmos/v8/x/claims/keeper" + "github.com/evmos/evmos/v9/ibc" + "github.com/evmos/evmos/v9/x/claims/keeper" ) var _ porttypes.Middleware = &IBCMiddleware{} diff --git a/x/claims/keeper/abci.go b/x/claims/keeper/abci.go index e9b7c26342..14acde9493 100644 --- a/x/claims/keeper/abci.go +++ b/x/claims/keeper/abci.go @@ -7,7 +7,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" vestexported "github.com/cosmos/cosmos-sdk/x/auth/vesting/exported" - "github.com/evmos/evmos/v8/x/claims/types" + "github.com/evmos/evmos/v9/x/claims/types" ) // EndBlocker checks if the airdrop claiming period has ended in order to diff --git a/x/claims/keeper/abci_test.go b/x/claims/keeper/abci_test.go index 149006c016..6acfe722d3 100644 --- a/x/claims/keeper/abci_test.go +++ b/x/claims/keeper/abci_test.go @@ -9,9 +9,9 @@ import ( distrtypes "github.com/cosmos/cosmos-sdk/x/distribution/types" "github.com/evmos/ethermint/tests" - "github.com/evmos/evmos/v8/testutil" - "github.com/evmos/evmos/v8/x/claims/types" - vestingtypes "github.com/evmos/evmos/v8/x/vesting/types" + "github.com/evmos/evmos/v9/testutil" + "github.com/evmos/evmos/v9/x/claims/types" + vestingtypes "github.com/evmos/evmos/v9/x/vesting/types" ) func (suite *KeeperTestSuite) TestEndBlock() { diff --git a/x/claims/keeper/claim.go b/x/claims/keeper/claim.go index 2c9ee07545..9e89e045c1 100644 --- a/x/claims/keeper/claim.go +++ b/x/claims/keeper/claim.go @@ -4,7 +4,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/evmos/evmos/v8/x/claims/types" + "github.com/evmos/evmos/v9/x/claims/types" ) // ClaimCoinsForAction removes the claimable amount entry from a claims record diff --git a/x/claims/keeper/claim_test.go b/x/claims/keeper/claim_test.go index 24edff664c..81fc8eacbe 100644 --- a/x/claims/keeper/claim_test.go +++ b/x/claims/keeper/claim_test.go @@ -14,10 +14,10 @@ import ( "github.com/evmos/ethermint/crypto/ethsecp256k1" "github.com/evmos/ethermint/tests" ethermint "github.com/evmos/ethermint/types" - "github.com/evmos/evmos/v8/testutil" - inflationtypes "github.com/evmos/evmos/v8/x/inflation/types" + "github.com/evmos/evmos/v9/testutil" + inflationtypes "github.com/evmos/evmos/v9/x/inflation/types" - "github.com/evmos/evmos/v8/x/claims/types" + "github.com/evmos/evmos/v9/x/claims/types" ) func (suite *KeeperTestSuite) TestGetClaimableAmountForAction() { diff --git a/x/claims/keeper/claims_records.go b/x/claims/keeper/claims_records.go index f0629d8f39..f7176e88d2 100644 --- a/x/claims/keeper/claims_records.go +++ b/x/claims/keeper/claims_records.go @@ -4,7 +4,7 @@ import ( "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v8/x/claims/types" + "github.com/evmos/evmos/v9/x/claims/types" ) // GetClaimsRecord returns the claims record for a specific address diff --git a/x/claims/keeper/claims_records_test.go b/x/claims/keeper/claims_records_test.go index 44e452a3a0..cc8a0ce0df 100644 --- a/x/claims/keeper/claims_records_test.go +++ b/x/claims/keeper/claims_records_test.go @@ -3,7 +3,7 @@ package keeper_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v8/x/claims/types" + "github.com/evmos/evmos/v9/x/claims/types" ) func (suite *KeeperTestSuite) TestsClaimsRecords() { diff --git a/x/claims/keeper/grpc_query.go b/x/claims/keeper/grpc_query.go index 3435d0dd40..fabf9cc07b 100644 --- a/x/claims/keeper/grpc_query.go +++ b/x/claims/keeper/grpc_query.go @@ -9,7 +9,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/evmos/evmos/v8/x/claims/types" + "github.com/evmos/evmos/v9/x/claims/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/claims/keeper/grpc_query_test.go b/x/claims/keeper/grpc_query_test.go index 554277ea21..1bfcfb640c 100644 --- a/x/claims/keeper/grpc_query_test.go +++ b/x/claims/keeper/grpc_query_test.go @@ -6,8 +6,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/evmos/ethermint/tests" - "github.com/evmos/evmos/v8/testutil" - "github.com/evmos/evmos/v8/x/claims/types" + "github.com/evmos/evmos/v9/testutil" + "github.com/evmos/evmos/v9/x/claims/types" ) func (suite *KeeperTestSuite) TestTotalUnclaimed() { diff --git a/x/claims/keeper/hooks.go b/x/claims/keeper/hooks.go index 4717b76197..f7956e194a 100644 --- a/x/claims/keeper/hooks.go +++ b/x/claims/keeper/hooks.go @@ -13,7 +13,7 @@ import ( evmtypes "github.com/evmos/ethermint/x/evm/types" - "github.com/evmos/evmos/v8/x/claims/types" + "github.com/evmos/evmos/v9/x/claims/types" ) var ( diff --git a/x/claims/keeper/hooks_test.go b/x/claims/keeper/hooks_test.go index 7f6465214a..ddba8d38a2 100644 --- a/x/claims/keeper/hooks_test.go +++ b/x/claims/keeper/hooks_test.go @@ -8,8 +8,8 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" ethtypes "github.com/ethereum/go-ethereum/core/types" "github.com/evmos/ethermint/tests" - "github.com/evmos/evmos/v8/testutil" - "github.com/evmos/evmos/v8/x/claims/types" + "github.com/evmos/evmos/v9/testutil" + "github.com/evmos/evmos/v9/x/claims/types" ) func (suite *KeeperTestSuite) TestAfterProposalVote() { diff --git a/x/claims/keeper/ibc_callbacks.go b/x/claims/keeper/ibc_callbacks.go index 849cac2a19..de2cd9487b 100644 --- a/x/claims/keeper/ibc_callbacks.go +++ b/x/claims/keeper/ibc_callbacks.go @@ -7,9 +7,9 @@ import ( channeltypes "github.com/cosmos/ibc-go/v3/modules/core/04-channel/types" "github.com/cosmos/ibc-go/v3/modules/core/exported" - "github.com/evmos/evmos/v8/ibc" - evmos "github.com/evmos/evmos/v8/types" - "github.com/evmos/evmos/v8/x/claims/types" + "github.com/evmos/evmos/v9/ibc" + evmos "github.com/evmos/evmos/v9/types" + "github.com/evmos/evmos/v9/x/claims/types" ) // OnAcknowledgementPacket performs an IBC send callback. Once a user submits an diff --git a/x/claims/keeper/ibc_callbacks_ibc_suite_test.go b/x/claims/keeper/ibc_callbacks_ibc_suite_test.go index 794613e513..f1ee99eb03 100644 --- a/x/claims/keeper/ibc_callbacks_ibc_suite_test.go +++ b/x/claims/keeper/ibc_callbacks_ibc_suite_test.go @@ -13,10 +13,10 @@ import ( ibcgotesting "github.com/cosmos/ibc-go/v3/testing" "github.com/evmos/ethermint/tests" - "github.com/evmos/evmos/v8/app" - ibctesting "github.com/evmos/evmos/v8/ibc/testing" - "github.com/evmos/evmos/v8/testutil" - "github.com/evmos/evmos/v8/x/claims/types" + "github.com/evmos/evmos/v9/app" + ibctesting "github.com/evmos/evmos/v9/ibc/testing" + "github.com/evmos/evmos/v9/testutil" + "github.com/evmos/evmos/v9/x/claims/types" ) type IBCTestingSuite struct { diff --git a/x/claims/keeper/ibc_callbacks_test.go b/x/claims/keeper/ibc_callbacks_test.go index 5348f842e1..5dfd6546ea 100644 --- a/x/claims/keeper/ibc_callbacks_test.go +++ b/x/claims/keeper/ibc_callbacks_test.go @@ -14,7 +14,7 @@ import ( ibcgotesting "github.com/cosmos/ibc-go/v3/testing" ibcmock "github.com/cosmos/ibc-go/v3/testing/mock" - "github.com/evmos/evmos/v8/x/claims/types" + "github.com/evmos/evmos/v9/x/claims/types" ) var timeoutHeight = clienttypes.NewHeight(1000, 1000) diff --git a/x/claims/keeper/integration_test.go b/x/claims/keeper/integration_test.go index 528100a4c6..fe1f417262 100644 --- a/x/claims/keeper/integration_test.go +++ b/x/claims/keeper/integration_test.go @@ -23,17 +23,17 @@ import ( "github.com/evmos/ethermint/encoding" "github.com/evmos/ethermint/tests" evmtypes "github.com/evmos/ethermint/x/evm/types" - "github.com/evmos/evmos/v8/app" - "github.com/evmos/evmos/v8/testutil" - incentivestypes "github.com/evmos/evmos/v8/x/incentives/types" - inflationtypes "github.com/evmos/evmos/v8/x/inflation/types" + "github.com/evmos/evmos/v9/app" + "github.com/evmos/evmos/v9/testutil" + incentivestypes "github.com/evmos/evmos/v9/x/incentives/types" + inflationtypes "github.com/evmos/evmos/v9/x/inflation/types" authsigning "github.com/cosmos/cosmos-sdk/x/auth/signing" distrtypes "github.com/cosmos/cosmos-sdk/x/distribution/types" "github.com/evmos/ethermint/server/config" evm "github.com/evmos/ethermint/x/evm/types" - "github.com/evmos/evmos/v8/contracts" - "github.com/evmos/evmos/v8/x/claims/types" + "github.com/evmos/evmos/v9/contracts" + "github.com/evmos/evmos/v9/x/claims/types" abci "github.com/tendermint/tendermint/abci/types" ) diff --git a/x/claims/keeper/invariants.go b/x/claims/keeper/invariants.go index b8464b5232..8dcb4e2611 100644 --- a/x/claims/keeper/invariants.go +++ b/x/claims/keeper/invariants.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v8/x/claims/types" + "github.com/evmos/evmos/v9/x/claims/types" ) // RegisterInvariants registers the claims module invariants diff --git a/x/claims/keeper/invariants_test.go b/x/claims/keeper/invariants_test.go index d860c7738a..465a658ffa 100644 --- a/x/claims/keeper/invariants_test.go +++ b/x/claims/keeper/invariants_test.go @@ -5,8 +5,8 @@ import ( "github.com/evmos/ethermint/tests" - "github.com/evmos/evmos/v8/testutil" - "github.com/evmos/evmos/v8/x/claims/types" + "github.com/evmos/evmos/v9/testutil" + "github.com/evmos/evmos/v9/x/claims/types" ) func (suite *KeeperTestSuite) TestClaimsInvariant() { diff --git a/x/claims/keeper/keeper.go b/x/claims/keeper/keeper.go index 34e112b631..279482018d 100644 --- a/x/claims/keeper/keeper.go +++ b/x/claims/keeper/keeper.go @@ -11,7 +11,7 @@ import ( paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" porttypes "github.com/cosmos/ibc-go/v3/modules/core/05-port/types" - "github.com/evmos/evmos/v8/x/claims/types" + "github.com/evmos/evmos/v9/x/claims/types" ) // Keeper struct diff --git a/x/claims/keeper/keeper_test.go b/x/claims/keeper/keeper_test.go index 5fea8ea708..9dca14dac2 100644 --- a/x/claims/keeper/keeper_test.go +++ b/x/claims/keeper/keeper_test.go @@ -19,9 +19,9 @@ import ( stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" ethtypes "github.com/ethereum/go-ethereum/core/types" evm "github.com/evmos/ethermint/x/evm/types" - "github.com/evmos/evmos/v8/app" - "github.com/evmos/evmos/v8/testutil" - "github.com/evmos/evmos/v8/x/claims/types" + "github.com/evmos/evmos/v9/app" + "github.com/evmos/evmos/v9/testutil" + "github.com/evmos/evmos/v9/x/claims/types" "github.com/stretchr/testify/require" "github.com/stretchr/testify/suite" abci "github.com/tendermint/tendermint/abci/types" diff --git a/x/claims/keeper/migrations.go b/x/claims/keeper/migrations.go index a9b946fac3..2fb07a9a74 100644 --- a/x/claims/keeper/migrations.go +++ b/x/claims/keeper/migrations.go @@ -4,7 +4,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - v2 "github.com/evmos/evmos/v8/x/claims/migrations/v2" + v2 "github.com/evmos/evmos/v9/x/claims/migrations/v2" ) var _ module.MigrationHandler = Migrator{}.Migrate1to2 diff --git a/x/claims/keeper/params.go b/x/claims/keeper/params.go index 721752ab4b..6e07c89d0f 100644 --- a/x/claims/keeper/params.go +++ b/x/claims/keeper/params.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v8/x/claims/types" + "github.com/evmos/evmos/v9/x/claims/types" ) // GetParams returns the total set of claim parameters. diff --git a/x/claims/keeper/params_test.go b/x/claims/keeper/params_test.go index 86643f0c57..ded0326213 100644 --- a/x/claims/keeper/params_test.go +++ b/x/claims/keeper/params_test.go @@ -1,7 +1,7 @@ package keeper_test import ( - "github.com/evmos/evmos/v8/x/claims/types" + "github.com/evmos/evmos/v9/x/claims/types" ) func (suite *KeeperTestSuite) TestParams() { diff --git a/x/claims/migrations/v2/migration.go b/x/claims/migrations/v2/migration.go index 60af2709ea..008d6dc625 100644 --- a/x/claims/migrations/v2/migration.go +++ b/x/claims/migrations/v2/migration.go @@ -4,8 +4,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - v1types "github.com/evmos/evmos/v8/x/claims/migrations/v1/types" - "github.com/evmos/evmos/v8/x/claims/types" + v1types "github.com/evmos/evmos/v9/x/claims/migrations/v1/types" + "github.com/evmos/evmos/v9/x/claims/types" ) // MigrateStore adds the new parameters AuthorizedChannels and EVMChannels diff --git a/x/claims/migrations/v2/migration_test.go b/x/claims/migrations/v2/migration_test.go index 63cea60d05..93fc95bca9 100644 --- a/x/claims/migrations/v2/migration_test.go +++ b/x/claims/migrations/v2/migration_test.go @@ -8,9 +8,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" "github.com/evmos/ethermint/encoding" - "github.com/evmos/evmos/v8/app" - v2 "github.com/evmos/evmos/v8/x/claims/migrations/v2" - claims "github.com/evmos/evmos/v8/x/claims/types" + "github.com/evmos/evmos/v9/app" + v2 "github.com/evmos/evmos/v9/x/claims/migrations/v2" + claims "github.com/evmos/evmos/v9/x/claims/types" "github.com/stretchr/testify/require" ) diff --git a/x/claims/module.go b/x/claims/module.go index d2a938d0c3..05d0c892b4 100644 --- a/x/claims/module.go +++ b/x/claims/module.go @@ -17,9 +17,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/evmos/evmos/v8/x/claims/client/cli" - "github.com/evmos/evmos/v8/x/claims/keeper" - "github.com/evmos/evmos/v8/x/claims/types" + "github.com/evmos/evmos/v9/x/claims/client/cli" + "github.com/evmos/evmos/v9/x/claims/keeper" + "github.com/evmos/evmos/v9/x/claims/types" ) var ( diff --git a/x/epochs/client/cli/query.go b/x/epochs/client/cli/query.go index 0966959709..dee5d47ff8 100644 --- a/x/epochs/client/cli/query.go +++ b/x/epochs/client/cli/query.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/version" "github.com/spf13/cobra" - "github.com/evmos/evmos/v8/x/epochs/types" + "github.com/evmos/evmos/v9/x/epochs/types" ) // GetQueryCmd returns the cli query commands for this module diff --git a/x/epochs/genesis.go b/x/epochs/genesis.go index bc0e2ae22f..a097c3af55 100644 --- a/x/epochs/genesis.go +++ b/x/epochs/genesis.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v8/x/epochs/keeper" - "github.com/evmos/evmos/v8/x/epochs/types" + "github.com/evmos/evmos/v9/x/epochs/keeper" + "github.com/evmos/evmos/v9/x/epochs/types" ) // InitGenesis initializes the epochs module's state from a provided genesis diff --git a/x/epochs/genesis_test.go b/x/epochs/genesis_test.go index 4cf684a0c5..86f6d22aca 100644 --- a/x/epochs/genesis_test.go +++ b/x/epochs/genesis_test.go @@ -8,9 +8,9 @@ import ( "github.com/stretchr/testify/require" tmproto "github.com/tendermint/tendermint/proto/tendermint/types" - simapp "github.com/evmos/evmos/v8/app" - "github.com/evmos/evmos/v8/x/epochs" - "github.com/evmos/evmos/v8/x/epochs/types" + simapp "github.com/evmos/evmos/v9/app" + "github.com/evmos/evmos/v9/x/epochs" + "github.com/evmos/evmos/v9/x/epochs/types" ) func TestEpochsExportGenesis(t *testing.T) { diff --git a/x/epochs/keeper/abci.go b/x/epochs/keeper/abci.go index d941f33816..98b5e970f0 100644 --- a/x/epochs/keeper/abci.go +++ b/x/epochs/keeper/abci.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v8/x/epochs/types" + "github.com/evmos/evmos/v9/x/epochs/types" ) // BeginBlocker of epochs module diff --git a/x/epochs/keeper/abci_test.go b/x/epochs/keeper/abci_test.go index cba819b8af..988147a163 100644 --- a/x/epochs/keeper/abci_test.go +++ b/x/epochs/keeper/abci_test.go @@ -4,8 +4,8 @@ import ( "fmt" "time" - "github.com/evmos/evmos/v8/x/epochs" - "github.com/evmos/evmos/v8/x/epochs/types" + "github.com/evmos/evmos/v9/x/epochs" + "github.com/evmos/evmos/v9/x/epochs/types" ) func (suite *KeeperTestSuite) TestEpochInfoChangesBeginBlockerAndInitGenesis() { diff --git a/x/epochs/keeper/epoch_infos.go b/x/epochs/keeper/epoch_infos.go index 4cb9045208..cc00417f6b 100644 --- a/x/epochs/keeper/epoch_infos.go +++ b/x/epochs/keeper/epoch_infos.go @@ -4,7 +4,7 @@ import ( "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v8/x/epochs/types" + "github.com/evmos/evmos/v9/x/epochs/types" ) // GetEpochInfo returns epoch info by identifier diff --git a/x/epochs/keeper/epoch_infos_test.go b/x/epochs/keeper/epoch_infos_test.go index b455fc1fc3..a992f80306 100644 --- a/x/epochs/keeper/epoch_infos_test.go +++ b/x/epochs/keeper/epoch_infos_test.go @@ -3,7 +3,7 @@ package keeper_test import ( "time" - "github.com/evmos/evmos/v8/x/epochs/types" + "github.com/evmos/evmos/v9/x/epochs/types" ) func (suite *KeeperTestSuite) TestEpochLifeCycle() { diff --git a/x/epochs/keeper/grpc_query.go b/x/epochs/keeper/grpc_query.go index 666c817cae..2875e23189 100644 --- a/x/epochs/keeper/grpc_query.go +++ b/x/epochs/keeper/grpc_query.go @@ -9,7 +9,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/evmos/evmos/v8/x/epochs/types" + "github.com/evmos/evmos/v9/x/epochs/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/epochs/keeper/grpc_query_test.go b/x/epochs/keeper/grpc_query_test.go index 5b0ab4cbfb..1e9812943a 100644 --- a/x/epochs/keeper/grpc_query_test.go +++ b/x/epochs/keeper/grpc_query_test.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - "github.com/evmos/evmos/v8/x/epochs/types" + "github.com/evmos/evmos/v9/x/epochs/types" ) func (suite *KeeperTestSuite) TestEpochInfo() { diff --git a/x/epochs/keeper/hooks.go b/x/epochs/keeper/hooks.go index a4b71e2c18..def02db631 100644 --- a/x/epochs/keeper/hooks.go +++ b/x/epochs/keeper/hooks.go @@ -2,7 +2,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v8/x/epochs/types" + "github.com/evmos/evmos/v9/x/epochs/types" ) var _ types.EpochHooks = MultiEpochHooks{} diff --git a/x/epochs/keeper/keeper.go b/x/epochs/keeper/keeper.go index fd218fab0a..aa646a02af 100644 --- a/x/epochs/keeper/keeper.go +++ b/x/epochs/keeper/keeper.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/tendermint/tendermint/libs/log" - "github.com/evmos/evmos/v8/x/epochs/types" + "github.com/evmos/evmos/v9/x/epochs/types" ) // Keeper of this module maintains collections of epochs and hooks. diff --git a/x/epochs/keeper/keeper_test.go b/x/epochs/keeper/keeper_test.go index cd4576fa78..bb1400eea0 100644 --- a/x/epochs/keeper/keeper_test.go +++ b/x/epochs/keeper/keeper_test.go @@ -19,8 +19,8 @@ import ( evm "github.com/evmos/ethermint/x/evm/types" - "github.com/evmos/evmos/v8/app" - "github.com/evmos/evmos/v8/x/epochs/types" + "github.com/evmos/evmos/v9/app" + "github.com/evmos/evmos/v9/x/epochs/types" ) var denomMint = evm.DefaultEVMDenom diff --git a/x/epochs/module.go b/x/epochs/module.go index 7eb2b3fa3a..aba7bf76c0 100644 --- a/x/epochs/module.go +++ b/x/epochs/module.go @@ -20,9 +20,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/evmos/evmos/v8/x/epochs/client/cli" - "github.com/evmos/evmos/v8/x/epochs/keeper" - "github.com/evmos/evmos/v8/x/epochs/types" + "github.com/evmos/evmos/v9/x/epochs/client/cli" + "github.com/evmos/evmos/v9/x/epochs/keeper" + "github.com/evmos/evmos/v9/x/epochs/types" ) var ( diff --git a/x/erc20/client/cli/query.go b/x/erc20/client/cli/query.go index 9c48da78e0..4ec1b5a1ca 100644 --- a/x/erc20/client/cli/query.go +++ b/x/erc20/client/cli/query.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/evmos/evmos/v8/x/erc20/types" + "github.com/evmos/evmos/v9/x/erc20/types" ) // GetQueryCmd returns the parent command for all erc20 CLI query commands diff --git a/x/erc20/client/cli/tx.go b/x/erc20/client/cli/tx.go index 3219b2a6de..940d3ded24 100644 --- a/x/erc20/client/cli/tx.go +++ b/x/erc20/client/cli/tx.go @@ -17,7 +17,7 @@ import ( ethermint "github.com/evmos/ethermint/types" - "github.com/evmos/evmos/v8/x/erc20/types" + "github.com/evmos/evmos/v9/x/erc20/types" ) // NewTxCmd returns a root CLI command handler for erc20 transaction commands diff --git a/x/erc20/client/proposal_handler.go b/x/erc20/client/proposal_handler.go index df3a544a61..acafc6502f 100644 --- a/x/erc20/client/proposal_handler.go +++ b/x/erc20/client/proposal_handler.go @@ -3,8 +3,8 @@ package client import ( govclient "github.com/cosmos/cosmos-sdk/x/gov/client" - "github.com/evmos/evmos/v8/x/erc20/client/cli" - "github.com/evmos/evmos/v8/x/erc20/client/rest" + "github.com/evmos/evmos/v9/x/erc20/client/cli" + "github.com/evmos/evmos/v9/x/erc20/client/rest" ) var ( diff --git a/x/erc20/client/rest/rest.go b/x/erc20/client/rest/rest.go index 11ee66c0e1..667a0f174c 100644 --- a/x/erc20/client/rest/rest.go +++ b/x/erc20/client/rest/rest.go @@ -11,7 +11,7 @@ import ( govrest "github.com/cosmos/cosmos-sdk/x/gov/client/rest" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/evmos/evmos/v8/x/erc20/types" + "github.com/evmos/evmos/v9/x/erc20/types" ) // RegisterCoinProposalRequest defines a request for a new register coin proposal. diff --git a/x/erc20/genesis.go b/x/erc20/genesis.go index 2fe40e886a..14e38c0b26 100644 --- a/x/erc20/genesis.go +++ b/x/erc20/genesis.go @@ -4,8 +4,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authkeeper "github.com/cosmos/cosmos-sdk/x/auth/keeper" - "github.com/evmos/evmos/v8/x/erc20/keeper" - "github.com/evmos/evmos/v8/x/erc20/types" + "github.com/evmos/evmos/v9/x/erc20/keeper" + "github.com/evmos/evmos/v9/x/erc20/types" ) // InitGenesis import module genesis diff --git a/x/erc20/genesis_test.go b/x/erc20/genesis_test.go index 9ae67fa334..9c01b5c9c4 100644 --- a/x/erc20/genesis_test.go +++ b/x/erc20/genesis_test.go @@ -16,9 +16,9 @@ import ( "github.com/evmos/ethermint/tests" feemarkettypes "github.com/evmos/ethermint/x/feemarket/types" - "github.com/evmos/evmos/v8/app" - "github.com/evmos/evmos/v8/x/erc20" - "github.com/evmos/evmos/v8/x/erc20/types" + "github.com/evmos/evmos/v9/app" + "github.com/evmos/evmos/v9/x/erc20" + "github.com/evmos/evmos/v9/x/erc20/types" ) type GenesisTestSuite struct { diff --git a/x/erc20/handler.go b/x/erc20/handler.go index 7764cd2be1..c3b2a8da3a 100644 --- a/x/erc20/handler.go +++ b/x/erc20/handler.go @@ -4,7 +4,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/evmos/evmos/v8/x/erc20/types" + "github.com/evmos/evmos/v9/x/erc20/types" ) // NewHandler defines the erc20 module handler instance diff --git a/x/erc20/keeper/evm.go b/x/erc20/keeper/evm.go index 7589326775..3c570ad9db 100644 --- a/x/erc20/keeper/evm.go +++ b/x/erc20/keeper/evm.go @@ -15,8 +15,8 @@ import ( "github.com/evmos/ethermint/server/config" evmtypes "github.com/evmos/ethermint/x/evm/types" - "github.com/evmos/evmos/v8/contracts" - "github.com/evmos/evmos/v8/x/erc20/types" + "github.com/evmos/evmos/v9/contracts" + "github.com/evmos/evmos/v9/x/erc20/types" ) // DeployERC20Contract creates and deploys an ERC20 contract on the EVM with the diff --git a/x/erc20/keeper/evm_hooks.go b/x/erc20/keeper/evm_hooks.go index abf4220473..bac8496288 100644 --- a/x/erc20/keeper/evm_hooks.go +++ b/x/erc20/keeper/evm_hooks.go @@ -11,8 +11,8 @@ import ( ethtypes "github.com/ethereum/go-ethereum/core/types" evmtypes "github.com/evmos/ethermint/x/evm/types" - "github.com/evmos/evmos/v8/contracts" - "github.com/evmos/evmos/v8/x/erc20/types" + "github.com/evmos/evmos/v9/contracts" + "github.com/evmos/evmos/v9/x/erc20/types" ) var _ evmtypes.EvmHooks = Hooks{} diff --git a/x/erc20/keeper/evm_hooks_test.go b/x/erc20/keeper/evm_hooks_test.go index 0663e30243..7507312b12 100644 --- a/x/erc20/keeper/evm_hooks_test.go +++ b/x/erc20/keeper/evm_hooks_test.go @@ -9,8 +9,8 @@ import ( ethtypes "github.com/ethereum/go-ethereum/core/types" "github.com/evmos/ethermint/tests" - "github.com/evmos/evmos/v8/contracts" - "github.com/evmos/evmos/v8/x/erc20/types" + "github.com/evmos/evmos/v9/contracts" + "github.com/evmos/evmos/v9/x/erc20/types" ) // ensureHooksSet tries to set the hooks on EVMKeeper, this will fail if the erc20 hook is already set diff --git a/x/erc20/keeper/evm_test.go b/x/erc20/keeper/evm_test.go index 11eea2a4be..872ce90838 100644 --- a/x/erc20/keeper/evm_test.go +++ b/x/erc20/keeper/evm_test.go @@ -8,9 +8,9 @@ import ( evmtypes "github.com/evmos/ethermint/x/evm/types" "github.com/stretchr/testify/mock" - "github.com/evmos/evmos/v8/contracts" - "github.com/evmos/evmos/v8/x/erc20/keeper" - "github.com/evmos/evmos/v8/x/erc20/types" + "github.com/evmos/evmos/v9/contracts" + "github.com/evmos/evmos/v9/x/erc20/keeper" + "github.com/evmos/evmos/v9/x/erc20/types" ) func (suite *KeeperTestSuite) TestQueryERC20() { diff --git a/x/erc20/keeper/grpc_query.go b/x/erc20/keeper/grpc_query.go index 715001e0ec..714134d410 100644 --- a/x/erc20/keeper/grpc_query.go +++ b/x/erc20/keeper/grpc_query.go @@ -11,7 +11,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/query" ethermint "github.com/evmos/ethermint/types" - "github.com/evmos/evmos/v8/x/erc20/types" + "github.com/evmos/evmos/v9/x/erc20/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/erc20/keeper/grpc_query_test.go b/x/erc20/keeper/grpc_query_test.go index 2b2504cd87..0760bcc6c9 100644 --- a/x/erc20/keeper/grpc_query_test.go +++ b/x/erc20/keeper/grpc_query_test.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/query" "github.com/evmos/ethermint/tests" - "github.com/evmos/evmos/v8/x/erc20/types" + "github.com/evmos/evmos/v9/x/erc20/types" ) func (suite *KeeperTestSuite) TestTokenPairs() { diff --git a/x/erc20/keeper/integration_test.go b/x/erc20/keeper/integration_test.go index ee46ee76c3..ea711ed4a7 100644 --- a/x/erc20/keeper/integration_test.go +++ b/x/erc20/keeper/integration_test.go @@ -14,9 +14,9 @@ import ( "github.com/evmos/ethermint/encoding" ethermint "github.com/evmos/ethermint/types" - "github.com/evmos/evmos/v8/app" - "github.com/evmos/evmos/v8/testutil" - "github.com/evmos/evmos/v8/x/erc20/types" + "github.com/evmos/evmos/v9/app" + "github.com/evmos/evmos/v9/testutil" + "github.com/evmos/evmos/v9/x/erc20/types" authsigning "github.com/cosmos/cosmos-sdk/x/auth/signing" abci "github.com/tendermint/tendermint/abci/types" diff --git a/x/erc20/keeper/keeper.go b/x/erc20/keeper/keeper.go index 96263f9f66..6e08d7736a 100644 --- a/x/erc20/keeper/keeper.go +++ b/x/erc20/keeper/keeper.go @@ -8,7 +8,7 @@ import ( paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" "github.com/tendermint/tendermint/libs/log" - "github.com/evmos/evmos/v8/x/erc20/types" + "github.com/evmos/evmos/v9/x/erc20/types" ) // Keeper of this module maintains collections of erc20. diff --git a/x/erc20/keeper/keeper_test.go b/x/erc20/keeper/keeper_test.go index 6d5c88fd92..72236c0663 100644 --- a/x/erc20/keeper/keeper_test.go +++ b/x/erc20/keeper/keeper_test.go @@ -45,9 +45,9 @@ import ( feemarkettypes "github.com/evmos/ethermint/x/feemarket/types" tmjson "github.com/tendermint/tendermint/libs/json" - "github.com/evmos/evmos/v8/app" - "github.com/evmos/evmos/v8/contracts" - "github.com/evmos/evmos/v8/x/erc20/types" + "github.com/evmos/evmos/v9/app" + "github.com/evmos/evmos/v9/contracts" + "github.com/evmos/evmos/v9/x/erc20/types" ) type KeeperTestSuite struct { diff --git a/x/erc20/keeper/migrations.go b/x/erc20/keeper/migrations.go index 5a2c485b16..ccbcdc483e 100644 --- a/x/erc20/keeper/migrations.go +++ b/x/erc20/keeper/migrations.go @@ -4,7 +4,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - v2 "github.com/evmos/evmos/v8/x/erc20/migrations/v2" + v2 "github.com/evmos/evmos/v9/x/erc20/migrations/v2" ) var _ module.MigrationHandler = Migrator{}.Migrate1to2 diff --git a/x/erc20/keeper/mint.go b/x/erc20/keeper/mint.go index fd6824f10f..f7e26e1be0 100644 --- a/x/erc20/keeper/mint.go +++ b/x/erc20/keeper/mint.go @@ -5,7 +5,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/evmos/evmos/v8/x/erc20/types" + "github.com/evmos/evmos/v9/x/erc20/types" ) // MintingEnabled checks that: diff --git a/x/erc20/keeper/mint_test.go b/x/erc20/keeper/mint_test.go index 850edcdbcf..f83b380d0f 100644 --- a/x/erc20/keeper/mint_test.go +++ b/x/erc20/keeper/mint_test.go @@ -7,7 +7,7 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" "github.com/evmos/ethermint/tests" - "github.com/evmos/evmos/v8/x/erc20/types" + "github.com/evmos/evmos/v9/x/erc20/types" ) func (suite *KeeperTestSuite) TestMintingEnabled() { diff --git a/x/erc20/keeper/msg_server.go b/x/erc20/keeper/msg_server.go index 932bc4042f..cdc841d227 100644 --- a/x/erc20/keeper/msg_server.go +++ b/x/erc20/keeper/msg_server.go @@ -10,8 +10,8 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/ethereum/go-ethereum/common" - "github.com/evmos/evmos/v8/contracts" - "github.com/evmos/evmos/v8/x/erc20/types" + "github.com/evmos/evmos/v9/contracts" + "github.com/evmos/evmos/v9/x/erc20/types" ) var _ types.MsgServer = &Keeper{} diff --git a/x/erc20/keeper/msg_server_test.go b/x/erc20/keeper/msg_server_test.go index 0a5b08c31c..c7e716d49a 100644 --- a/x/erc20/keeper/msg_server_test.go +++ b/x/erc20/keeper/msg_server_test.go @@ -11,8 +11,8 @@ import ( "github.com/evmos/ethermint/x/evm/statedb" evmtypes "github.com/evmos/ethermint/x/evm/types" - "github.com/evmos/evmos/v8/x/erc20/keeper" - "github.com/evmos/evmos/v8/x/erc20/types" + "github.com/evmos/evmos/v9/x/erc20/keeper" + "github.com/evmos/evmos/v9/x/erc20/types" ) func (suite *KeeperTestSuite) TestConvertCoinNativeCoin() { diff --git a/x/erc20/keeper/params.go b/x/erc20/keeper/params.go index 0118534b13..e946998b14 100644 --- a/x/erc20/keeper/params.go +++ b/x/erc20/keeper/params.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v8/x/erc20/types" + "github.com/evmos/evmos/v9/x/erc20/types" ) // GetParams returns the total set of erc20 parameters. diff --git a/x/erc20/keeper/params_test.go b/x/erc20/keeper/params_test.go index 194f32a938..4790a12be9 100644 --- a/x/erc20/keeper/params_test.go +++ b/x/erc20/keeper/params_test.go @@ -1,6 +1,6 @@ package keeper_test -import "github.com/evmos/evmos/v8/x/erc20/types" +import "github.com/evmos/evmos/v9/x/erc20/types" func (suite *KeeperTestSuite) TestParams() { params := suite.app.Erc20Keeper.GetParams(suite.ctx) diff --git a/x/erc20/keeper/proposals.go b/x/erc20/keeper/proposals.go index 0121b6ad90..ccbde8742a 100644 --- a/x/erc20/keeper/proposals.go +++ b/x/erc20/keeper/proposals.go @@ -8,7 +8,7 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" "github.com/ethereum/go-ethereum/common" - "github.com/evmos/evmos/v8/x/erc20/types" + "github.com/evmos/evmos/v9/x/erc20/types" ) // RegisterCoin deploys an erc20 contract and creates the token pair for the diff --git a/x/erc20/keeper/proposals_test.go b/x/erc20/keeper/proposals_test.go index 5a6ffbc129..485410f05e 100644 --- a/x/erc20/keeper/proposals_test.go +++ b/x/erc20/keeper/proposals_test.go @@ -12,9 +12,9 @@ import ( "github.com/evmos/ethermint/tests" evmtypes "github.com/evmos/ethermint/x/evm/types" - "github.com/evmos/evmos/v8/x/erc20/keeper" - "github.com/evmos/evmos/v8/x/erc20/types" - inflationtypes "github.com/evmos/evmos/v8/x/inflation/types" + "github.com/evmos/evmos/v9/x/erc20/keeper" + "github.com/evmos/evmos/v9/x/erc20/types" + inflationtypes "github.com/evmos/evmos/v9/x/inflation/types" ) const ( diff --git a/x/erc20/keeper/token_pairs.go b/x/erc20/keeper/token_pairs.go index cc0b564463..133eeb2b6d 100644 --- a/x/erc20/keeper/token_pairs.go +++ b/x/erc20/keeper/token_pairs.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/ethereum/go-ethereum/common" - "github.com/evmos/evmos/v8/x/erc20/types" + "github.com/evmos/evmos/v9/x/erc20/types" ) // GetTokenPairs - get all registered token tokenPairs diff --git a/x/erc20/keeper/token_pairs_test.go b/x/erc20/keeper/token_pairs_test.go index 0020e76150..8a75fa3710 100644 --- a/x/erc20/keeper/token_pairs_test.go +++ b/x/erc20/keeper/token_pairs_test.go @@ -7,7 +7,7 @@ import ( "github.com/evmos/ethermint/tests" evmtypes "github.com/evmos/ethermint/x/evm/types" - "github.com/evmos/evmos/v8/x/erc20/types" + "github.com/evmos/evmos/v9/x/erc20/types" ) func (suite *KeeperTestSuite) TestGetTokenPairs() { diff --git a/x/erc20/migrations/v2/migration.go b/x/erc20/migrations/v2/migration.go index 83f06d7270..1a15c7fd1a 100644 --- a/x/erc20/migrations/v2/migration.go +++ b/x/erc20/migrations/v2/migration.go @@ -4,7 +4,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - "github.com/evmos/evmos/v8/x/erc20/types" + "github.com/evmos/evmos/v9/x/erc20/types" ) // UpdateParams updates the module parameters EnableERC20 and EnableEMVHook diff --git a/x/erc20/migrations/v2/migration_test.go b/x/erc20/migrations/v2/migration_test.go index 21ea25db25..6f57463177 100644 --- a/x/erc20/migrations/v2/migration_test.go +++ b/x/erc20/migrations/v2/migration_test.go @@ -12,9 +12,9 @@ import ( "github.com/evmos/ethermint/encoding" - "github.com/evmos/evmos/v8/app" - v2 "github.com/evmos/evmos/v8/x/erc20/migrations/v2" - erc20types "github.com/evmos/evmos/v8/x/erc20/types" + "github.com/evmos/evmos/v9/app" + v2 "github.com/evmos/evmos/v9/x/erc20/migrations/v2" + erc20types "github.com/evmos/evmos/v9/x/erc20/types" ) func TestUpdateParams(t *testing.T) { diff --git a/x/erc20/module.go b/x/erc20/module.go index 4befb0f6a2..4393ac851b 100644 --- a/x/erc20/module.go +++ b/x/erc20/module.go @@ -18,9 +18,9 @@ import ( "github.com/spf13/cobra" abci "github.com/tendermint/tendermint/abci/types" - "github.com/evmos/evmos/v8/x/erc20/client/cli" - "github.com/evmos/evmos/v8/x/erc20/keeper" - "github.com/evmos/evmos/v8/x/erc20/types" + "github.com/evmos/evmos/v9/x/erc20/client/cli" + "github.com/evmos/evmos/v9/x/erc20/keeper" + "github.com/evmos/evmos/v9/x/erc20/types" ) // type check to ensure the interface is properly implemented diff --git a/x/erc20/proposal_handler.go b/x/erc20/proposal_handler.go index e1075d6481..b1d7cada57 100644 --- a/x/erc20/proposal_handler.go +++ b/x/erc20/proposal_handler.go @@ -6,8 +6,8 @@ import ( govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" "github.com/ethereum/go-ethereum/common" - "github.com/evmos/evmos/v8/x/erc20/keeper" - "github.com/evmos/evmos/v8/x/erc20/types" + "github.com/evmos/evmos/v9/x/erc20/keeper" + "github.com/evmos/evmos/v9/x/erc20/types" ) // NewErc20ProposalHandler creates a governance handler to manage new proposal types. diff --git a/x/incentives/client/cli/query.go b/x/incentives/client/cli/query.go index 17016538aa..73454c1fa0 100644 --- a/x/incentives/client/cli/query.go +++ b/x/incentives/client/cli/query.go @@ -9,7 +9,7 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/spf13/cobra" - "github.com/evmos/evmos/v8/x/incentives/types" + "github.com/evmos/evmos/v9/x/incentives/types" ) // GetQueryCmd returns the parent command for all incentives CLI query commands. diff --git a/x/incentives/client/cli/tx.go b/x/incentives/client/cli/tx.go index 89af73e09b..8f224cc7a6 100644 --- a/x/incentives/client/cli/tx.go +++ b/x/incentives/client/cli/tx.go @@ -14,7 +14,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/gov/client/cli" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/evmos/evmos/v8/x/incentives/types" + "github.com/evmos/evmos/v9/x/incentives/types" ) // NewRegisterIncentiveProposalCmd implements the command to submit a register diff --git a/x/incentives/client/proposal_handler.go b/x/incentives/client/proposal_handler.go index 40659b96d6..c3a0bae08b 100644 --- a/x/incentives/client/proposal_handler.go +++ b/x/incentives/client/proposal_handler.go @@ -3,8 +3,8 @@ package client import ( govclient "github.com/cosmos/cosmos-sdk/x/gov/client" - "github.com/evmos/evmos/v8/x/incentives/client/cli" - "github.com/evmos/evmos/v8/x/incentives/client/rest" + "github.com/evmos/evmos/v9/x/incentives/client/cli" + "github.com/evmos/evmos/v9/x/incentives/client/rest" ) var ( diff --git a/x/incentives/client/rest/rest.go b/x/incentives/client/rest/rest.go index 21871b9ee1..5c6e799807 100644 --- a/x/incentives/client/rest/rest.go +++ b/x/incentives/client/rest/rest.go @@ -10,7 +10,7 @@ import ( govrest "github.com/cosmos/cosmos-sdk/x/gov/client/rest" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/evmos/evmos/v8/x/incentives/types" + "github.com/evmos/evmos/v9/x/incentives/types" ) // RegisterIncentiveProposalRequest defines a request for a new register a diff --git a/x/incentives/genesis.go b/x/incentives/genesis.go index 9f4bc1542e..d1d9cb1366 100644 --- a/x/incentives/genesis.go +++ b/x/incentives/genesis.go @@ -4,8 +4,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authkeeper "github.com/cosmos/cosmos-sdk/x/auth/keeper" - "github.com/evmos/evmos/v8/x/incentives/keeper" - "github.com/evmos/evmos/v8/x/incentives/types" + "github.com/evmos/evmos/v9/x/incentives/keeper" + "github.com/evmos/evmos/v9/x/incentives/types" ) // InitGenesis import module genesis diff --git a/x/incentives/keeper/allocation_meters.go b/x/incentives/keeper/allocation_meters.go index 40455da365..464cbe92d9 100644 --- a/x/incentives/keeper/allocation_meters.go +++ b/x/incentives/keeper/allocation_meters.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v8/x/incentives/types" + "github.com/evmos/evmos/v9/x/incentives/types" ) // GetAllAllocationMeters - get all registered AllocationMeters diff --git a/x/incentives/keeper/distribution.go b/x/incentives/keeper/distribution.go index 5d81ef5f3a..fef7ce2cd5 100644 --- a/x/incentives/keeper/distribution.go +++ b/x/incentives/keeper/distribution.go @@ -10,7 +10,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/ethereum/go-ethereum/common" - "github.com/evmos/evmos/v8/x/incentives/types" + "github.com/evmos/evmos/v9/x/incentives/types" ) // DistributeRewards transfers the allocated rewards to the participants of a given diff --git a/x/incentives/keeper/distribution_test.go b/x/incentives/keeper/distribution_test.go index a0362ebbdc..c188c2b176 100644 --- a/x/incentives/keeper/distribution_test.go +++ b/x/incentives/keeper/distribution_test.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v8/x/incentives/types" + "github.com/evmos/evmos/v9/x/incentives/types" ) func (suite *KeeperTestSuite) TestDistributeIncentives() { diff --git a/x/incentives/keeper/epoch_hooks.go b/x/incentives/keeper/epoch_hooks.go index f4676564c9..ee07d50b21 100644 --- a/x/incentives/keeper/epoch_hooks.go +++ b/x/incentives/keeper/epoch_hooks.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - epochstypes "github.com/evmos/evmos/v8/x/epochs/types" + epochstypes "github.com/evmos/evmos/v9/x/epochs/types" ) // BeforeEpochStart performs a no-op diff --git a/x/incentives/keeper/evm_hooks.go b/x/incentives/keeper/evm_hooks.go index 10030af36c..9b63f9f88b 100644 --- a/x/incentives/keeper/evm_hooks.go +++ b/x/incentives/keeper/evm_hooks.go @@ -11,7 +11,7 @@ import ( ethermint "github.com/evmos/ethermint/types" evmtypes "github.com/evmos/ethermint/x/evm/types" - "github.com/evmos/evmos/v8/x/incentives/types" + "github.com/evmos/evmos/v9/x/incentives/types" ) var _ evmtypes.EvmHooks = Hooks{} diff --git a/x/incentives/keeper/evm_hooks_test.go b/x/incentives/keeper/evm_hooks_test.go index e4c0f0f41b..3c68b836ef 100644 --- a/x/incentives/keeper/evm_hooks_test.go +++ b/x/incentives/keeper/evm_hooks_test.go @@ -14,9 +14,9 @@ import ( ethermint "github.com/evmos/ethermint/types" evm "github.com/evmos/ethermint/x/evm/types" - "github.com/evmos/evmos/v8/testutil" - "github.com/evmos/evmos/v8/x/incentives/types" - vestingtypes "github.com/evmos/evmos/v8/x/vesting/types" + "github.com/evmos/evmos/v9/testutil" + "github.com/evmos/evmos/v9/x/incentives/types" + vestingtypes "github.com/evmos/evmos/v9/x/vesting/types" ) // ensureHooksSet tries to set the hooks on EVMKeeper, this will fail if the diff --git a/x/incentives/keeper/gas_meters.go b/x/incentives/keeper/gas_meters.go index a99d9f53fc..e3ff984161 100644 --- a/x/incentives/keeper/gas_meters.go +++ b/x/incentives/keeper/gas_meters.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/ethereum/go-ethereum/common" - "github.com/evmos/evmos/v8/x/incentives/types" + "github.com/evmos/evmos/v9/x/incentives/types" ) // GetIncentivesGasMeters - get all registered GasMeters per Incentive diff --git a/x/incentives/keeper/gas_meters_test.go b/x/incentives/keeper/gas_meters_test.go index a779e996e9..66227be845 100644 --- a/x/incentives/keeper/gas_meters_test.go +++ b/x/incentives/keeper/gas_meters_test.go @@ -6,7 +6,7 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/evmos/ethermint/tests" - "github.com/evmos/evmos/v8/x/incentives/types" + "github.com/evmos/evmos/v9/x/incentives/types" ) func (suite *KeeperTestSuite) TestGetIncentivesGasMeters() { diff --git a/x/incentives/keeper/grpc_query.go b/x/incentives/keeper/grpc_query.go index 818e192994..771005513e 100644 --- a/x/incentives/keeper/grpc_query.go +++ b/x/incentives/keeper/grpc_query.go @@ -14,7 +14,7 @@ import ( "github.com/ethereum/go-ethereum/common" ethermint "github.com/evmos/ethermint/types" - "github.com/evmos/evmos/v8/x/incentives/types" + "github.com/evmos/evmos/v9/x/incentives/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/incentives/keeper/grpc_query_test.go b/x/incentives/keeper/grpc_query_test.go index f0281313dd..2e2fdd566a 100644 --- a/x/incentives/keeper/grpc_query_test.go +++ b/x/incentives/keeper/grpc_query_test.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - "github.com/evmos/evmos/v8/x/incentives/types" + "github.com/evmos/evmos/v9/x/incentives/types" ) func (suite *KeeperTestSuite) TestIncentives() { diff --git a/x/incentives/keeper/incentives.go b/x/incentives/keeper/incentives.go index 631363c5c2..5390f49f3a 100644 --- a/x/incentives/keeper/incentives.go +++ b/x/incentives/keeper/incentives.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/ethereum/go-ethereum/common" - "github.com/evmos/evmos/v8/x/incentives/types" + "github.com/evmos/evmos/v9/x/incentives/types" ) // GetAllIncentives - get all registered Incentives diff --git a/x/incentives/keeper/incentives_test.go b/x/incentives/keeper/incentives_test.go index e06ab47629..da900a6a25 100644 --- a/x/incentives/keeper/incentives_test.go +++ b/x/incentives/keeper/incentives_test.go @@ -5,7 +5,7 @@ import ( "github.com/ethereum/go-ethereum/common" - "github.com/evmos/evmos/v8/x/incentives/types" + "github.com/evmos/evmos/v9/x/incentives/types" ) func (suite *KeeperTestSuite) TestGetAllIncentives() { diff --git a/x/incentives/keeper/integration_test.go b/x/incentives/keeper/integration_test.go index 816b1b231b..004b421ff0 100644 --- a/x/incentives/keeper/integration_test.go +++ b/x/incentives/keeper/integration_test.go @@ -15,7 +15,7 @@ import ( ethermint "github.com/evmos/ethermint/types" evmtypes "github.com/evmos/ethermint/x/evm/types" - "github.com/evmos/evmos/v8/x/incentives/types" + "github.com/evmos/evmos/v9/x/incentives/types" ) var _ = Describe("Performing EVM transactions", Ordered, func() { diff --git a/x/incentives/keeper/keeper.go b/x/incentives/keeper/keeper.go index f45000aff2..dd1ec94cf1 100644 --- a/x/incentives/keeper/keeper.go +++ b/x/incentives/keeper/keeper.go @@ -8,7 +8,7 @@ import ( paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" "github.com/tendermint/tendermint/libs/log" - "github.com/evmos/evmos/v8/x/incentives/types" + "github.com/evmos/evmos/v9/x/incentives/types" ) // Keeper of this module maintains collections of incentives. diff --git a/x/incentives/keeper/keeper_test.go b/x/incentives/keeper/keeper_test.go index 3bf13ffa55..69e9bf7ebb 100644 --- a/x/incentives/keeper/keeper_test.go +++ b/x/incentives/keeper/keeper_test.go @@ -36,10 +36,10 @@ import ( ethermint "github.com/evmos/ethermint/types" evm "github.com/evmos/ethermint/x/evm/types" - "github.com/evmos/evmos/v8/app" - "github.com/evmos/evmos/v8/contracts" - epochstypes "github.com/evmos/evmos/v8/x/epochs/types" - "github.com/evmos/evmos/v8/x/incentives/types" + "github.com/evmos/evmos/v9/app" + "github.com/evmos/evmos/v9/contracts" + epochstypes "github.com/evmos/evmos/v9/x/epochs/types" + "github.com/evmos/evmos/v9/x/incentives/types" ) var ( diff --git a/x/incentives/keeper/params.go b/x/incentives/keeper/params.go index 31e086dc68..e6a4fdbc94 100644 --- a/x/incentives/keeper/params.go +++ b/x/incentives/keeper/params.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v8/x/incentives/types" + "github.com/evmos/evmos/v9/x/incentives/types" ) // GetParams returns the total set of incentives parameters. diff --git a/x/incentives/keeper/params_test.go b/x/incentives/keeper/params_test.go index 7a5a54d782..032f90ae2e 100644 --- a/x/incentives/keeper/params_test.go +++ b/x/incentives/keeper/params_test.go @@ -1,6 +1,6 @@ package keeper_test -import "github.com/evmos/evmos/v8/x/incentives/types" +import "github.com/evmos/evmos/v9/x/incentives/types" func (suite *KeeperTestSuite) TestParams() { params := suite.app.IncentivesKeeper.GetParams(suite.ctx) diff --git a/x/incentives/keeper/proposals.go b/x/incentives/keeper/proposals.go index 2d6b33bd9d..216a8f81d1 100644 --- a/x/incentives/keeper/proposals.go +++ b/x/incentives/keeper/proposals.go @@ -5,7 +5,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/ethereum/go-ethereum/common" - "github.com/evmos/evmos/v8/x/incentives/types" + "github.com/evmos/evmos/v9/x/incentives/types" ) // RegisterIncentive creates an incentive for a contract diff --git a/x/incentives/keeper/proposals_test.go b/x/incentives/keeper/proposals_test.go index 6aa52a93ff..76af788a4d 100644 --- a/x/incentives/keeper/proposals_test.go +++ b/x/incentives/keeper/proposals_test.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/evmos/ethermint/tests" - "github.com/evmos/evmos/v8/x/incentives/types" + "github.com/evmos/evmos/v9/x/incentives/types" ) func (suite KeeperTestSuite) TestRegisterIncentive() { diff --git a/x/incentives/module.go b/x/incentives/module.go index d9099e3639..713e57e10b 100644 --- a/x/incentives/module.go +++ b/x/incentives/module.go @@ -18,9 +18,9 @@ import ( "github.com/spf13/cobra" abci "github.com/tendermint/tendermint/abci/types" - "github.com/evmos/evmos/v8/x/incentives/client/cli" - "github.com/evmos/evmos/v8/x/incentives/keeper" - "github.com/evmos/evmos/v8/x/incentives/types" + "github.com/evmos/evmos/v9/x/incentives/client/cli" + "github.com/evmos/evmos/v9/x/incentives/keeper" + "github.com/evmos/evmos/v9/x/incentives/types" ) // type check to ensure the interface is properly implemented diff --git a/x/incentives/proposal_handler.go b/x/incentives/proposal_handler.go index 012e542d63..13efca4c19 100644 --- a/x/incentives/proposal_handler.go +++ b/x/incentives/proposal_handler.go @@ -8,8 +8,8 @@ import ( govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" "github.com/ethereum/go-ethereum/common" - "github.com/evmos/evmos/v8/x/incentives/keeper" - "github.com/evmos/evmos/v8/x/incentives/types" + "github.com/evmos/evmos/v9/x/incentives/keeper" + "github.com/evmos/evmos/v9/x/incentives/types" ) // NewIncentivesProposalHandler creates a governance handler to manage new diff --git a/x/incentives/types/interfaces.go b/x/incentives/types/interfaces.go index a89b76ced5..2055dfdba5 100644 --- a/x/incentives/types/interfaces.go +++ b/x/incentives/types/interfaces.go @@ -14,7 +14,7 @@ import ( "github.com/evmos/ethermint/x/evm/statedb" evmtypes "github.com/evmos/ethermint/x/evm/types" - inflationtypes "github.com/evmos/evmos/v8/x/inflation/types" + inflationtypes "github.com/evmos/evmos/v9/x/inflation/types" ) // AccountKeeper defines the expected interface needed to retrieve account info. diff --git a/x/incentives/types/params.go b/x/incentives/types/params.go index 024bd244ac..c2a78d13e8 100644 --- a/x/incentives/types/params.go +++ b/x/incentives/types/params.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - epochstypes "github.com/evmos/evmos/v8/x/epochs/types" + epochstypes "github.com/evmos/evmos/v9/x/epochs/types" ) // Parameter store key diff --git a/x/incentives/types/params_test.go b/x/incentives/types/params_test.go index f5840bf49b..c055c35bc6 100644 --- a/x/incentives/types/params_test.go +++ b/x/incentives/types/params_test.go @@ -9,7 +9,7 @@ import ( govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - epochstypes "github.com/evmos/evmos/v8/x/epochs/types" + epochstypes "github.com/evmos/evmos/v9/x/epochs/types" ) type ParamsTestSuite struct { diff --git a/x/inflation/client/cli/query.go b/x/inflation/client/cli/query.go index 0a62025a7c..efb3274193 100644 --- a/x/inflation/client/cli/query.go +++ b/x/inflation/client/cli/query.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" - "github.com/evmos/evmos/v8/x/inflation/types" + "github.com/evmos/evmos/v9/x/inflation/types" ) // GetQueryCmd returns the cli query commands for the inflation module. diff --git a/x/inflation/genesis.go b/x/inflation/genesis.go index 29d9894792..66b6706a8c 100644 --- a/x/inflation/genesis.go +++ b/x/inflation/genesis.go @@ -2,8 +2,8 @@ package inflation import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v8/x/inflation/keeper" - "github.com/evmos/evmos/v8/x/inflation/types" + "github.com/evmos/evmos/v9/x/inflation/keeper" + "github.com/evmos/evmos/v9/x/inflation/types" ) // InitGenesis import module genesis diff --git a/x/inflation/keeper/epoch_info.go b/x/inflation/keeper/epoch_info.go index 087365396c..edeb950145 100644 --- a/x/inflation/keeper/epoch_info.go +++ b/x/inflation/keeper/epoch_info.go @@ -2,7 +2,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v8/x/inflation/types" + "github.com/evmos/evmos/v9/x/inflation/types" ) // GetEpochIdentifier gets the epoch identifier diff --git a/x/inflation/keeper/epoch_info_test.go b/x/inflation/keeper/epoch_info_test.go index 861ad0598e..14da74012d 100644 --- a/x/inflation/keeper/epoch_info_test.go +++ b/x/inflation/keeper/epoch_info_test.go @@ -3,8 +3,8 @@ package keeper_test import ( "fmt" - epochstypes "github.com/evmos/evmos/v8/x/epochs/types" - "github.com/evmos/evmos/v8/x/inflation/types" + epochstypes "github.com/evmos/evmos/v9/x/epochs/types" + "github.com/evmos/evmos/v9/x/inflation/types" ) func (suite *KeeperTestSuite) TestSetGetEpochIdentifier() { diff --git a/x/inflation/keeper/epoch_mint_provisions.go b/x/inflation/keeper/epoch_mint_provisions.go index e79a6dabde..e0b9dca9be 100644 --- a/x/inflation/keeper/epoch_mint_provisions.go +++ b/x/inflation/keeper/epoch_mint_provisions.go @@ -4,7 +4,7 @@ import ( "fmt" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v8/x/inflation/types" + "github.com/evmos/evmos/v9/x/inflation/types" ) // GetEpochMintProvision gets the current EpochMintProvision diff --git a/x/inflation/keeper/grpc_query.go b/x/inflation/keeper/grpc_query.go index a9c9fd7adf..b3941c6994 100644 --- a/x/inflation/keeper/grpc_query.go +++ b/x/inflation/keeper/grpc_query.go @@ -4,7 +4,7 @@ import ( "context" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v8/x/inflation/types" + "github.com/evmos/evmos/v9/x/inflation/types" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" ) diff --git a/x/inflation/keeper/grpc_query_test.go b/x/inflation/keeper/grpc_query_test.go index e60514e9a2..10cdfdce05 100644 --- a/x/inflation/keeper/grpc_query_test.go +++ b/x/inflation/keeper/grpc_query_test.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" ethermint "github.com/evmos/ethermint/types" - "github.com/evmos/evmos/v8/x/inflation/types" + "github.com/evmos/evmos/v9/x/inflation/types" ) func (suite *KeeperTestSuite) TestPeriod() { diff --git a/x/inflation/keeper/hooks.go b/x/inflation/keeper/hooks.go index bf153ed206..c5596c8cca 100644 --- a/x/inflation/keeper/hooks.go +++ b/x/inflation/keeper/hooks.go @@ -6,8 +6,8 @@ import ( "github.com/armon/go-metrics" "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" - epochstypes "github.com/evmos/evmos/v8/x/epochs/types" - "github.com/evmos/evmos/v8/x/inflation/types" + epochstypes "github.com/evmos/evmos/v9/x/epochs/types" + "github.com/evmos/evmos/v9/x/inflation/types" ) // BeforeEpochStart: noop, We don't need to do anything here diff --git a/x/inflation/keeper/hooks_test.go b/x/inflation/keeper/hooks_test.go index b495c9068a..cb28c548f0 100644 --- a/x/inflation/keeper/hooks_test.go +++ b/x/inflation/keeper/hooks_test.go @@ -4,8 +4,8 @@ import ( "fmt" "time" - epochstypes "github.com/evmos/evmos/v8/x/epochs/types" - "github.com/evmos/evmos/v8/x/inflation/types" + epochstypes "github.com/evmos/evmos/v9/x/epochs/types" + "github.com/evmos/evmos/v9/x/inflation/types" ) func (suite *KeeperTestSuite) TestEpochIdentifierAfterEpochEnd() { diff --git a/x/inflation/keeper/inflation.go b/x/inflation/keeper/inflation.go index c7fc692a0e..951900d7f5 100644 --- a/x/inflation/keeper/inflation.go +++ b/x/inflation/keeper/inflation.go @@ -5,9 +5,9 @@ import ( ethermint "github.com/evmos/ethermint/types" - evmos "github.com/evmos/evmos/v8/types" - incentivestypes "github.com/evmos/evmos/v8/x/incentives/types" - "github.com/evmos/evmos/v8/x/inflation/types" + evmos "github.com/evmos/evmos/v9/types" + incentivestypes "github.com/evmos/evmos/v9/x/incentives/types" + "github.com/evmos/evmos/v9/x/inflation/types" ) // 200M token at year 4 allocated to the team diff --git a/x/inflation/keeper/inflation_test.go b/x/inflation/keeper/inflation_test.go index 0834b70276..cf6e414905 100644 --- a/x/inflation/keeper/inflation_test.go +++ b/x/inflation/keeper/inflation_test.go @@ -6,8 +6,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" ethermint "github.com/evmos/ethermint/types" - incentivestypes "github.com/evmos/evmos/v8/x/incentives/types" - "github.com/evmos/evmos/v8/x/inflation/types" + incentivestypes "github.com/evmos/evmos/v9/x/incentives/types" + "github.com/evmos/evmos/v9/x/inflation/types" ) func (suite *KeeperTestSuite) TestMintAndAllocateInflation() { diff --git a/x/inflation/keeper/integration_test.go b/x/inflation/keeper/integration_test.go index 1eeeeda5d1..237cf33f88 100644 --- a/x/inflation/keeper/integration_test.go +++ b/x/inflation/keeper/integration_test.go @@ -8,8 +8,8 @@ import ( . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" - epochstypes "github.com/evmos/evmos/v8/x/epochs/types" - incentivestypes "github.com/evmos/evmos/v8/x/incentives/types" + epochstypes "github.com/evmos/evmos/v9/x/epochs/types" + incentivestypes "github.com/evmos/evmos/v9/x/incentives/types" ) var ( diff --git a/x/inflation/keeper/keeper.go b/x/inflation/keeper/keeper.go index b6029bc6d8..1af5e216ff 100644 --- a/x/inflation/keeper/keeper.go +++ b/x/inflation/keeper/keeper.go @@ -7,7 +7,7 @@ import ( "github.com/tendermint/tendermint/libs/log" - "github.com/evmos/evmos/v8/x/inflation/types" + "github.com/evmos/evmos/v9/x/inflation/types" ) // Keeper of the inflation store diff --git a/x/inflation/keeper/keeper_test.go b/x/inflation/keeper/keeper_test.go index f5bf82e9b9..ab11c12694 100644 --- a/x/inflation/keeper/keeper_test.go +++ b/x/inflation/keeper/keeper_test.go @@ -19,9 +19,9 @@ import ( evm "github.com/evmos/ethermint/x/evm/types" - "github.com/evmos/evmos/v8/app" - epochstypes "github.com/evmos/evmos/v8/x/epochs/types" - "github.com/evmos/evmos/v8/x/inflation/types" + "github.com/evmos/evmos/v9/app" + epochstypes "github.com/evmos/evmos/v9/x/epochs/types" + "github.com/evmos/evmos/v9/x/inflation/types" ) var denomMint = types.DefaultInflationDenom diff --git a/x/inflation/keeper/params.go b/x/inflation/keeper/params.go index ee7a231035..6e5f9ed01a 100644 --- a/x/inflation/keeper/params.go +++ b/x/inflation/keeper/params.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v8/x/inflation/types" + "github.com/evmos/evmos/v9/x/inflation/types" ) // GetParams returns the total set of inflation parameters. diff --git a/x/inflation/keeper/params_test.go b/x/inflation/keeper/params_test.go index 0a3e5f4bd4..612d2abfc7 100644 --- a/x/inflation/keeper/params_test.go +++ b/x/inflation/keeper/params_test.go @@ -1,7 +1,7 @@ package keeper_test import ( - "github.com/evmos/evmos/v8/x/inflation/types" + "github.com/evmos/evmos/v9/x/inflation/types" ) func (suite *KeeperTestSuite) TestParams() { diff --git a/x/inflation/keeper/periods.go b/x/inflation/keeper/periods.go index bf332bb8ce..fd0fd43499 100644 --- a/x/inflation/keeper/periods.go +++ b/x/inflation/keeper/periods.go @@ -2,7 +2,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v8/x/inflation/types" + "github.com/evmos/evmos/v9/x/inflation/types" ) // GetPeriod gets current period diff --git a/x/inflation/module.go b/x/inflation/module.go index b7b0d42be8..a0403f0582 100644 --- a/x/inflation/module.go +++ b/x/inflation/module.go @@ -19,9 +19,9 @@ import ( "github.com/spf13/cobra" abci "github.com/tendermint/tendermint/abci/types" - "github.com/evmos/evmos/v8/x/inflation/client/cli" - "github.com/evmos/evmos/v8/x/inflation/keeper" - "github.com/evmos/evmos/v8/x/inflation/types" + "github.com/evmos/evmos/v9/x/inflation/client/cli" + "github.com/evmos/evmos/v9/x/inflation/keeper" + "github.com/evmos/evmos/v9/x/inflation/types" ) // type check to ensure the interface is properly implemented diff --git a/x/inflation/types/genesis.go b/x/inflation/types/genesis.go index cf2fc45cb6..74c6bfb9fc 100644 --- a/x/inflation/types/genesis.go +++ b/x/inflation/types/genesis.go @@ -3,7 +3,7 @@ package types import ( fmt "fmt" - epochstypes "github.com/evmos/evmos/v8/x/epochs/types" + epochstypes "github.com/evmos/evmos/v9/x/epochs/types" ) // NewGenesisState creates a new GenesisState object diff --git a/x/inflation/types/genesis_test.go b/x/inflation/types/genesis_test.go index da926c8640..023029ce25 100644 --- a/x/inflation/types/genesis_test.go +++ b/x/inflation/types/genesis_test.go @@ -3,7 +3,7 @@ package types import ( "testing" - epochstypes "github.com/evmos/evmos/v8/x/epochs/types" + epochstypes "github.com/evmos/evmos/v9/x/epochs/types" "github.com/stretchr/testify/suite" ) diff --git a/x/recovery/client/cli/query.go b/x/recovery/client/cli/query.go index 6398cfa322..3a50fa54c4 100644 --- a/x/recovery/client/cli/query.go +++ b/x/recovery/client/cli/query.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/evmos/evmos/v8/x/recovery/types" + "github.com/evmos/evmos/v9/x/recovery/types" ) // GetQueryCmd returns the parent command for all recovery CLI query commands. diff --git a/x/recovery/genesis.go b/x/recovery/genesis.go index 0e01bcb2f6..53997183d7 100644 --- a/x/recovery/genesis.go +++ b/x/recovery/genesis.go @@ -3,8 +3,8 @@ package recovery import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v8/x/recovery/keeper" - "github.com/evmos/evmos/v8/x/recovery/types" + "github.com/evmos/evmos/v9/x/recovery/keeper" + "github.com/evmos/evmos/v9/x/recovery/types" ) // InitGenesis import module genesis diff --git a/x/recovery/genesis_test.go b/x/recovery/genesis_test.go index f812f82deb..c67a3f04f2 100644 --- a/x/recovery/genesis_test.go +++ b/x/recovery/genesis_test.go @@ -15,9 +15,9 @@ import ( "github.com/evmos/ethermint/tests" feemarkettypes "github.com/evmos/ethermint/x/feemarket/types" - "github.com/evmos/evmos/v8/app" - "github.com/evmos/evmos/v8/x/recovery" - "github.com/evmos/evmos/v8/x/recovery/types" + "github.com/evmos/evmos/v9/app" + "github.com/evmos/evmos/v9/x/recovery" + "github.com/evmos/evmos/v9/x/recovery/types" ) type GenesisTestSuite struct { diff --git a/x/recovery/ibc_middleware.go b/x/recovery/ibc_middleware.go index 1eb9f647c7..9f54b60687 100644 --- a/x/recovery/ibc_middleware.go +++ b/x/recovery/ibc_middleware.go @@ -7,8 +7,8 @@ import ( porttypes "github.com/cosmos/ibc-go/v3/modules/core/05-port/types" "github.com/cosmos/ibc-go/v3/modules/core/exported" - "github.com/evmos/evmos/v8/ibc" - "github.com/evmos/evmos/v8/x/recovery/keeper" + "github.com/evmos/evmos/v9/ibc" + "github.com/evmos/evmos/v9/x/recovery/keeper" ) var _ porttypes.Middleware = &IBCMiddleware{} diff --git a/x/recovery/keeper/grpc_query.go b/x/recovery/keeper/grpc_query.go index 025aa54920..ff6e5c5815 100644 --- a/x/recovery/keeper/grpc_query.go +++ b/x/recovery/keeper/grpc_query.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v8/x/recovery/types" + "github.com/evmos/evmos/v9/x/recovery/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/recovery/keeper/grpc_query_test.go b/x/recovery/keeper/grpc_query_test.go index fe95ff6161..3e982cc227 100644 --- a/x/recovery/keeper/grpc_query_test.go +++ b/x/recovery/keeper/grpc_query_test.go @@ -3,7 +3,7 @@ package keeper_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v8/x/recovery/types" + "github.com/evmos/evmos/v9/x/recovery/types" ) func (suite *KeeperTestSuite) TestQueryParams() { diff --git a/x/recovery/keeper/ibc_callbacks.go b/x/recovery/keeper/ibc_callbacks.go index db650c93ce..7765e56c59 100644 --- a/x/recovery/keeper/ibc_callbacks.go +++ b/x/recovery/keeper/ibc_callbacks.go @@ -16,9 +16,9 @@ import ( host "github.com/cosmos/ibc-go/v3/modules/core/24-host" "github.com/cosmos/ibc-go/v3/modules/core/exported" - "github.com/evmos/evmos/v8/ibc" - evmos "github.com/evmos/evmos/v8/types" - "github.com/evmos/evmos/v8/x/recovery/types" + "github.com/evmos/evmos/v9/ibc" + evmos "github.com/evmos/evmos/v9/types" + "github.com/evmos/evmos/v9/x/recovery/types" ) // OnRecvPacket performs an IBC receive callback. It returns the tokens that diff --git a/x/recovery/keeper/ibc_callbacks_integration_suite_test.go b/x/recovery/keeper/ibc_callbacks_integration_suite_test.go index 547be2f11c..9c66bdf480 100644 --- a/x/recovery/keeper/ibc_callbacks_integration_suite_test.go +++ b/x/recovery/keeper/ibc_callbacks_integration_suite_test.go @@ -15,13 +15,13 @@ import ( channeltypes "github.com/cosmos/ibc-go/v3/modules/core/04-channel/types" ibcgotesting "github.com/cosmos/ibc-go/v3/testing" - ibctesting "github.com/evmos/evmos/v8/ibc/testing" + ibctesting "github.com/evmos/evmos/v9/ibc/testing" minttypes "github.com/cosmos/cosmos-sdk/x/mint/types" - "github.com/evmos/evmos/v8/app" - claimtypes "github.com/evmos/evmos/v8/x/claims/types" - inflationtypes "github.com/evmos/evmos/v8/x/inflation/types" - "github.com/evmos/evmos/v8/x/recovery/types" + "github.com/evmos/evmos/v9/app" + claimtypes "github.com/evmos/evmos/v9/x/claims/types" + inflationtypes "github.com/evmos/evmos/v9/x/inflation/types" + "github.com/evmos/evmos/v9/x/recovery/types" ) type IBCTestingSuite struct { diff --git a/x/recovery/keeper/ibc_callbacks_integration_test.go b/x/recovery/keeper/ibc_callbacks_integration_test.go index 256b93bce7..b2b7b0dbcb 100644 --- a/x/recovery/keeper/ibc_callbacks_integration_test.go +++ b/x/recovery/keeper/ibc_callbacks_integration_test.go @@ -6,10 +6,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" transfertypes "github.com/cosmos/ibc-go/v3/modules/apps/transfer/types" channeltypes "github.com/cosmos/ibc-go/v3/modules/core/04-channel/types" - "github.com/evmos/evmos/v8/app" - "github.com/evmos/evmos/v8/testutil" - claimtypes "github.com/evmos/evmos/v8/x/claims/types" - "github.com/evmos/evmos/v8/x/recovery/types" + "github.com/evmos/evmos/v9/app" + "github.com/evmos/evmos/v9/testutil" + claimtypes "github.com/evmos/evmos/v9/x/claims/types" + "github.com/evmos/evmos/v9/x/recovery/types" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" ) diff --git a/x/recovery/keeper/ibc_callbacks_test.go b/x/recovery/keeper/ibc_callbacks_test.go index 8bd2c7feb3..e92a17ee2a 100644 --- a/x/recovery/keeper/ibc_callbacks_test.go +++ b/x/recovery/keeper/ibc_callbacks_test.go @@ -8,7 +8,7 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" "github.com/evmos/ethermint/crypto/ethsecp256k1" "github.com/evmos/ethermint/tests" - "github.com/evmos/evmos/v8/testutil" + "github.com/evmos/evmos/v9/testutil" "github.com/stretchr/testify/mock" transfertypes "github.com/cosmos/ibc-go/v3/modules/apps/transfer/types" @@ -17,11 +17,11 @@ import ( ibcgotesting "github.com/cosmos/ibc-go/v3/testing" ibcmock "github.com/cosmos/ibc-go/v3/testing/mock" - claimstypes "github.com/evmos/evmos/v8/x/claims/types" - incentivestypes "github.com/evmos/evmos/v8/x/incentives/types" - "github.com/evmos/evmos/v8/x/recovery/keeper" - "github.com/evmos/evmos/v8/x/recovery/types" - vestingtypes "github.com/evmos/evmos/v8/x/vesting/types" + claimstypes "github.com/evmos/evmos/v9/x/claims/types" + incentivestypes "github.com/evmos/evmos/v9/x/incentives/types" + "github.com/evmos/evmos/v9/x/recovery/keeper" + "github.com/evmos/evmos/v9/x/recovery/types" + vestingtypes "github.com/evmos/evmos/v9/x/vesting/types" ) func (suite *KeeperTestSuite) TestOnRecvPacket() { diff --git a/x/recovery/keeper/keeper.go b/x/recovery/keeper/keeper.go index aa6ee47fe1..e425485f22 100644 --- a/x/recovery/keeper/keeper.go +++ b/x/recovery/keeper/keeper.go @@ -13,7 +13,7 @@ import ( porttypes "github.com/cosmos/ibc-go/v3/modules/core/05-port/types" "github.com/cosmos/ibc-go/v3/modules/core/exported" - "github.com/evmos/evmos/v8/x/recovery/types" + "github.com/evmos/evmos/v9/x/recovery/types" ) var _ transfertypes.ICS4Wrapper = Keeper{} diff --git a/x/recovery/keeper/keeper_test.go b/x/recovery/keeper/keeper_test.go index 33b021457d..ad2e928b3f 100644 --- a/x/recovery/keeper/keeper_test.go +++ b/x/recovery/keeper/keeper_test.go @@ -17,9 +17,9 @@ import ( "github.com/cosmos/cosmos-sdk/baseapp" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v8/app" - claimstypes "github.com/evmos/evmos/v8/x/claims/types" - "github.com/evmos/evmos/v8/x/recovery/types" + "github.com/evmos/evmos/v9/app" + claimstypes "github.com/evmos/evmos/v9/x/claims/types" + "github.com/evmos/evmos/v9/x/recovery/types" ) var ( diff --git a/x/recovery/keeper/params.go b/x/recovery/keeper/params.go index 58b42f3fdd..f52375d617 100644 --- a/x/recovery/keeper/params.go +++ b/x/recovery/keeper/params.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v8/x/recovery/types" + "github.com/evmos/evmos/v9/x/recovery/types" ) // GetParams returns the total set of recovery parameters. diff --git a/x/recovery/keeper/utils_test.go b/x/recovery/keeper/utils_test.go index b65a580770..ac4301ce36 100644 --- a/x/recovery/keeper/utils_test.go +++ b/x/recovery/keeper/utils_test.go @@ -11,7 +11,7 @@ import ( transfertypes "github.com/cosmos/ibc-go/v3/modules/apps/transfer/types" clienttypes "github.com/cosmos/ibc-go/v3/modules/core/02-client/types" - "github.com/evmos/evmos/v8/x/recovery/types" + "github.com/evmos/evmos/v9/x/recovery/types" ) var _ types.TransferKeeper = &MockTransferKeeper{} diff --git a/x/recovery/module.go b/x/recovery/module.go index f8eff5e179..b97c375a05 100644 --- a/x/recovery/module.go +++ b/x/recovery/module.go @@ -19,9 +19,9 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/evmos/evmos/v8/x/recovery/client/cli" - "github.com/evmos/evmos/v8/x/recovery/keeper" - "github.com/evmos/evmos/v8/x/recovery/types" + "github.com/evmos/evmos/v9/x/recovery/client/cli" + "github.com/evmos/evmos/v9/x/recovery/keeper" + "github.com/evmos/evmos/v9/x/recovery/types" ) // type check to ensure the interface is properly implemented diff --git a/x/recovery/types/interfaces.go b/x/recovery/types/interfaces.go index e7c6973a06..ae52d33f02 100644 --- a/x/recovery/types/interfaces.go +++ b/x/recovery/types/interfaces.go @@ -10,7 +10,7 @@ import ( clienttypes "github.com/cosmos/ibc-go/v3/modules/core/02-client/types" channeltypes "github.com/cosmos/ibc-go/v3/modules/core/04-channel/types" - claimstypes "github.com/evmos/evmos/v8/x/claims/types" + claimstypes "github.com/evmos/evmos/v9/x/claims/types" ) // BankKeeper defines the banking keeper that must be fulfilled when diff --git a/x/revenue/client/cli/query.go b/x/revenue/client/cli/query.go index 084fad728a..5ac4ed870c 100644 --- a/x/revenue/client/cli/query.go +++ b/x/revenue/client/cli/query.go @@ -10,7 +10,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/version" - "github.com/evmos/evmos/v8/x/revenue/types" + "github.com/evmos/evmos/v9/x/revenue/types" ) // GetQueryCmd returns the cli query commands for this module diff --git a/x/revenue/client/cli/tx.go b/x/revenue/client/cli/tx.go index 6ed9037c2f..c6b3e9d325 100644 --- a/x/revenue/client/cli/tx.go +++ b/x/revenue/client/cli/tx.go @@ -13,7 +13,7 @@ import ( ethermint "github.com/evmos/ethermint/types" - "github.com/evmos/evmos/v8/x/revenue/types" + "github.com/evmos/evmos/v9/x/revenue/types" ) // NewTxCmd returns a root CLI command handler for certain modules/revenue diff --git a/x/revenue/genesis.go b/x/revenue/genesis.go index e365468560..2c93f64693 100644 --- a/x/revenue/genesis.go +++ b/x/revenue/genesis.go @@ -3,8 +3,8 @@ package revenue import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v8/x/revenue/keeper" - "github.com/evmos/evmos/v8/x/revenue/types" + "github.com/evmos/evmos/v9/x/revenue/keeper" + "github.com/evmos/evmos/v9/x/revenue/types" ) // InitGenesis import module genesis diff --git a/x/revenue/genesis_test.go b/x/revenue/genesis_test.go index 7acd43a628..f0e501c8bb 100644 --- a/x/revenue/genesis_test.go +++ b/x/revenue/genesis_test.go @@ -15,9 +15,9 @@ import ( "github.com/evmos/ethermint/tests" feemarkettypes "github.com/evmos/ethermint/x/feemarket/types" - "github.com/evmos/evmos/v8/app" - "github.com/evmos/evmos/v8/x/revenue" - "github.com/evmos/evmos/v8/x/revenue/types" + "github.com/evmos/evmos/v9/app" + "github.com/evmos/evmos/v9/x/revenue" + "github.com/evmos/evmos/v9/x/revenue/types" ) type GenesisTestSuite struct { diff --git a/x/revenue/handler.go b/x/revenue/handler.go index 1dacf51345..96cb37e71a 100644 --- a/x/revenue/handler.go +++ b/x/revenue/handler.go @@ -4,7 +4,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/evmos/evmos/v8/x/revenue/types" + "github.com/evmos/evmos/v9/x/revenue/types" ) // NewHandler defines the fees module handler instance diff --git a/x/revenue/keeper/evm_hooks.go b/x/revenue/keeper/evm_hooks.go index ecf5a2c9c3..1b8579896e 100644 --- a/x/revenue/keeper/evm_hooks.go +++ b/x/revenue/keeper/evm_hooks.go @@ -11,7 +11,7 @@ import ( evmtypes "github.com/evmos/ethermint/x/evm/types" - "github.com/evmos/evmos/v8/x/revenue/types" + "github.com/evmos/evmos/v9/x/revenue/types" ) var _ evmtypes.EvmHooks = Hooks{} diff --git a/x/revenue/keeper/grpc_query.go b/x/revenue/keeper/grpc_query.go index 4b98306766..34169c2f9a 100644 --- a/x/revenue/keeper/grpc_query.go +++ b/x/revenue/keeper/grpc_query.go @@ -13,7 +13,7 @@ import ( "github.com/ethereum/go-ethereum/common" ethermint "github.com/evmos/ethermint/types" - "github.com/evmos/evmos/v8/x/revenue/types" + "github.com/evmos/evmos/v9/x/revenue/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/revenue/keeper/grpc_query_test.go b/x/revenue/keeper/grpc_query_test.go index 4dc9d5f273..dfddc1242b 100644 --- a/x/revenue/keeper/grpc_query_test.go +++ b/x/revenue/keeper/grpc_query_test.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/query" "github.com/evmos/ethermint/tests" - "github.com/evmos/evmos/v8/x/revenue/types" + "github.com/evmos/evmos/v9/x/revenue/types" ) func (suite *KeeperTestSuite) TestRevenues() { diff --git a/x/revenue/keeper/integration_test.go b/x/revenue/keeper/integration_test.go index abc819d94d..5fa77c80c2 100644 --- a/x/revenue/keeper/integration_test.go +++ b/x/revenue/keeper/integration_test.go @@ -18,9 +18,9 @@ import ( "github.com/evmos/ethermint/encoding" "github.com/evmos/ethermint/tests" evmtypes "github.com/evmos/ethermint/x/evm/types" - "github.com/evmos/evmos/v8/app" - "github.com/evmos/evmos/v8/testutil" - "github.com/evmos/evmos/v8/x/revenue/types" + "github.com/evmos/evmos/v9/app" + "github.com/evmos/evmos/v9/testutil" + "github.com/evmos/evmos/v9/x/revenue/types" authsigning "github.com/cosmos/cosmos-sdk/x/auth/signing" diff --git a/x/revenue/keeper/keeper.go b/x/revenue/keeper/keeper.go index 7eeaec2f48..a6d674394a 100644 --- a/x/revenue/keeper/keeper.go +++ b/x/revenue/keeper/keeper.go @@ -8,7 +8,7 @@ import ( paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" "github.com/tendermint/tendermint/libs/log" - "github.com/evmos/evmos/v8/x/revenue/types" + "github.com/evmos/evmos/v9/x/revenue/types" ) // Keeper of this module maintains collections of revenues for contracts diff --git a/x/revenue/keeper/keeper_test.go b/x/revenue/keeper/keeper_test.go index f6327a718f..6a33debcb6 100644 --- a/x/revenue/keeper/keeper_test.go +++ b/x/revenue/keeper/keeper_test.go @@ -19,9 +19,9 @@ import ( stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" ethtypes "github.com/ethereum/go-ethereum/core/types" evm "github.com/evmos/ethermint/x/evm/types" - "github.com/evmos/evmos/v8/app" - claimtypes "github.com/evmos/evmos/v8/x/claims/types" - "github.com/evmos/evmos/v8/x/revenue/types" + "github.com/evmos/evmos/v9/app" + claimtypes "github.com/evmos/evmos/v9/x/claims/types" + "github.com/evmos/evmos/v9/x/revenue/types" "github.com/stretchr/testify/require" "github.com/stretchr/testify/suite" abci "github.com/tendermint/tendermint/abci/types" diff --git a/x/revenue/keeper/msg_server.go b/x/revenue/keeper/msg_server.go index 19a1ed1202..3ddf8cecb6 100644 --- a/x/revenue/keeper/msg_server.go +++ b/x/revenue/keeper/msg_server.go @@ -9,7 +9,7 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/crypto" - "github.com/evmos/evmos/v8/x/revenue/types" + "github.com/evmos/evmos/v9/x/revenue/types" ) var _ types.MsgServer = &Keeper{} diff --git a/x/revenue/keeper/msg_server_test.go b/x/revenue/keeper/msg_server_test.go index ecf32eb539..4162b41977 100644 --- a/x/revenue/keeper/msg_server_test.go +++ b/x/revenue/keeper/msg_server_test.go @@ -11,7 +11,7 @@ import ( "github.com/evmos/ethermint/tests" "github.com/evmos/ethermint/x/evm/statedb" - "github.com/evmos/evmos/v8/x/revenue/types" + "github.com/evmos/evmos/v9/x/revenue/types" ) func (suite *KeeperTestSuite) TestRegisterRevenue() { diff --git a/x/revenue/keeper/params.go b/x/revenue/keeper/params.go index 17f43cee85..ef60623331 100644 --- a/x/revenue/keeper/params.go +++ b/x/revenue/keeper/params.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v8/x/revenue/types" + "github.com/evmos/evmos/v9/x/revenue/types" ) // GetParams returns the total set of fees parameters. diff --git a/x/revenue/keeper/params_test.go b/x/revenue/keeper/params_test.go index ccc0443a45..8713b59e58 100644 --- a/x/revenue/keeper/params_test.go +++ b/x/revenue/keeper/params_test.go @@ -1,6 +1,6 @@ package keeper_test -import "github.com/evmos/evmos/v8/x/revenue/types" +import "github.com/evmos/evmos/v9/x/revenue/types" func (suite *KeeperTestSuite) TestParams() { params := suite.app.RevenueKeeper.GetParams(suite.ctx) diff --git a/x/revenue/keeper/revenues.go b/x/revenue/keeper/revenues.go index 1bc17fb844..ee1eab5952 100644 --- a/x/revenue/keeper/revenues.go +++ b/x/revenue/keeper/revenues.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/ethereum/go-ethereum/common" - "github.com/evmos/evmos/v8/x/revenue/types" + "github.com/evmos/evmos/v9/x/revenue/types" ) // GetRevenues returns all registered Revenues. diff --git a/x/revenue/keeper/revenues_test.go b/x/revenue/keeper/revenues_test.go index dfa2324a53..3314d43527 100644 --- a/x/revenue/keeper/revenues_test.go +++ b/x/revenue/keeper/revenues_test.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/ethereum/go-ethereum/common" "github.com/evmos/ethermint/tests" - "github.com/evmos/evmos/v8/x/revenue/types" + "github.com/evmos/evmos/v9/x/revenue/types" ) func (suite *KeeperTestSuite) TestGetFees() { diff --git a/x/revenue/module.go b/x/revenue/module.go index 2cfd7e1ad9..8b4e261a59 100644 --- a/x/revenue/module.go +++ b/x/revenue/module.go @@ -18,9 +18,9 @@ import ( "github.com/spf13/cobra" abci "github.com/tendermint/tendermint/abci/types" - "github.com/evmos/evmos/v8/x/revenue/client/cli" - "github.com/evmos/evmos/v8/x/revenue/keeper" - "github.com/evmos/evmos/v8/x/revenue/types" + "github.com/evmos/evmos/v9/x/revenue/client/cli" + "github.com/evmos/evmos/v9/x/revenue/keeper" + "github.com/evmos/evmos/v9/x/revenue/types" ) // type check to ensure the interface is properly implemented diff --git a/x/vesting/client/cli/query.go b/x/vesting/client/cli/query.go index 5ee18ce2c3..7625c65623 100644 --- a/x/vesting/client/cli/query.go +++ b/x/vesting/client/cli/query.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/evmos/evmos/v8/x/vesting/types" + "github.com/evmos/evmos/v9/x/vesting/types" ) // GetQueryCmd returns the parent command for all vesting CLI query commands. diff --git a/x/vesting/client/cli/tx.go b/x/vesting/client/cli/tx.go index bf903284aa..b27def028b 100644 --- a/x/vesting/client/cli/tx.go +++ b/x/vesting/client/cli/tx.go @@ -12,7 +12,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkvesting "github.com/cosmos/cosmos-sdk/x/auth/vesting/types" - "github.com/evmos/evmos/v8/x/vesting/types" + "github.com/evmos/evmos/v9/x/vesting/types" ) // Transaction command flags diff --git a/x/vesting/handler.go b/x/vesting/handler.go index 0544788876..d4a7d04200 100644 --- a/x/vesting/handler.go +++ b/x/vesting/handler.go @@ -4,7 +4,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/evmos/evmos/v8/x/vesting/types" + "github.com/evmos/evmos/v9/x/vesting/types" ) // NewHandler defines the vesting module handler instance diff --git a/x/vesting/keeper/grpc_query.go b/x/vesting/keeper/grpc_query.go index 6e6d7f2810..3ad9523302 100644 --- a/x/vesting/keeper/grpc_query.go +++ b/x/vesting/keeper/grpc_query.go @@ -7,7 +7,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/evmos/evmos/v8/x/vesting/types" + "github.com/evmos/evmos/v9/x/vesting/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/vesting/keeper/grpc_query_test.go b/x/vesting/keeper/grpc_query_test.go index 5b08fef534..39be4da3f2 100644 --- a/x/vesting/keeper/grpc_query_test.go +++ b/x/vesting/keeper/grpc_query_test.go @@ -7,8 +7,8 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" "github.com/evmos/ethermint/tests" - "github.com/evmos/evmos/v8/testutil" - "github.com/evmos/evmos/v8/x/vesting/types" + "github.com/evmos/evmos/v9/testutil" + "github.com/evmos/evmos/v9/x/vesting/types" ) func (suite *KeeperTestSuite) TestBalances() { diff --git a/x/vesting/keeper/integration_test.go b/x/vesting/keeper/integration_test.go index c15729d6a3..21578bc35f 100644 --- a/x/vesting/keeper/integration_test.go +++ b/x/vesting/keeper/integration_test.go @@ -9,9 +9,9 @@ import ( "github.com/evmos/ethermint/encoding" "github.com/evmos/ethermint/tests" - "github.com/evmos/evmos/v8/app" - "github.com/evmos/evmos/v8/app/ante" - "github.com/evmos/evmos/v8/testutil" + "github.com/evmos/evmos/v9/app" + "github.com/evmos/evmos/v9/app/ante" + "github.com/evmos/evmos/v9/testutil" "github.com/ethereum/go-ethereum/common" ethtypes "github.com/ethereum/go-ethereum/core/types" @@ -22,7 +22,7 @@ import ( stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" evmtypes "github.com/evmos/ethermint/x/evm/types" - "github.com/evmos/evmos/v8/x/vesting/types" + "github.com/evmos/evmos/v9/x/vesting/types" ) // Clawback vesting with Cliff and Lock. In this case the cliff is reached diff --git a/x/vesting/keeper/keeper.go b/x/vesting/keeper/keeper.go index 0c7868365e..9aef812be9 100644 --- a/x/vesting/keeper/keeper.go +++ b/x/vesting/keeper/keeper.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/tendermint/tendermint/libs/log" - "github.com/evmos/evmos/v8/x/vesting/types" + "github.com/evmos/evmos/v9/x/vesting/types" ) // Keeper of this module maintains collections of vesting. diff --git a/x/vesting/keeper/keeper_test.go b/x/vesting/keeper/keeper_test.go index 2dcf208d08..aaceb5c80f 100644 --- a/x/vesting/keeper/keeper_test.go +++ b/x/vesting/keeper/keeper_test.go @@ -35,10 +35,10 @@ import ( ethermint "github.com/evmos/ethermint/types" evm "github.com/evmos/ethermint/x/evm/types" - "github.com/evmos/evmos/v8/app" - "github.com/evmos/evmos/v8/contracts" - epochstypes "github.com/evmos/evmos/v8/x/epochs/types" - "github.com/evmos/evmos/v8/x/vesting/types" + "github.com/evmos/evmos/v9/app" + "github.com/evmos/evmos/v9/contracts" + epochstypes "github.com/evmos/evmos/v9/x/epochs/types" + "github.com/evmos/evmos/v9/x/vesting/types" ) var ( diff --git a/x/vesting/keeper/msg_server.go b/x/vesting/keeper/msg_server.go index d906992954..1c47c67677 100644 --- a/x/vesting/keeper/msg_server.go +++ b/x/vesting/keeper/msg_server.go @@ -13,7 +13,7 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" sdkvesting "github.com/cosmos/cosmos-sdk/x/auth/vesting/types" - "github.com/evmos/evmos/v8/x/vesting/types" + "github.com/evmos/evmos/v9/x/vesting/types" ) var _ types.MsgServer = &Keeper{} diff --git a/x/vesting/keeper/msg_server_test.go b/x/vesting/keeper/msg_server_test.go index e3a17a6751..9684b2800a 100644 --- a/x/vesting/keeper/msg_server_test.go +++ b/x/vesting/keeper/msg_server_test.go @@ -10,8 +10,8 @@ import ( sdkvesting "github.com/cosmos/cosmos-sdk/x/auth/vesting/types" "github.com/evmos/ethermint/tests" - "github.com/evmos/evmos/v8/testutil" - "github.com/evmos/evmos/v8/x/vesting/types" + "github.com/evmos/evmos/v9/testutil" + "github.com/evmos/evmos/v9/x/vesting/types" ) var ( diff --git a/x/vesting/module.go b/x/vesting/module.go index b8363b67f1..30220b8fa7 100644 --- a/x/vesting/module.go +++ b/x/vesting/module.go @@ -18,9 +18,9 @@ import ( bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" - "github.com/evmos/evmos/v8/x/vesting/client/cli" - "github.com/evmos/evmos/v8/x/vesting/keeper" - "github.com/evmos/evmos/v8/x/vesting/types" + "github.com/evmos/evmos/v9/x/vesting/client/cli" + "github.com/evmos/evmos/v9/x/vesting/keeper" + "github.com/evmos/evmos/v9/x/vesting/types" ) var ( diff --git a/x/vesting/types/clawback_vesting_account_test.go b/x/vesting/types/clawback_vesting_account_test.go index 344cd2465f..526da066d6 100644 --- a/x/vesting/types/clawback_vesting_account_test.go +++ b/x/vesting/types/clawback_vesting_account_test.go @@ -12,7 +12,7 @@ import ( sdkvesting "github.com/cosmos/cosmos-sdk/x/auth/vesting/types" "github.com/evmos/ethermint/tests" - "github.com/evmos/evmos/v8/x/vesting/types" + "github.com/evmos/evmos/v9/x/vesting/types" ) var (