diff --git a/app/ante/ante.go b/app/ante/ante.go index 0a08e49c70..d2135c1409 100644 --- a/app/ante/ante.go +++ b/app/ante/ante.go @@ -17,14 +17,10 @@ package ante import ( - "fmt" - "runtime/debug" - errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" errortypes "github.com/cosmos/cosmos-sdk/types/errors" authante "github.com/cosmos/cosmos-sdk/x/auth/ante" - tmlog "github.com/tendermint/tendermint/libs/log" ) // NewAnteHandler returns an ante handler responsible for attempting to route an @@ -37,8 +33,6 @@ func NewAnteHandler(options HandlerOptions) sdk.AnteHandler { ) (newCtx sdk.Context, err error) { var anteHandler sdk.AnteHandler - defer Recover(ctx.Logger(), &err) - txWithExtensions, ok := tx.(authante.HasExtensionOptionsTx) if ok { opts := txWithExtensions.GetExtensionOptions() @@ -75,22 +69,3 @@ func NewAnteHandler(options HandlerOptions) sdk.AnteHandler { return anteHandler(ctx, tx, sim) } } - -func Recover(logger tmlog.Logger, err *error) { - if r := recover(); r != nil { - *err = errorsmod.Wrapf(errortypes.ErrPanic, "%v", r) - - if e, ok := r.(error); ok { - logger.Error( - "ante handler panicked", - "error", e, - "stack trace", string(debug.Stack()), - ) - } else { - logger.Error( - "ante handler panicked", - "recover", fmt.Sprintf("%v", r), - ) - } - } -} diff --git a/app/ante/cosmos/authz_test.go b/app/ante/cosmos/authz_test.go index 76a1f28616..55bd91c9d1 100644 --- a/app/ante/cosmos/authz_test.go +++ b/app/ante/cosmos/authz_test.go @@ -15,10 +15,10 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - cosmosante "github.com/evmos/evmos/v11/app/ante/cosmos" - testutil "github.com/evmos/evmos/v11/testutil" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + cosmosante "github.com/evmos/evmos/v12/app/ante/cosmos" + testutil "github.com/evmos/evmos/v12/testutil" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" ) func TestAuthzLimiterDecorator(t *testing.T) { diff --git a/app/ante/cosmos/eip712.go b/app/ante/cosmos/eip712.go index 018f09b981..e9b942ea69 100644 --- a/app/ante/cosmos/eip712.go +++ b/app/ante/cosmos/eip712.go @@ -32,11 +32,11 @@ import ( ethcrypto "github.com/ethereum/go-ethereum/crypto" "github.com/ethereum/go-ethereum/crypto/secp256k1" "github.com/ethereum/go-ethereum/signer/core/apitypes" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - "github.com/evmos/evmos/v11/ethereum/eip712" - "github.com/evmos/evmos/v11/types" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/ethereum/eip712" + "github.com/evmos/evmos/v12/types" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" ) var evmosCodec codec.ProtoCodecMarshaler diff --git a/app/ante/cosmos/fees.go b/app/ante/cosmos/fees.go index 685af523c0..9b501abb97 100644 --- a/app/ante/cosmos/fees.go +++ b/app/ante/cosmos/fees.go @@ -25,7 +25,7 @@ import ( errortypes "github.com/cosmos/cosmos-sdk/types/errors" authante "github.com/cosmos/cosmos-sdk/x/auth/ante" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - anteutils "github.com/evmos/evmos/v11/app/ante/utils" + anteutils "github.com/evmos/evmos/v12/app/ante/utils" ) // DeductFeeDecorator deducts fees from the first signer of the tx. diff --git a/app/ante/cosmos/fees_test.go b/app/ante/cosmos/fees_test.go index 42580f1a05..ec2f43f295 100644 --- a/app/ante/cosmos/fees_test.go +++ b/app/ante/cosmos/fees_test.go @@ -8,10 +8,10 @@ import ( sdktestutil "github.com/cosmos/cosmos-sdk/testutil/testdata" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/x/feegrant" - cosmosante "github.com/evmos/evmos/v11/app/ante/cosmos" - "github.com/evmos/evmos/v11/testutil" - testutiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/utils" + cosmosante "github.com/evmos/evmos/v12/app/ante/cosmos" + "github.com/evmos/evmos/v12/testutil" + testutiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/utils" ) func (suite *AnteTestSuite) TestDeductFeeDecorator() { diff --git a/app/ante/cosmos/min_price.go b/app/ante/cosmos/min_price.go index 99768269ea..d068fb0220 100644 --- a/app/ante/cosmos/min_price.go +++ b/app/ante/cosmos/min_price.go @@ -21,7 +21,7 @@ import ( errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" errortypes "github.com/cosmos/cosmos-sdk/types/errors" - evmante "github.com/evmos/evmos/v11/app/ante/evm" + evmante "github.com/evmos/evmos/v12/app/ante/evm" ) // MinGasPriceDecorator will check if the transaction's fee is at least as large diff --git a/app/ante/cosmos/min_price_test.go b/app/ante/cosmos/min_price_test.go index a6382bb2b7..edd3fae2a8 100644 --- a/app/ante/cosmos/min_price_test.go +++ b/app/ante/cosmos/min_price_test.go @@ -4,10 +4,10 @@ import ( sdkmath "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - cosmosante "github.com/evmos/evmos/v11/app/ante/cosmos" - "github.com/evmos/evmos/v11/testutil" - testutiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/utils" + cosmosante "github.com/evmos/evmos/v12/app/ante/cosmos" + "github.com/evmos/evmos/v12/testutil" + testutiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/utils" ) var execTypes = []struct { diff --git a/app/ante/cosmos/reject_msgs.go b/app/ante/cosmos/reject_msgs.go index c15f69da99..23a393d5f4 100644 --- a/app/ante/cosmos/reject_msgs.go +++ b/app/ante/cosmos/reject_msgs.go @@ -19,7 +19,7 @@ import ( errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" errortypes "github.com/cosmos/cosmos-sdk/types/errors" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" ) // RejectMessagesDecorator prevents invalid msg types from being executed diff --git a/app/ante/cosmos/setup_test.go b/app/ante/cosmos/setup_test.go index affc48d8c6..40652c732b 100644 --- a/app/ante/cosmos/setup_test.go +++ b/app/ante/cosmos/setup_test.go @@ -19,18 +19,18 @@ import ( "github.com/ethereum/go-ethereum/common" ethtypes "github.com/ethereum/go-ethereum/core/types" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/app/ante" - evmante "github.com/evmos/evmos/v11/app/ante/evm" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - "github.com/evmos/evmos/v11/encoding" - "github.com/evmos/evmos/v11/ethereum/eip712" - "github.com/evmos/evmos/v11/testutil" - "github.com/evmos/evmos/v11/types" - "github.com/evmos/evmos/v11/utils" - "github.com/evmos/evmos/v11/x/evm/statedb" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" - feemarkettypes "github.com/evmos/evmos/v11/x/feemarket/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/app/ante" + evmante "github.com/evmos/evmos/v12/app/ante/evm" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/encoding" + "github.com/evmos/evmos/v12/ethereum/eip712" + "github.com/evmos/evmos/v12/testutil" + "github.com/evmos/evmos/v12/types" + "github.com/evmos/evmos/v12/utils" + "github.com/evmos/evmos/v12/x/evm/statedb" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" + feemarkettypes "github.com/evmos/evmos/v12/x/feemarket/types" ) type AnteTestSuite struct { diff --git a/app/ante/cosmos/utils_test.go b/app/ante/cosmos/utils_test.go index 843e3629be..2f15719751 100644 --- a/app/ante/cosmos/utils_test.go +++ b/app/ante/cosmos/utils_test.go @@ -11,9 +11,9 @@ import ( "github.com/cosmos/cosmos-sdk/types/tx/signing" authsigning "github.com/cosmos/cosmos-sdk/x/auth/signing" "github.com/cosmos/cosmos-sdk/x/authz" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - "github.com/evmos/evmos/v11/encoding" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/encoding" ) func (suite *AnteTestSuite) CreateTestCosmosTxBuilder(gasPrice sdkmath.Int, denom string, msgs ...sdk.Msg) client.TxBuilder { diff --git a/app/ante/cosmos/vesting.go b/app/ante/cosmos/vesting.go index aa07b8bd5b..68d2c11890 100644 --- a/app/ante/cosmos/vesting.go +++ b/app/ante/cosmos/vesting.go @@ -22,8 +22,8 @@ import ( errortypes "github.com/cosmos/cosmos-sdk/types/errors" "github.com/cosmos/cosmos-sdk/x/authz" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" - vestingtypes "github.com/evmos/evmos/v11/x/vesting/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" + vestingtypes "github.com/evmos/evmos/v12/x/vesting/types" ) // TODO: remove once Cosmos SDK is upgraded to v0.46 diff --git a/app/ante/evm/ante_test.go b/app/ante/evm/ante_test.go index e64771567f..f3b60d5c84 100644 --- a/app/ante/evm/ante_test.go +++ b/app/ante/evm/ante_test.go @@ -17,8 +17,8 @@ import ( "github.com/ethereum/go-ethereum/core/types" ethparams "github.com/ethereum/go-ethereum/params" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" ) func (suite *AnteTestSuite) TestAnteHandler() { diff --git a/app/ante/evm/eth.go b/app/ante/evm/eth.go index fd8908cdce..9b687e05eb 100644 --- a/app/ante/evm/eth.go +++ b/app/ante/evm/eth.go @@ -26,11 +26,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" errortypes "github.com/cosmos/cosmos-sdk/types/errors" - anteutils "github.com/evmos/evmos/v11/app/ante/utils" - "github.com/evmos/evmos/v11/types" - "github.com/evmos/evmos/v11/x/evm/keeper" - "github.com/evmos/evmos/v11/x/evm/statedb" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + anteutils "github.com/evmos/evmos/v12/app/ante/utils" + "github.com/evmos/evmos/v12/types" + "github.com/evmos/evmos/v12/x/evm/keeper" + "github.com/evmos/evmos/v12/x/evm/statedb" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" "github.com/ethereum/go-ethereum/common" ethtypes "github.com/ethereum/go-ethereum/core/types" diff --git a/app/ante/evm/eth_test.go b/app/ante/evm/eth_test.go index 9beccc2b89..a95c74913b 100644 --- a/app/ante/evm/eth_test.go +++ b/app/ante/evm/eth_test.go @@ -6,14 +6,14 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - ethante "github.com/evmos/evmos/v11/app/ante/evm" - "github.com/evmos/evmos/v11/server/config" - "github.com/evmos/evmos/v11/testutil" - testutiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/types" - "github.com/evmos/evmos/v11/utils" - "github.com/evmos/evmos/v11/x/evm/statedb" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + ethante "github.com/evmos/evmos/v12/app/ante/evm" + "github.com/evmos/evmos/v12/server/config" + "github.com/evmos/evmos/v12/testutil" + testutiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/types" + "github.com/evmos/evmos/v12/utils" + "github.com/evmos/evmos/v12/x/evm/statedb" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" ethtypes "github.com/ethereum/go-ethereum/core/types" ) diff --git a/app/ante/evm/fee_checker.go b/app/ante/evm/fee_checker.go index b1432f67f2..7b3943d889 100644 --- a/app/ante/evm/fee_checker.go +++ b/app/ante/evm/fee_checker.go @@ -24,9 +24,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" errortypes "github.com/cosmos/cosmos-sdk/types/errors" authante "github.com/cosmos/cosmos-sdk/x/auth/ante" - anteutils "github.com/evmos/evmos/v11/app/ante/utils" - evmostypes "github.com/evmos/evmos/v11/types" - "github.com/evmos/evmos/v11/x/evm/types" + anteutils "github.com/evmos/evmos/v12/app/ante/utils" + evmostypes "github.com/evmos/evmos/v12/types" + "github.com/evmos/evmos/v12/x/evm/types" ) // NewDynamicFeeChecker returns a `TxFeeChecker` that applies a dynamic fee to diff --git a/app/ante/evm/fee_checker_test.go b/app/ante/evm/fee_checker_test.go index 813b7659a6..b639472d87 100644 --- a/app/ante/evm/fee_checker_test.go +++ b/app/ante/evm/fee_checker_test.go @@ -11,9 +11,9 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" authtx "github.com/cosmos/cosmos-sdk/x/auth/tx" "github.com/ethereum/go-ethereum/params" - "github.com/evmos/evmos/v11/encoding" - "github.com/evmos/evmos/v11/types" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/encoding" + "github.com/evmos/evmos/v12/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" "github.com/tendermint/tendermint/libs/log" tmproto "github.com/tendermint/tendermint/proto/tendermint/types" ) diff --git a/app/ante/evm/fee_market.go b/app/ante/evm/fee_market.go index b7a84af6f5..78951f5b79 100644 --- a/app/ante/evm/fee_market.go +++ b/app/ante/evm/fee_market.go @@ -21,7 +21,7 @@ import ( errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" errortypes "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/evmos/evmos/v11/types" + "github.com/evmos/evmos/v12/types" ) // GasWantedDecorator keeps track of the gasWanted amount on the current block in transient store diff --git a/app/ante/evm/fee_market_test.go b/app/ante/evm/fee_market_test.go index eea8e1817a..7a3f15b865 100644 --- a/app/ante/evm/fee_market_test.go +++ b/app/ante/evm/fee_market_test.go @@ -8,12 +8,12 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" ethtypes "github.com/ethereum/go-ethereum/core/types" - "github.com/evmos/evmos/v11/app/ante/evm" - "github.com/evmos/evmos/v11/testutil" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/types" - "github.com/evmos/evmos/v11/utils" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/app/ante/evm" + "github.com/evmos/evmos/v12/testutil" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/types" + "github.com/evmos/evmos/v12/utils" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" ) func (suite *AnteTestSuite) TestGasWantedDecorator() { diff --git a/app/ante/evm/fees.go b/app/ante/evm/fees.go index f9f38b4915..ef6b53d4c8 100644 --- a/app/ante/evm/fees.go +++ b/app/ante/evm/fees.go @@ -23,7 +23,7 @@ import ( errortypes "github.com/cosmos/cosmos-sdk/types/errors" ethtypes "github.com/ethereum/go-ethereum/core/types" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" ) // EthMinGasPriceDecorator will check if the transaction's fee is at least as large diff --git a/app/ante/evm/fees_test.go b/app/ante/evm/fees_test.go index d68278e0a0..5a70e577b0 100644 --- a/app/ante/evm/fees_test.go +++ b/app/ante/evm/fees_test.go @@ -7,10 +7,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" ethtypes "github.com/ethereum/go-ethereum/core/types" - evmante "github.com/evmos/evmos/v11/app/ante/evm" - "github.com/evmos/evmos/v11/testutil" - testutiltx "github.com/evmos/evmos/v11/testutil/tx" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + evmante "github.com/evmos/evmos/v12/app/ante/evm" + "github.com/evmos/evmos/v12/testutil" + testutiltx "github.com/evmos/evmos/v12/testutil/tx" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" ) var execTypes = []struct { diff --git a/app/ante/evm/interfaces.go b/app/ante/evm/interfaces.go index 98157e43e3..c5b7c53dd8 100644 --- a/app/ante/evm/interfaces.go +++ b/app/ante/evm/interfaces.go @@ -25,9 +25,9 @@ import ( "github.com/ethereum/go-ethereum/core/vm" "github.com/ethereum/go-ethereum/params" - "github.com/evmos/evmos/v11/x/evm/statedb" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" - feemarkettypes "github.com/evmos/evmos/v11/x/feemarket/types" + "github.com/evmos/evmos/v12/x/evm/statedb" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" + feemarkettypes "github.com/evmos/evmos/v12/x/feemarket/types" ) // EVMKeeper defines the expected keeper interface used on the AnteHandler diff --git a/app/ante/evm/setup_ctx.go b/app/ante/evm/setup_ctx.go index bed448cf54..fb843447bf 100644 --- a/app/ante/evm/setup_ctx.go +++ b/app/ante/evm/setup_ctx.go @@ -26,7 +26,7 @@ import ( errortypes "github.com/cosmos/cosmos-sdk/types/errors" authante "github.com/cosmos/cosmos-sdk/x/auth/ante" ethtypes "github.com/ethereum/go-ethereum/core/types" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" ) // EthSetupContextDecorator is adapted from SetUpContextDecorator from cosmos-sdk, it ignores gas consumption diff --git a/app/ante/evm/setup_ctx_test.go b/app/ante/evm/setup_ctx_test.go index 28f49a9e6b..d5f3b43548 100644 --- a/app/ante/evm/setup_ctx_test.go +++ b/app/ante/evm/setup_ctx_test.go @@ -3,13 +3,13 @@ package evm_test import ( "math/big" - evmante "github.com/evmos/evmos/v11/app/ante/evm" - "github.com/evmos/evmos/v11/testutil" + evmante "github.com/evmos/evmos/v12/app/ante/evm" + "github.com/evmos/evmos/v12/testutil" storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" - testutiltx "github.com/evmos/evmos/v11/testutil/tx" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + testutiltx "github.com/evmos/evmos/v12/testutil/tx" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" ) func (suite *AnteTestSuite) TestEthSetupContextDecorator() { diff --git a/app/ante/evm/setup_test.go b/app/ante/evm/setup_test.go index 90befb0546..91183031e9 100644 --- a/app/ante/evm/setup_test.go +++ b/app/ante/evm/setup_test.go @@ -15,13 +15,13 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" "github.com/ethereum/go-ethereum/core/types" - "github.com/evmos/evmos/v11/app" - ante "github.com/evmos/evmos/v11/app/ante" - "github.com/evmos/evmos/v11/encoding" - "github.com/evmos/evmos/v11/ethereum/eip712" - "github.com/evmos/evmos/v11/utils" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" - feemarkettypes "github.com/evmos/evmos/v11/x/feemarket/types" + "github.com/evmos/evmos/v12/app" + ante "github.com/evmos/evmos/v12/app/ante" + "github.com/evmos/evmos/v12/encoding" + "github.com/evmos/evmos/v12/ethereum/eip712" + "github.com/evmos/evmos/v12/utils" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" + feemarkettypes "github.com/evmos/evmos/v12/x/feemarket/types" ) type AnteTestSuite struct { diff --git a/app/ante/evm/signverify_test.go b/app/ante/evm/signverify_test.go index d004c0b703..41ceb72cce 100644 --- a/app/ante/evm/signverify_test.go +++ b/app/ante/evm/signverify_test.go @@ -5,10 +5,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" ethtypes "github.com/ethereum/go-ethereum/core/types" - ethante "github.com/evmos/evmos/v11/app/ante/evm" - "github.com/evmos/evmos/v11/testutil" - testutiltx "github.com/evmos/evmos/v11/testutil/tx" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + ethante "github.com/evmos/evmos/v12/app/ante/evm" + "github.com/evmos/evmos/v12/testutil" + testutiltx "github.com/evmos/evmos/v12/testutil/tx" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" ) func (suite *AnteTestSuite) TestEthSigVerificationDecorator() { diff --git a/app/ante/evm/sigs_test.go b/app/ante/evm/sigs_test.go index 02d82850cf..d25bbac85d 100644 --- a/app/ante/evm/sigs_test.go +++ b/app/ante/evm/sigs_test.go @@ -3,9 +3,9 @@ package evm_test import ( "math/big" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/x/evm/statedb" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/x/evm/statedb" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" ) func (suite *AnteTestSuite) TestSignatures() { diff --git a/app/ante/evm/sigverify.go b/app/ante/evm/sigverify.go index e43c754e95..988c1d8b14 100644 --- a/app/ante/evm/sigverify.go +++ b/app/ante/evm/sigverify.go @@ -22,7 +22,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" errortypes "github.com/cosmos/cosmos-sdk/types/errors" ethtypes "github.com/ethereum/go-ethereum/core/types" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" ) // EthSigVerificationDecorator validates an ethereum signatures diff --git a/app/ante/evm/utils_test.go b/app/ante/evm/utils_test.go index 9446dd442a..5e3d1c8f67 100644 --- a/app/ante/evm/utils_test.go +++ b/app/ante/evm/utils_test.go @@ -12,7 +12,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/auth/migrations/legacytx" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/evmos/evmos/v11/ethereum/eip712" + "github.com/evmos/evmos/v12/ethereum/eip712" "github.com/ethereum/go-ethereum/common" ethtypes "github.com/ethereum/go-ethereum/core/types" @@ -32,15 +32,15 @@ import ( authz "github.com/cosmos/cosmos-sdk/x/authz" ibctypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" ibcclienttypes "github.com/cosmos/ibc-go/v6/modules/core/02-client/types" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" "github.com/cosmos/cosmos-sdk/crypto/keys/ed25519" evtypes "github.com/cosmos/cosmos-sdk/x/evidence/types" "github.com/cosmos/cosmos-sdk/x/feegrant" govtypesv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" ) func (suite *AnteTestSuite) BuildTestEthTx( diff --git a/app/ante/evm/vesting.go b/app/ante/evm/vesting.go index 0b19eb9ee3..66e040ea4e 100644 --- a/app/ante/evm/vesting.go +++ b/app/ante/evm/vesting.go @@ -21,8 +21,8 @@ import ( errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" errortypes "github.com/cosmos/cosmos-sdk/types/errors" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" - vestingtypes "github.com/evmos/evmos/v11/x/vesting/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" + vestingtypes "github.com/evmos/evmos/v12/x/vesting/types" ) // EthVestingTransactionDecorator validates if clawback vesting accounts are diff --git a/app/ante/evm/vesting_test.go b/app/ante/evm/vesting_test.go index 8149beee94..1927d1f99c 100644 --- a/app/ante/evm/vesting_test.go +++ b/app/ante/evm/vesting_test.go @@ -8,11 +8,11 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" sdkvesting "github.com/cosmos/cosmos-sdk/x/auth/vesting/types" - ethante "github.com/evmos/evmos/v11/app/ante/evm" - "github.com/evmos/evmos/v11/testutil" - testutiltx "github.com/evmos/evmos/v11/testutil/tx" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" - vestingtypes "github.com/evmos/evmos/v11/x/vesting/types" + ethante "github.com/evmos/evmos/v12/app/ante/evm" + "github.com/evmos/evmos/v12/testutil" + testutiltx "github.com/evmos/evmos/v12/testutil/tx" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" + vestingtypes "github.com/evmos/evmos/v12/x/vesting/types" ) // global variables used for testing the eth vesting ante handler diff --git a/app/ante/handler_options.go b/app/ante/handler_options.go index f18e430e7a..d043f2672a 100644 --- a/app/ante/handler_options.go +++ b/app/ante/handler_options.go @@ -27,14 +27,14 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" ibcante "github.com/cosmos/ibc-go/v6/modules/core/ante" ibckeeper "github.com/cosmos/ibc-go/v6/modules/core/keeper" - anteutils "github.com/evmos/evmos/v11/app/ante/utils" + anteutils "github.com/evmos/evmos/v12/app/ante/utils" - cosmosante "github.com/evmos/evmos/v11/app/ante/cosmos" - evmante "github.com/evmos/evmos/v11/app/ante/evm" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + cosmosante "github.com/evmos/evmos/v12/app/ante/cosmos" + evmante "github.com/evmos/evmos/v12/app/ante/evm" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" sdkvesting "github.com/cosmos/cosmos-sdk/x/auth/vesting/types" - vestingtypes "github.com/evmos/evmos/v11/x/vesting/types" + vestingtypes "github.com/evmos/evmos/v12/x/vesting/types" ) // HandlerOptions defines the list of module keepers required to run the Evmos diff --git a/app/ante/handler_options_test.go b/app/ante/handler_options_test.go index 99afe1b632..48ac0d221e 100644 --- a/app/ante/handler_options_test.go +++ b/app/ante/handler_options_test.go @@ -1,12 +1,12 @@ package ante_test import ( - ethante "github.com/evmos/evmos/v11/app/ante/evm" - "github.com/evmos/evmos/v11/encoding" - "github.com/evmos/evmos/v11/types" + ethante "github.com/evmos/evmos/v12/app/ante/evm" + "github.com/evmos/evmos/v12/encoding" + "github.com/evmos/evmos/v12/types" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/app/ante" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/app/ante" ) func (suite *AnteTestSuite) TestValidateHandlerOptions() { diff --git a/app/ante/integration_test.go b/app/ante/integration_test.go index 73d97e4c5e..6dd4ffca24 100644 --- a/app/ante/integration_test.go +++ b/app/ante/integration_test.go @@ -5,15 +5,15 @@ import ( sdkmath "cosmossdk.io/math" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - testutiltx "github.com/evmos/evmos/v11/testutil/tx" + testutiltx "github.com/evmos/evmos/v12/testutil/tx" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - "github.com/evmos/evmos/v11/testutil" - "github.com/evmos/evmos/v11/utils" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/testutil" + "github.com/evmos/evmos/v12/utils" ) var _ = Describe("when sending a Cosmos transaction", func() { diff --git a/app/ante/setup_test.go b/app/ante/setup_test.go index 0882df611c..f2e7641086 100644 --- a/app/ante/setup_test.go +++ b/app/ante/setup_test.go @@ -9,12 +9,12 @@ import ( "github.com/cosmos/cosmos-sdk/client" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - "github.com/evmos/evmos/v11/encoding" - "github.com/evmos/evmos/v11/testutil" - "github.com/evmos/evmos/v11/utils" - feemarkettypes "github.com/evmos/evmos/v11/x/feemarket/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/encoding" + "github.com/evmos/evmos/v12/testutil" + "github.com/evmos/evmos/v12/utils" + feemarkettypes "github.com/evmos/evmos/v12/x/feemarket/types" "github.com/stretchr/testify/require" "github.com/stretchr/testify/suite" ) diff --git a/app/ante/sigverify.go b/app/ante/sigverify.go index 9913419455..56a8cca5ee 100644 --- a/app/ante/sigverify.go +++ b/app/ante/sigverify.go @@ -28,7 +28,7 @@ import ( authante "github.com/cosmos/cosmos-sdk/x/auth/ante" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" ) var _ authante.SignatureVerificationGasConsumer = SigVerificationGasConsumer diff --git a/app/ante/sigverify_test.go b/app/ante/sigverify_test.go index 3d1c37f334..1d6a934b31 100644 --- a/app/ante/sigverify_test.go +++ b/app/ante/sigverify_test.go @@ -16,10 +16,10 @@ import ( "github.com/cosmos/cosmos-sdk/x/auth/migrations/legacytx" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/app/ante" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - "github.com/evmos/evmos/v11/encoding" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/app/ante" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/encoding" ) func TestConsumeSignatureVerificationGas(t *testing.T) { diff --git a/app/ante/utils/claim_rewards_test.go b/app/ante/utils/claim_rewards_test.go index 3b4715f0ac..55464d563c 100644 --- a/app/ante/utils/claim_rewards_test.go +++ b/app/ante/utils/claim_rewards_test.go @@ -4,10 +4,10 @@ import ( "time" sdk "github.com/cosmos/cosmos-sdk/types" - anteutils "github.com/evmos/evmos/v11/app/ante/utils" - "github.com/evmos/evmos/v11/testutil" - testutiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/utils" + anteutils "github.com/evmos/evmos/v12/app/ante/utils" + "github.com/evmos/evmos/v12/testutil" + testutiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/utils" ) // TestClaimStakingRewardsIfNecessary tests the ClaimStakingRewardsIfNecessary function diff --git a/app/ante/utils/setup_test.go b/app/ante/utils/setup_test.go index 1be331519c..bd1abcab01 100644 --- a/app/ante/utils/setup_test.go +++ b/app/ante/utils/setup_test.go @@ -15,14 +15,14 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" "github.com/ethereum/go-ethereum/core/types" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/app/ante" - "github.com/evmos/evmos/v11/encoding" - "github.com/evmos/evmos/v11/ethereum/eip712" - "github.com/evmos/evmos/v11/testutil" - "github.com/evmos/evmos/v11/utils" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" - feemarkettypes "github.com/evmos/evmos/v11/x/feemarket/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/app/ante" + "github.com/evmos/evmos/v12/encoding" + "github.com/evmos/evmos/v12/ethereum/eip712" + "github.com/evmos/evmos/v12/testutil" + "github.com/evmos/evmos/v12/utils" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" + feemarkettypes "github.com/evmos/evmos/v12/x/feemarket/types" ) type AnteTestSuite struct { diff --git a/app/ante/utils_test.go b/app/ante/utils_test.go index 183725381a..b7d3045fc9 100644 --- a/app/ante/utils_test.go +++ b/app/ante/utils_test.go @@ -6,8 +6,8 @@ import ( cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/evmos/evmos/v11/app/ante" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/app/ante" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" ) func generatePubKeysAndSignatures(n int, msg []byte, _ bool) (pubkeys []cryptotypes.PubKey, signatures [][]byte) { diff --git a/app/app.go b/app/app.go index f6e0ea14bd..ee7d943006 100644 --- a/app/app.go +++ b/app/app.go @@ -123,60 +123,60 @@ import ( icahosttypes "github.com/cosmos/ibc-go/v6/modules/apps/27-interchain-accounts/host/types" icatypes "github.com/cosmos/ibc-go/v6/modules/apps/27-interchain-accounts/types" - ethante "github.com/evmos/evmos/v11/app/ante/evm" - "github.com/evmos/evmos/v11/encoding" - "github.com/evmos/evmos/v11/ethereum/eip712" - srvflags "github.com/evmos/evmos/v11/server/flags" - evmostypes "github.com/evmos/evmos/v11/types" - "github.com/evmos/evmos/v11/x/evm" - evmkeeper "github.com/evmos/evmos/v11/x/evm/keeper" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" - "github.com/evmos/evmos/v11/x/feemarket" - feemarketkeeper "github.com/evmos/evmos/v11/x/feemarket/keeper" - feemarkettypes "github.com/evmos/evmos/v11/x/feemarket/types" + ethante "github.com/evmos/evmos/v12/app/ante/evm" + "github.com/evmos/evmos/v12/encoding" + "github.com/evmos/evmos/v12/ethereum/eip712" + srvflags "github.com/evmos/evmos/v12/server/flags" + evmostypes "github.com/evmos/evmos/v12/types" + "github.com/evmos/evmos/v12/x/evm" + evmkeeper "github.com/evmos/evmos/v12/x/evm/keeper" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" + "github.com/evmos/evmos/v12/x/feemarket" + feemarketkeeper "github.com/evmos/evmos/v12/x/feemarket/keeper" + feemarkettypes "github.com/evmos/evmos/v12/x/feemarket/types" // unnamed import of statik for swagger UI support - _ "github.com/evmos/evmos/v11/client/docs/statik" - - "github.com/evmos/evmos/v11/app/ante" - v10 "github.com/evmos/evmos/v11/app/upgrades/v10" - v11 "github.com/evmos/evmos/v11/app/upgrades/v11" - v12 "github.com/evmos/evmos/v11/app/upgrades/v12" - v8 "github.com/evmos/evmos/v11/app/upgrades/v8" - v81 "github.com/evmos/evmos/v11/app/upgrades/v8_1" - v82 "github.com/evmos/evmos/v11/app/upgrades/v8_2" - v9 "github.com/evmos/evmos/v11/app/upgrades/v9" - v91 "github.com/evmos/evmos/v11/app/upgrades/v9_1" - "github.com/evmos/evmos/v11/x/claims" - claimskeeper "github.com/evmos/evmos/v11/x/claims/keeper" - claimstypes "github.com/evmos/evmos/v11/x/claims/types" - "github.com/evmos/evmos/v11/x/epochs" - epochskeeper "github.com/evmos/evmos/v11/x/epochs/keeper" - epochstypes "github.com/evmos/evmos/v11/x/epochs/types" - "github.com/evmos/evmos/v11/x/erc20" - erc20client "github.com/evmos/evmos/v11/x/erc20/client" - erc20keeper "github.com/evmos/evmos/v11/x/erc20/keeper" - erc20types "github.com/evmos/evmos/v11/x/erc20/types" - "github.com/evmos/evmos/v11/x/incentives" - incentivesclient "github.com/evmos/evmos/v11/x/incentives/client" - incentiveskeeper "github.com/evmos/evmos/v11/x/incentives/keeper" - incentivestypes "github.com/evmos/evmos/v11/x/incentives/types" - "github.com/evmos/evmos/v11/x/inflation" - inflationkeeper "github.com/evmos/evmos/v11/x/inflation/keeper" - inflationtypes "github.com/evmos/evmos/v11/x/inflation/types" - "github.com/evmos/evmos/v11/x/recovery" - recoverykeeper "github.com/evmos/evmos/v11/x/recovery/keeper" - recoverytypes "github.com/evmos/evmos/v11/x/recovery/types" - revenue "github.com/evmos/evmos/v11/x/revenue/v1" - revenuekeeper "github.com/evmos/evmos/v11/x/revenue/v1/keeper" - revenuetypes "github.com/evmos/evmos/v11/x/revenue/v1/types" - "github.com/evmos/evmos/v11/x/vesting" - vestingkeeper "github.com/evmos/evmos/v11/x/vesting/keeper" - vestingtypes "github.com/evmos/evmos/v11/x/vesting/types" + _ "github.com/evmos/evmos/v12/client/docs/statik" + + "github.com/evmos/evmos/v12/app/ante" + v10 "github.com/evmos/evmos/v12/app/upgrades/v10" + v11 "github.com/evmos/evmos/v12/app/upgrades/v11" + v12 "github.com/evmos/evmos/v12/app/upgrades/v12" + v8 "github.com/evmos/evmos/v12/app/upgrades/v8" + v81 "github.com/evmos/evmos/v12/app/upgrades/v8_1" + v82 "github.com/evmos/evmos/v12/app/upgrades/v8_2" + v9 "github.com/evmos/evmos/v12/app/upgrades/v9" + v91 "github.com/evmos/evmos/v12/app/upgrades/v9_1" + "github.com/evmos/evmos/v12/x/claims" + claimskeeper "github.com/evmos/evmos/v12/x/claims/keeper" + claimstypes "github.com/evmos/evmos/v12/x/claims/types" + "github.com/evmos/evmos/v12/x/epochs" + epochskeeper "github.com/evmos/evmos/v12/x/epochs/keeper" + epochstypes "github.com/evmos/evmos/v12/x/epochs/types" + "github.com/evmos/evmos/v12/x/erc20" + erc20client "github.com/evmos/evmos/v12/x/erc20/client" + erc20keeper "github.com/evmos/evmos/v12/x/erc20/keeper" + erc20types "github.com/evmos/evmos/v12/x/erc20/types" + "github.com/evmos/evmos/v12/x/incentives" + incentivesclient "github.com/evmos/evmos/v12/x/incentives/client" + incentiveskeeper "github.com/evmos/evmos/v12/x/incentives/keeper" + incentivestypes "github.com/evmos/evmos/v12/x/incentives/types" + "github.com/evmos/evmos/v12/x/inflation" + inflationkeeper "github.com/evmos/evmos/v12/x/inflation/keeper" + inflationtypes "github.com/evmos/evmos/v12/x/inflation/types" + "github.com/evmos/evmos/v12/x/recovery" + recoverykeeper "github.com/evmos/evmos/v12/x/recovery/keeper" + recoverytypes "github.com/evmos/evmos/v12/x/recovery/types" + revenue "github.com/evmos/evmos/v12/x/revenue/v1" + revenuekeeper "github.com/evmos/evmos/v12/x/revenue/v1/keeper" + revenuetypes "github.com/evmos/evmos/v12/x/revenue/v1/types" + "github.com/evmos/evmos/v12/x/vesting" + vestingkeeper "github.com/evmos/evmos/v12/x/vesting/keeper" + vestingtypes "github.com/evmos/evmos/v12/x/vesting/types" // NOTE: override ICS20 keeper to support IBC transfers of ERC20 tokens - "github.com/evmos/evmos/v11/x/ibc/transfer" - transferkeeper "github.com/evmos/evmos/v11/x/ibc/transfer/keeper" + "github.com/evmos/evmos/v12/x/ibc/transfer" + transferkeeper "github.com/evmos/evmos/v12/x/ibc/transfer/keeper" // Force-load the tracer engines to trigger registration due to Go-Ethereum v1.10.15 changes _ "github.com/ethereum/go-ethereum/eth/tracers/js" diff --git a/app/app_test.go b/app/app_test.go index a16c6deb31..7ca6d717f3 100644 --- a/app/app_test.go +++ b/app/app_test.go @@ -19,8 +19,8 @@ import ( tmtypes "github.com/tendermint/tendermint/types" dbm "github.com/tendermint/tm-db" - "github.com/evmos/evmos/v11/encoding" - "github.com/evmos/evmos/v11/utils" + "github.com/evmos/evmos/v12/encoding" + "github.com/evmos/evmos/v12/utils" ) func TestEvmosExport(t *testing.T) { diff --git a/app/ethtest_helper.go b/app/ethtest_helper.go index 5c639c815b..5d600a2645 100644 --- a/app/ethtest_helper.go +++ b/app/ethtest_helper.go @@ -30,7 +30,7 @@ import ( stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/encoding" + "github.com/evmos/evmos/v12/encoding" abci "github.com/tendermint/tendermint/abci/types" "github.com/tendermint/tendermint/libs/log" tmproto "github.com/tendermint/tendermint/proto/tendermint/types" diff --git a/app/export.go b/app/export.go index 4cf3615339..e477fbdb3b 100644 --- a/app/export.go +++ b/app/export.go @@ -29,7 +29,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/staking" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/evmos/evmos/v11/encoding" + "github.com/evmos/evmos/v12/encoding" ) // NewDefaultGenesisState generates the default state for the application. diff --git a/app/forks.go b/app/forks.go index ef404906a0..716b293d71 100644 --- a/app/forks.go +++ b/app/forks.go @@ -22,8 +22,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - v82 "github.com/evmos/evmos/v11/app/upgrades/v8_2" - "github.com/evmos/evmos/v11/utils" + v82 "github.com/evmos/evmos/v12/app/upgrades/v8_2" + "github.com/evmos/evmos/v12/utils" ) // ScheduleForkUpgrade executes any necessary fork logic for based upon the current diff --git a/app/test_helpers.go b/app/test_helpers.go index a85b1f5226..117b4c642b 100644 --- a/app/test_helpers.go +++ b/app/test_helpers.go @@ -37,11 +37,11 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/evmos/evmos/v11/encoding" - feemarkettypes "github.com/evmos/evmos/v11/x/feemarket/types" + "github.com/evmos/evmos/v12/encoding" + feemarkettypes "github.com/evmos/evmos/v12/x/feemarket/types" - "github.com/evmos/evmos/v11/cmd/config" - "github.com/evmos/evmos/v11/utils" + "github.com/evmos/evmos/v12/cmd/config" + "github.com/evmos/evmos/v12/utils" ) func init() { diff --git a/app/upgrades/v11/upgrades.go b/app/upgrades/v11/upgrades.go index c7045228c8..4e97b3d59d 100644 --- a/app/upgrades/v11/upgrades.go +++ b/app/upgrades/v11/upgrades.go @@ -44,7 +44,7 @@ import ( errorsmod "cosmossdk.io/errors" errortypes "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/evmos/evmos/v11/utils" + "github.com/evmos/evmos/v12/utils" ) // CreateUpgradeHandler creates an SDK upgrade handler for v11 diff --git a/app/upgrades/v11/upgrades_test.go b/app/upgrades/v11/upgrades_test.go index 009c9f2404..18e0963743 100644 --- a/app/upgrades/v11/upgrades_test.go +++ b/app/upgrades/v11/upgrades_test.go @@ -12,17 +12,17 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" ibctypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" - "github.com/evmos/evmos/v11/app" - v11 "github.com/evmos/evmos/v11/app/upgrades/v11" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - "github.com/evmos/evmos/v11/testutil" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - feemarkettypes "github.com/evmos/evmos/v11/x/feemarket/types" + "github.com/evmos/evmos/v12/app" + v11 "github.com/evmos/evmos/v12/app/upgrades/v11" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/testutil" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + feemarkettypes "github.com/evmos/evmos/v12/x/feemarket/types" "github.com/stretchr/testify/suite" stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/evmos/evmos/v11/utils" + "github.com/evmos/evmos/v12/utils" "github.com/tendermint/tendermint/crypto/tmhash" tmproto "github.com/tendermint/tendermint/proto/tendermint/types" tmversion "github.com/tendermint/tendermint/proto/tendermint/version" diff --git a/app/upgrades/v12/upgrades.go b/app/upgrades/v12/upgrades.go index a3c96a8a95..06c3bdc452 100644 --- a/app/upgrades/v12/upgrades.go +++ b/app/upgrades/v12/upgrades.go @@ -24,7 +24,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" distrKeeper "github.com/cosmos/cosmos-sdk/x/distribution/keeper" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - "github.com/evmos/evmos/v11/utils" + "github.com/evmos/evmos/v12/utils" ) // CreateUpgradeHandler creates an SDK upgrade handler for v12 diff --git a/app/upgrades/v12/upgrades_test.go b/app/upgrades/v12/upgrades_test.go index d15c61c71f..0cd9cde986 100644 --- a/app/upgrades/v12/upgrades_test.go +++ b/app/upgrades/v12/upgrades_test.go @@ -10,13 +10,13 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - "github.com/evmos/evmos/v11/testutil" - feemarkettypes "github.com/evmos/evmos/v11/x/feemarket/types" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/testutil" + feemarkettypes "github.com/evmos/evmos/v12/x/feemarket/types" - "github.com/evmos/evmos/v11/app" - v12 "github.com/evmos/evmos/v11/app/upgrades/v12" - "github.com/evmos/evmos/v11/utils" + "github.com/evmos/evmos/v12/app" + v12 "github.com/evmos/evmos/v12/app/upgrades/v12" + "github.com/evmos/evmos/v12/utils" ) type UpgradeTestSuite struct { diff --git a/app/upgrades/v8/upgrades_test.go b/app/upgrades/v8/upgrades_test.go index 7bd33b92a7..8972cb3db4 100644 --- a/app/upgrades/v8/upgrades_test.go +++ b/app/upgrades/v8/upgrades_test.go @@ -13,10 +13,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - feemarkettypes "github.com/evmos/evmos/v11/x/feemarket/types" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + feemarkettypes "github.com/evmos/evmos/v12/x/feemarket/types" - "github.com/evmos/evmos/v11/app" + "github.com/evmos/evmos/v12/app" ) type UpgradeTestSuite struct { diff --git a/app/upgrades/v9/upgrades.go b/app/upgrades/v9/upgrades.go index b5b13c0748..cb00c97888 100644 --- a/app/upgrades/v9/upgrades.go +++ b/app/upgrades/v9/upgrades.go @@ -24,7 +24,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" distrKeeper "github.com/cosmos/cosmos-sdk/x/distribution/keeper" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - "github.com/evmos/evmos/v11/utils" + "github.com/evmos/evmos/v12/utils" ) // CreateUpgradeHandler creates an SDK upgrade handler for v9 diff --git a/app/upgrades/v9/upgrades_test.go b/app/upgrades/v9/upgrades_test.go index 23812c5884..4781fd8358 100644 --- a/app/upgrades/v9/upgrades_test.go +++ b/app/upgrades/v9/upgrades_test.go @@ -14,13 +14,13 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - feemarkettypes "github.com/evmos/evmos/v11/x/feemarket/types" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + feemarkettypes "github.com/evmos/evmos/v12/x/feemarket/types" - "github.com/evmos/evmos/v11/app" - v9 "github.com/evmos/evmos/v11/app/upgrades/v9" - "github.com/evmos/evmos/v11/utils" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/app" + v9 "github.com/evmos/evmos/v12/app/upgrades/v9" + "github.com/evmos/evmos/v12/utils" + "github.com/evmos/evmos/v12/x/erc20/types" ) type UpgradeTestSuite struct { diff --git a/app/upgrades/v9_1/upgrades.go b/app/upgrades/v9_1/upgrades.go index cd074c3336..f25e166e9b 100644 --- a/app/upgrades/v9_1/upgrades.go +++ b/app/upgrades/v9_1/upgrades.go @@ -26,7 +26,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" distrKeeper "github.com/cosmos/cosmos-sdk/x/distribution/keeper" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - "github.com/evmos/evmos/v11/utils" + "github.com/evmos/evmos/v12/utils" ) // CreateUpgradeHandler creates an SDK upgrade handler for v9 diff --git a/app/upgrades/v9_1/upgrades_test.go b/app/upgrades/v9_1/upgrades_test.go index 1d655dda65..5ba162bef0 100644 --- a/app/upgrades/v9_1/upgrades_test.go +++ b/app/upgrades/v9_1/upgrades_test.go @@ -15,13 +15,13 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - feemarkettypes "github.com/evmos/evmos/v11/x/feemarket/types" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + feemarkettypes "github.com/evmos/evmos/v12/x/feemarket/types" - "github.com/evmos/evmos/v11/app" - v9 "github.com/evmos/evmos/v11/app/upgrades/v9_1" - "github.com/evmos/evmos/v11/utils" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/app" + v9 "github.com/evmos/evmos/v12/app/upgrades/v9_1" + "github.com/evmos/evmos/v12/utils" + "github.com/evmos/evmos/v12/x/erc20/types" ) type UpgradeTestSuite struct { diff --git a/client/config.go b/client/config.go index 11e4c80f9a..dfb0159d66 100644 --- a/client/config.go +++ b/client/config.go @@ -27,7 +27,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" - "github.com/evmos/evmos/v11/types" + "github.com/evmos/evmos/v12/types" ) // InitConfig adds the chain-id, encoding and output flags to the persistent flag set. diff --git a/client/export.go b/client/export.go index 08f614452c..f985c3d692 100644 --- a/client/export.go +++ b/client/export.go @@ -28,8 +28,8 @@ import ( "github.com/spf13/cobra" "github.com/cosmos/cosmos-sdk/crypto/keyring" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - "github.com/evmos/evmos/v11/crypto/hd" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/crypto/hd" ) // UnsafeExportEthKeyCommand exports a key with the given name as a private key in hex format. diff --git a/client/import.go b/client/import.go index 7732e81e5e..6260a5819e 100644 --- a/client/import.go +++ b/client/import.go @@ -24,9 +24,9 @@ import ( "github.com/cosmos/cosmos-sdk/client/input" "github.com/cosmos/cosmos-sdk/crypto" "github.com/ethereum/go-ethereum/common" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" - "github.com/evmos/evmos/v11/crypto/hd" + "github.com/evmos/evmos/v12/crypto/hd" ) // UnsafeImportKeyCommand imports private keys from a keyfile. diff --git a/client/keys.go b/client/keys.go index c64e27084e..10ba6b544e 100644 --- a/client/keys.go +++ b/client/keys.go @@ -25,8 +25,8 @@ import ( "github.com/tendermint/tendermint/libs/cli" "github.com/cosmos/cosmos-sdk/crypto/keyring" - clientkeys "github.com/evmos/evmos/v11/client/keys" - "github.com/evmos/evmos/v11/crypto/hd" + clientkeys "github.com/evmos/evmos/v12/client/keys" + "github.com/evmos/evmos/v12/crypto/hd" ) // KeyCommands registers a sub-tree of commands to interact with diff --git a/client/keys/add.go b/client/keys/add.go index b26ebb05ab..b9d0229a94 100644 --- a/client/keys/add.go +++ b/client/keys/add.go @@ -22,7 +22,7 @@ import ( "fmt" "sort" - cryptohd "github.com/evmos/evmos/v11/crypto/hd" + cryptohd "github.com/evmos/evmos/v12/crypto/hd" bip39 "github.com/cosmos/go-bip39" "github.com/spf13/cobra" diff --git a/client/testnet.go b/client/testnet.go index 4c5117bdd2..d16f33f8d8 100644 --- a/client/testnet.go +++ b/client/testnet.go @@ -53,13 +53,13 @@ import ( mintypes "github.com/cosmos/cosmos-sdk/x/mint/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/evmos/evmos/v11/crypto/hd" - "github.com/evmos/evmos/v11/server/config" - srvflags "github.com/evmos/evmos/v11/server/flags" - evmostypes "github.com/evmos/evmos/v11/types" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/crypto/hd" + "github.com/evmos/evmos/v12/server/config" + srvflags "github.com/evmos/evmos/v12/server/flags" + evmostypes "github.com/evmos/evmos/v12/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" - "github.com/evmos/evmos/v11/testutil/network" + "github.com/evmos/evmos/v12/testutil/network" ) var ( diff --git a/cmd/config/config.go b/cmd/config/config.go index 8c5a197e6a..80a065f216 100644 --- a/cmd/config/config.go +++ b/cmd/config/config.go @@ -19,7 +19,7 @@ package config import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/types" + "github.com/evmos/evmos/v12/types" ) const ( diff --git a/cmd/evmosd/cmd_test.go b/cmd/evmosd/cmd_test.go index daba22f0c9..1cd4c8876d 100644 --- a/cmd/evmosd/cmd_test.go +++ b/cmd/evmosd/cmd_test.go @@ -9,9 +9,9 @@ import ( "github.com/cosmos/cosmos-sdk/x/genutil/client/cli" "github.com/stretchr/testify/require" - "github.com/evmos/evmos/v11/app" - evmosd "github.com/evmos/evmos/v11/cmd/evmosd" - "github.com/evmos/evmos/v11/utils" + "github.com/evmos/evmos/v12/app" + evmosd "github.com/evmos/evmos/v12/cmd/evmosd" + "github.com/evmos/evmos/v12/utils" ) func TestInitCmd(t *testing.T) { diff --git a/cmd/evmosd/genaccounts.go b/cmd/evmosd/genaccounts.go index a31b9984a3..30b7e7b472 100644 --- a/cmd/evmosd/genaccounts.go +++ b/cmd/evmosd/genaccounts.go @@ -36,13 +36,13 @@ import ( "github.com/cosmos/cosmos-sdk/x/genutil" genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types" - "github.com/evmos/evmos/v11/types" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" - evmoskr "github.com/evmos/evmos/v11/crypto/keyring" + evmoskr "github.com/evmos/evmos/v12/crypto/keyring" - vestingcli "github.com/evmos/evmos/v11/x/vesting/client/cli" - vestingtypes "github.com/evmos/evmos/v11/x/vesting/types" + vestingcli "github.com/evmos/evmos/v12/x/vesting/client/cli" + vestingtypes "github.com/evmos/evmos/v12/x/vesting/types" ) const ( diff --git a/cmd/evmosd/main.go b/cmd/evmosd/main.go index a1c82618db..bd2e00238e 100644 --- a/cmd/evmosd/main.go +++ b/cmd/evmosd/main.go @@ -23,8 +23,8 @@ import ( svrcmd "github.com/cosmos/cosmos-sdk/server/cmd" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/app" - cmdcfg "github.com/evmos/evmos/v11/cmd/config" + "github.com/evmos/evmos/v12/app" + cmdcfg "github.com/evmos/evmos/v12/cmd/config" ) func main() { diff --git a/cmd/evmosd/migrate.go b/cmd/evmosd/migrate.go index a5588ab61a..de0dd1d452 100644 --- a/cmd/evmosd/migrate.go +++ b/cmd/evmosd/migrate.go @@ -32,7 +32,7 @@ import ( "github.com/cosmos/cosmos-sdk/version" genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types" - "github.com/evmos/evmos/v11/utils" + "github.com/evmos/evmos/v12/utils" ) // FlagGenesisTime defines the genesis time in string format diff --git a/cmd/evmosd/root.go b/cmd/evmosd/root.go index 285107cbb9..9a4c2aaa6f 100644 --- a/cmd/evmosd/root.go +++ b/cmd/evmosd/root.go @@ -51,17 +51,17 @@ import ( "github.com/cosmos/cosmos-sdk/x/crisis" genutilcli "github.com/cosmos/cosmos-sdk/x/genutil/client/cli" - evmosclient "github.com/evmos/evmos/v11/client" - "github.com/evmos/evmos/v11/client/debug" - "github.com/evmos/evmos/v11/encoding" - "github.com/evmos/evmos/v11/ethereum/eip712" - evmosserver "github.com/evmos/evmos/v11/server" - servercfg "github.com/evmos/evmos/v11/server/config" - srvflags "github.com/evmos/evmos/v11/server/flags" - - "github.com/evmos/evmos/v11/app" - cmdcfg "github.com/evmos/evmos/v11/cmd/config" - evmoskr "github.com/evmos/evmos/v11/crypto/keyring" + evmosclient "github.com/evmos/evmos/v12/client" + "github.com/evmos/evmos/v12/client/debug" + "github.com/evmos/evmos/v12/encoding" + "github.com/evmos/evmos/v12/ethereum/eip712" + evmosserver "github.com/evmos/evmos/v12/server" + servercfg "github.com/evmos/evmos/v12/server/config" + srvflags "github.com/evmos/evmos/v12/server/flags" + + "github.com/evmos/evmos/v12/app" + cmdcfg "github.com/evmos/evmos/v12/cmd/config" + evmoskr "github.com/evmos/evmos/v12/crypto/keyring" ) const ( diff --git a/cmd/evmosd/testnet.go b/cmd/evmosd/testnet.go index 3b319a7c39..665fc1c626 100644 --- a/cmd/evmosd/testnet.go +++ b/cmd/evmosd/testnet.go @@ -53,16 +53,16 @@ import ( govv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/evmos/evmos/v11/crypto/hd" - "github.com/evmos/evmos/v11/server/config" - srvflags "github.com/evmos/evmos/v11/server/flags" + "github.com/evmos/evmos/v12/crypto/hd" + "github.com/evmos/evmos/v12/server/config" + srvflags "github.com/evmos/evmos/v12/server/flags" - evmostypes "github.com/evmos/evmos/v11/types" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + evmostypes "github.com/evmos/evmos/v12/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" - cmdcfg "github.com/evmos/evmos/v11/cmd/config" - evmoskr "github.com/evmos/evmos/v11/crypto/keyring" - "github.com/evmos/evmos/v11/testutil/network" + cmdcfg "github.com/evmos/evmos/v12/cmd/config" + evmoskr "github.com/evmos/evmos/v12/crypto/keyring" + "github.com/evmos/evmos/v12/testutil/network" ) var ( diff --git a/contracts/erc20.go b/contracts/erc20.go index 34a35b5884..301b467c9b 100644 --- a/contracts/erc20.go +++ b/contracts/erc20.go @@ -21,9 +21,9 @@ import ( "encoding/json" "github.com/ethereum/go-ethereum/common" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/x/erc20/types" ) var ( diff --git a/contracts/erc20DirectBalanceManipulation.go b/contracts/erc20DirectBalanceManipulation.go index 827bc85f99..0a48d69970 100644 --- a/contracts/erc20DirectBalanceManipulation.go +++ b/contracts/erc20DirectBalanceManipulation.go @@ -5,9 +5,9 @@ import ( "encoding/json" "github.com/ethereum/go-ethereum/common" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/x/erc20/types" ) // This is an evil token. Whenever an A -> B transfer is called, diff --git a/contracts/erc20burnable.go b/contracts/erc20burnable.go index 0b6890696e..8ba7a511ae 100644 --- a/contracts/erc20burnable.go +++ b/contracts/erc20burnable.go @@ -4,7 +4,7 @@ import ( _ "embed" // embed compiled smart contract "encoding/json" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" ) var ( diff --git a/contracts/erc20maliciousdelayed.go b/contracts/erc20maliciousdelayed.go index 7c7072a5b0..ad557bf7c6 100644 --- a/contracts/erc20maliciousdelayed.go +++ b/contracts/erc20maliciousdelayed.go @@ -5,9 +5,9 @@ import ( "encoding/json" "github.com/ethereum/go-ethereum/common" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/x/erc20/types" ) // This is an evil token. Whenever an A -> B transfer is called, diff --git a/crypto/codec/amino.go b/crypto/codec/amino.go index 6dbe3882ea..8a73543d22 100644 --- a/crypto/codec/amino.go +++ b/crypto/codec/amino.go @@ -22,7 +22,7 @@ import ( cryptocodec "github.com/cosmos/cosmos-sdk/crypto/codec" "github.com/cosmos/cosmos-sdk/crypto/keyring" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" ) // RegisterCrypto registers all crypto dependency types with the provided Amino diff --git a/crypto/codec/codec.go b/crypto/codec/codec.go index 09fdc71f3d..2c87cabd7c 100644 --- a/crypto/codec/codec.go +++ b/crypto/codec/codec.go @@ -19,7 +19,7 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" ) // RegisterInterfaces register the Evmos key concrete types. diff --git a/crypto/ethsecp256k1/ethsecp256k1.go b/crypto/ethsecp256k1/ethsecp256k1.go index 1851d265eb..fa078b1824 100644 --- a/crypto/ethsecp256k1/ethsecp256k1.go +++ b/crypto/ethsecp256k1/ethsecp256k1.go @@ -27,7 +27,7 @@ import ( cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" errortypes "github.com/cosmos/cosmos-sdk/types/errors" "github.com/ethereum/go-ethereum/crypto" - "github.com/evmos/evmos/v11/ethereum/eip712" + "github.com/evmos/evmos/v12/ethereum/eip712" tmcrypto "github.com/tendermint/tendermint/crypto" ) diff --git a/crypto/hd/algorithm.go b/crypto/hd/algorithm.go index 591cbdcc6b..ae0e00a2f0 100644 --- a/crypto/hd/algorithm.go +++ b/crypto/hd/algorithm.go @@ -27,7 +27,7 @@ import ( "github.com/cosmos/cosmos-sdk/crypto/keyring" cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" ) const ( diff --git a/crypto/hd/algorithm_test.go b/crypto/hd/algorithm_test.go index 0c5b66c67b..d14feaeca0 100644 --- a/crypto/hd/algorithm_test.go +++ b/crypto/hd/algorithm_test.go @@ -15,9 +15,9 @@ import ( "github.com/cosmos/cosmos-sdk/codec/types" "github.com/cosmos/cosmos-sdk/crypto/keyring" - cryptocodec "github.com/evmos/evmos/v11/crypto/codec" - enccodec "github.com/evmos/evmos/v11/encoding/codec" - evmostypes "github.com/evmos/evmos/v11/types" + cryptocodec "github.com/evmos/evmos/v12/crypto/codec" + enccodec "github.com/evmos/evmos/v12/encoding/codec" + evmostypes "github.com/evmos/evmos/v12/types" ) var TestCodec amino.Codec diff --git a/crypto/hd/benchmark_test.go b/crypto/hd/benchmark_test.go index 2d01950aa6..bbc83d2341 100644 --- a/crypto/hd/benchmark_test.go +++ b/crypto/hd/benchmark_test.go @@ -4,7 +4,7 @@ import ( "testing" "github.com/cosmos/cosmos-sdk/crypto/keyring" - "github.com/evmos/evmos/v11/types" + "github.com/evmos/evmos/v12/types" ) func BenchmarkEthSecp256k1Algo_Derive(b *testing.B) { diff --git a/crypto/keyring/options.go b/crypto/keyring/options.go index a88a9a95d0..1276456ce6 100644 --- a/crypto/keyring/options.go +++ b/crypto/keyring/options.go @@ -22,8 +22,8 @@ import ( "github.com/cosmos/cosmos-sdk/crypto/types" "github.com/evmos/evmos-ledger-go/ledger" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - "github.com/evmos/evmos/v11/crypto/hd" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/crypto/hd" ) // AppName defines the Ledger app used for signing. Evmos uses the Ethereum app diff --git a/encoding/codec/codec.go b/encoding/codec/codec.go index 2210e89438..5aa74ec569 100644 --- a/encoding/codec/codec.go +++ b/encoding/codec/codec.go @@ -21,8 +21,8 @@ import ( "github.com/cosmos/cosmos-sdk/std" sdk "github.com/cosmos/cosmos-sdk/types" - cryptocodec "github.com/evmos/evmos/v11/crypto/codec" - "github.com/evmos/evmos/v11/types" + cryptocodec "github.com/evmos/evmos/v12/crypto/codec" + "github.com/evmos/evmos/v12/types" ) // RegisterLegacyAminoCodec registers Interfaces from types, crypto, and SDK std. diff --git a/encoding/config.go b/encoding/config.go index 03579ae341..c6eac7aa4d 100644 --- a/encoding/config.go +++ b/encoding/config.go @@ -22,7 +22,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" "github.com/cosmos/cosmos-sdk/x/auth/tx" - enccodec "github.com/evmos/evmos/v11/encoding/codec" + enccodec "github.com/evmos/evmos/v12/encoding/codec" ) // MakeConfig creates an EncodingConfig for testing diff --git a/encoding/config_test.go b/encoding/config_test.go index 3e036c5423..d27616be73 100644 --- a/encoding/config_test.go +++ b/encoding/config_test.go @@ -8,10 +8,10 @@ import ( ethtypes "github.com/ethereum/go-ethereum/core/types" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/encoding" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/encoding" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" ) func TestTxEncoding(t *testing.T) { diff --git a/ethereum/eip712/eip712_fuzzer_test.go b/ethereum/eip712/eip712_fuzzer_test.go index f1e97b1dd8..b2ecd11b62 100644 --- a/ethereum/eip712/eip712_fuzzer_test.go +++ b/ethereum/eip712/eip712_fuzzer_test.go @@ -6,7 +6,7 @@ import ( rand "github.com/tendermint/tendermint/libs/rand" - "github.com/evmos/evmos/v11/ethereum/eip712" + "github.com/evmos/evmos/v12/ethereum/eip712" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/ethereum/eip712/eip712_test.go b/ethereum/eip712/eip712_test.go index cbf15a4b30..59cde68326 100644 --- a/ethereum/eip712/eip712_test.go +++ b/ethereum/eip712/eip712_test.go @@ -11,22 +11,22 @@ import ( chainparams "github.com/cosmos/cosmos-sdk/simapp/params" "github.com/ethereum/go-ethereum/crypto" "github.com/ethereum/go-ethereum/signer/core/apitypes" - "github.com/evmos/evmos/v11/ethereum/eip712" + "github.com/evmos/evmos/v12/ethereum/eip712" "github.com/tidwall/gjson" "github.com/tidwall/sjson" cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" txtypes "github.com/cosmos/cosmos-sdk/types/tx" "github.com/cosmos/cosmos-sdk/types/tx/signing" authsigning "github.com/cosmos/cosmos-sdk/x/auth/signing" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/cmd/config" - "github.com/evmos/evmos/v11/encoding" - "github.com/evmos/evmos/v11/utils" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/cmd/config" + "github.com/evmos/evmos/v12/encoding" + "github.com/evmos/evmos/v12/utils" distributiontypes "github.com/cosmos/cosmos-sdk/x/distribution/types" govtypesv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" diff --git a/ethereum/eip712/encoding.go b/ethereum/eip712/encoding.go index a3167d47c0..36ed9f4e8e 100644 --- a/ethereum/eip712/encoding.go +++ b/ethereum/eip712/encoding.go @@ -26,7 +26,7 @@ import ( txTypes "github.com/cosmos/cosmos-sdk/types/tx" apitypes "github.com/ethereum/go-ethereum/signer/core/apitypes" - evmostypes "github.com/evmos/evmos/v11/types" + evmostypes "github.com/evmos/evmos/v12/types" "github.com/cosmos/cosmos-sdk/codec" ) diff --git a/ethereum/eip712/encoding_legacy.go b/ethereum/eip712/encoding_legacy.go index 0e9737e17d..fb0fabf290 100644 --- a/ethereum/eip712/encoding_legacy.go +++ b/ethereum/eip712/encoding_legacy.go @@ -26,7 +26,7 @@ import ( txTypes "github.com/cosmos/cosmos-sdk/types/tx" apitypes "github.com/ethereum/go-ethereum/signer/core/apitypes" - evmos "github.com/evmos/evmos/v11/types" + evmos "github.com/evmos/evmos/v12/types" ) type aminoMessage struct { diff --git a/ethereum/eip712/preprocess.go b/ethereum/eip712/preprocess.go index ad8e50c431..9db1e18195 100644 --- a/ethereum/eip712/preprocess.go +++ b/ethereum/eip712/preprocess.go @@ -23,7 +23,7 @@ import ( cosmoskr "github.com/cosmos/cosmos-sdk/crypto/keyring" "github.com/cosmos/cosmos-sdk/types/tx/signing" authtx "github.com/cosmos/cosmos-sdk/x/auth/tx" - "github.com/evmos/evmos/v11/types" + "github.com/evmos/evmos/v12/types" ) // PreprocessLedgerTx reformats Ledger-signed Cosmos transactions to match the fork expected by Ethermint diff --git a/ethereum/eip712/preprocess_test.go b/ethereum/eip712/preprocess_test.go index c340fe6857..56dc63ccf6 100644 --- a/ethereum/eip712/preprocess_test.go +++ b/ethereum/eip712/preprocess_test.go @@ -14,13 +14,13 @@ import ( "github.com/cosmos/cosmos-sdk/x/auth/ante" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/cmd/config" - "github.com/evmos/evmos/v11/encoding" - "github.com/evmos/evmos/v11/ethereum/eip712" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/types" - "github.com/evmos/evmos/v11/utils" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/cmd/config" + "github.com/evmos/evmos/v12/encoding" + "github.com/evmos/evmos/v12/ethereum/eip712" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/types" + "github.com/evmos/evmos/v12/utils" "github.com/stretchr/testify/require" ) diff --git a/go.mod b/go.mod index 08f6652c33..ec1031b7db 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/evmos/evmos/v11 +module github.com/evmos/evmos/v12 go 1.20 @@ -100,6 +100,7 @@ require ( github.com/dustin/go-humanize v1.0.0 // indirect github.com/dvsekhvalnov/jose2go v1.5.0 // indirect github.com/edsrzf/mmap-go v1.0.0 // indirect + github.com/evmos/evmos/v11 v11.0.0-20230209000703-068762f0a69e // indirect github.com/felixge/httpsnoop v1.0.1 // indirect github.com/fsnotify/fsnotify v1.6.0 // indirect github.com/gballet/go-libpcsclite v0.0.0-20190607065134-2772fd86a8ff // indirect diff --git a/go.sum b/go.sum index 0c021a9191..95334be106 100644 --- a/go.sum +++ b/go.sum @@ -477,6 +477,8 @@ github.com/evmos/cosmos-sdk v0.46.11-ledger h1:kx6vR+c55HV0or32tjgDenqOTAwfYB3FR github.com/evmos/cosmos-sdk v0.46.11-ledger/go.mod h1:opDBTPiPrOo781a1zT1Tadh2Runcm5Ko/KXI1hZCzRo= github.com/evmos/evmos-ledger-go v0.2.2 h1:IJYDuUp+fQ5biw8qhoTRKz2RMyi3Xmxf30wxC7hHZ9w= github.com/evmos/evmos-ledger-go v0.2.2/go.mod h1:MkQ0HDbpgG+0XFaYw5ZioUF+5zHKPVNwqsz2LR9Ae44= +github.com/evmos/evmos/v11 v11.0.0-20230209000703-068762f0a69e h1:z2bNWqBPYZeexNbOY1DNdRh9rXBk8jawXvN2ZTvfuCs= +github.com/evmos/evmos/v11 v11.0.0-20230209000703-068762f0a69e/go.mod h1:xN2pJRye6J73Ju633hrLkyYj6wMEF/wwiELaw4zRIUw= github.com/evmos/go-ethereum v1.10.26 h1:7wlczxUWTwhzJJUyh3Kkqt3/5fdSJzh8c42boc9GuII= github.com/evmos/go-ethereum v1.10.26/go.mod h1:EYFyF19u3ezGLD4RqOkLq+ZCXzYbLoNDdZlMt7kyKFg= github.com/facebookgo/ensure v0.0.0-20200202191622-63f1cf65ac4c h1:8ISkoahWXwZR41ois5lSJBSVw4D0OV19Ht/JSTzvSv0= diff --git a/ibc/testing/app.go b/ibc/testing/app.go index de50c36e42..4fdeeabd0c 100644 --- a/ibc/testing/app.go +++ b/ibc/testing/app.go @@ -35,9 +35,9 @@ import ( ibcgotesting "github.com/cosmos/ibc-go/v6/testing" - evmosapp "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/types" - "github.com/evmos/evmos/v11/utils" + evmosapp "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/types" + "github.com/evmos/evmos/v12/utils" ) var DefaultTestingAppInit func() (ibcgotesting.TestingApp, map[string]json.RawMessage) = evmosapp.SetupTestingApp diff --git a/ibc/testing/chain.go b/ibc/testing/chain.go index 58ffd3f697..3fa44b6dae 100644 --- a/ibc/testing/chain.go +++ b/ibc/testing/chain.go @@ -34,10 +34,10 @@ import ( ibcgotesting "github.com/cosmos/ibc-go/v6/testing" "github.com/cosmos/ibc-go/v6/testing/mock" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - evmostypes "github.com/evmos/evmos/v11/types" - "github.com/evmos/evmos/v11/utils" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + evmostypes "github.com/evmos/evmos/v12/types" + "github.com/evmos/evmos/v12/utils" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" ) // ChainIDPrefix defines the default chain ID prefix for Evmos test chains diff --git a/ibc/testing/coordinator.go b/ibc/testing/coordinator.go index b34fe3b671..b08e47fdad 100644 --- a/ibc/testing/coordinator.go +++ b/ibc/testing/coordinator.go @@ -26,7 +26,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" ibctesting "github.com/cosmos/ibc-go/v6/testing" ibchelpers "github.com/cosmos/ibc-go/v6/testing/simapp/helpers" - "github.com/evmos/evmos/v11/app" + "github.com/evmos/evmos/v12/app" "github.com/stretchr/testify/require" ) diff --git a/ibc/utils.go b/ibc/utils.go index 65e2875105..7edb7fe525 100644 --- a/ibc/utils.go +++ b/ibc/utils.go @@ -24,7 +24,7 @@ import ( transfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" - "github.com/evmos/evmos/v11/utils" + "github.com/evmos/evmos/v12/utils" ) // GetTransferSenderRecipient returns the sender and recipient sdk.AccAddresses diff --git a/ibc/utils_test.go b/ibc/utils_test.go index 8e0eb8bc81..9cdb811a44 100644 --- a/ibc/utils_test.go +++ b/ibc/utils_test.go @@ -3,7 +3,7 @@ package ibc import ( "testing" - "github.com/evmos/evmos/v11/x/claims/types" + "github.com/evmos/evmos/v12/x/claims/types" "github.com/stretchr/testify/require" sdk "github.com/cosmos/cosmos-sdk/types" @@ -11,7 +11,7 @@ import ( transfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" ibctesting "github.com/cosmos/ibc-go/v6/testing" - teststypes "github.com/evmos/evmos/v11/types/tests" + teststypes "github.com/evmos/evmos/v12/types/tests" ) func init() { diff --git a/indexer/kv_indexer.go b/indexer/kv_indexer.go index a882178ebb..30c115c330 100644 --- a/indexer/kv_indexer.go +++ b/indexer/kv_indexer.go @@ -24,14 +24,14 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authante "github.com/cosmos/cosmos-sdk/x/auth/ante" "github.com/ethereum/go-ethereum/common" - rpctypes "github.com/evmos/evmos/v11/rpc/types" + rpctypes "github.com/evmos/evmos/v12/rpc/types" abci "github.com/tendermint/tendermint/abci/types" "github.com/tendermint/tendermint/libs/log" tmtypes "github.com/tendermint/tendermint/types" dbm "github.com/tendermint/tm-db" - evmostypes "github.com/evmos/evmos/v11/types" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + evmostypes "github.com/evmos/evmos/v12/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" ) const ( diff --git a/indexer/kv_indexer_test.go b/indexer/kv_indexer_test.go index 72bbdadb94..0c331ce0ba 100644 --- a/indexer/kv_indexer_test.go +++ b/indexer/kv_indexer_test.go @@ -8,13 +8,13 @@ import ( "github.com/cosmos/cosmos-sdk/simapp/params" "github.com/ethereum/go-ethereum/common" ethtypes "github.com/ethereum/go-ethereum/core/types" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - evmenc "github.com/evmos/evmos/v11/encoding" - "github.com/evmos/evmos/v11/indexer" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/utils" - "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + evmenc "github.com/evmos/evmos/v12/encoding" + "github.com/evmos/evmos/v12/indexer" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/utils" + "github.com/evmos/evmos/v12/x/evm/types" "github.com/stretchr/testify/require" abci "github.com/tendermint/tendermint/abci/types" tmlog "github.com/tendermint/tendermint/libs/log" diff --git a/proto/ethermint/crypto/v1/ethsecp256k1/keys.proto b/proto/ethermint/crypto/v1/ethsecp256k1/keys.proto index e9caf2caa8..0fa2b5a28e 100644 --- a/proto/ethermint/crypto/v1/ethsecp256k1/keys.proto +++ b/proto/ethermint/crypto/v1/ethsecp256k1/keys.proto @@ -3,7 +3,7 @@ package ethermint.crypto.v1.ethsecp256k1; import "gogoproto/gogo.proto"; -option go_package = "github.com/evmos/evmos/v11/crypto/ethsecp256k1"; +option go_package = "github.com/evmos/evmos/v12/crypto/ethsecp256k1"; // PubKey defines a type alias for an ecdsa.PublicKey that implements // Tendermint's PubKey interface. It represents the 33-byte compressed public diff --git a/proto/ethermint/evm/v1/events.proto b/proto/ethermint/evm/v1/events.proto index aa95e2adf6..572b3308c7 100644 --- a/proto/ethermint/evm/v1/events.proto +++ b/proto/ethermint/evm/v1/events.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package ethermint.evm.v1; -option go_package = "github.com/evmos/evmos/v11/x/evm/types"; +option go_package = "github.com/evmos/evmos/v12/x/evm/types"; // EventEthereumTx defines the event for an Ethereum transaction message EventEthereumTx { diff --git a/proto/ethermint/evm/v1/evm.proto b/proto/ethermint/evm/v1/evm.proto index 3cac96bdf6..40ac1f7137 100644 --- a/proto/ethermint/evm/v1/evm.proto +++ b/proto/ethermint/evm/v1/evm.proto @@ -3,7 +3,7 @@ package ethermint.evm.v1; import "gogoproto/gogo.proto"; -option go_package = "github.com/evmos/evmos/v11/x/evm/types"; +option go_package = "github.com/evmos/evmos/v12/x/evm/types"; // Params defines the EVM module parameters message Params { diff --git a/proto/ethermint/evm/v1/genesis.proto b/proto/ethermint/evm/v1/genesis.proto index 40434fd0f8..c3d311b6ee 100644 --- a/proto/ethermint/evm/v1/genesis.proto +++ b/proto/ethermint/evm/v1/genesis.proto @@ -4,7 +4,7 @@ package ethermint.evm.v1; import "ethermint/evm/v1/evm.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/evmos/evmos/v11/x/evm/types"; +option go_package = "github.com/evmos/evmos/v12/x/evm/types"; // GenesisState defines the evm module's genesis state. message GenesisState { diff --git a/proto/ethermint/evm/v1/query.proto b/proto/ethermint/evm/v1/query.proto index d66f5ab296..6cf3db52af 100644 --- a/proto/ethermint/evm/v1/query.proto +++ b/proto/ethermint/evm/v1/query.proto @@ -8,7 +8,7 @@ import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; import "google/protobuf/timestamp.proto"; -option go_package = "github.com/evmos/evmos/v11/x/evm/types"; +option go_package = "github.com/evmos/evmos/v12/x/evm/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/ethermint/evm/v1/tx.proto b/proto/ethermint/evm/v1/tx.proto index 5ec3c55897..0071686c17 100644 --- a/proto/ethermint/evm/v1/tx.proto +++ b/proto/ethermint/evm/v1/tx.proto @@ -8,7 +8,7 @@ import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; import "google/protobuf/any.proto"; -option go_package = "github.com/evmos/evmos/v11/x/evm/types"; +option go_package = "github.com/evmos/evmos/v12/x/evm/types"; // Msg defines the evm Msg service. service Msg { diff --git a/proto/ethermint/feemarket/v1/events.proto b/proto/ethermint/feemarket/v1/events.proto index 6510262fc6..4fefb0c10d 100644 --- a/proto/ethermint/feemarket/v1/events.proto +++ b/proto/ethermint/feemarket/v1/events.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package ethermint.feemarket.v1; -option go_package = "github.com/evmos/evmos/v11/x/feemarket/types"; +option go_package = "github.com/evmos/evmos/v12/x/feemarket/types"; // EventFeeMarket is the event type for the fee market module message EventFeeMarket { diff --git a/proto/ethermint/feemarket/v1/feemarket.proto b/proto/ethermint/feemarket/v1/feemarket.proto index 95e6b2dd47..7458c15f6a 100644 --- a/proto/ethermint/feemarket/v1/feemarket.proto +++ b/proto/ethermint/feemarket/v1/feemarket.proto @@ -3,7 +3,7 @@ package ethermint.feemarket.v1; import "gogoproto/gogo.proto"; -option go_package = "github.com/evmos/evmos/v11/x/feemarket/types"; +option go_package = "github.com/evmos/evmos/v12/x/feemarket/types"; // Params defines the EVM module parameters message Params { diff --git a/proto/ethermint/feemarket/v1/genesis.proto b/proto/ethermint/feemarket/v1/genesis.proto index f297e796a4..a0dbe93336 100644 --- a/proto/ethermint/feemarket/v1/genesis.proto +++ b/proto/ethermint/feemarket/v1/genesis.proto @@ -4,7 +4,7 @@ package ethermint.feemarket.v1; import "ethermint/feemarket/v1/feemarket.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/evmos/evmos/v11/x/feemarket/types"; +option go_package = "github.com/evmos/evmos/v12/x/feemarket/types"; // GenesisState defines the feemarket module's genesis state. message GenesisState { diff --git a/proto/ethermint/feemarket/v1/query.proto b/proto/ethermint/feemarket/v1/query.proto index b8c0fca4c0..9634c062f8 100644 --- a/proto/ethermint/feemarket/v1/query.proto +++ b/proto/ethermint/feemarket/v1/query.proto @@ -5,7 +5,7 @@ import "ethermint/feemarket/v1/feemarket.proto"; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; -option go_package = "github.com/evmos/evmos/v11/x/feemarket/types"; +option go_package = "github.com/evmos/evmos/v12/x/feemarket/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/ethermint/feemarket/v1/tx.proto b/proto/ethermint/feemarket/v1/tx.proto index 1c825a8a02..ccbab2a420 100644 --- a/proto/ethermint/feemarket/v1/tx.proto +++ b/proto/ethermint/feemarket/v1/tx.proto @@ -6,7 +6,7 @@ import "cosmos_proto/cosmos.proto"; import "ethermint/feemarket/v1/feemarket.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/evmos/evmos/v11/x/feemarket/types"; +option go_package = "github.com/evmos/evmos/v12/x/feemarket/types"; // Msg defines the erc20 Msg service. service Msg { diff --git a/proto/ethermint/types/v1/account.proto b/proto/ethermint/types/v1/account.proto index 50ee3a3637..6f2eace11b 100644 --- a/proto/ethermint/types/v1/account.proto +++ b/proto/ethermint/types/v1/account.proto @@ -5,7 +5,7 @@ import "cosmos/auth/v1beta1/auth.proto"; import "cosmos_proto/cosmos.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/evmos/evmos/v11/types"; +option go_package = "github.com/evmos/evmos/v12/types"; // EthAccount implements the authtypes.AccountI interface and embeds an // authtypes.BaseAccount type. It is compatible with the auth AccountKeeper. diff --git a/proto/ethermint/types/v1/dynamic_fee.proto b/proto/ethermint/types/v1/dynamic_fee.proto index a55720391c..275bcc5b83 100644 --- a/proto/ethermint/types/v1/dynamic_fee.proto +++ b/proto/ethermint/types/v1/dynamic_fee.proto @@ -3,7 +3,7 @@ package ethermint.types.v1; import "gogoproto/gogo.proto"; -option go_package = "github.com/evmos/evmos/v11/types"; +option go_package = "github.com/evmos/evmos/v12/types"; // ExtensionOptionDynamicFeeTx is an extension option that specifies the maxPrioPrice for cosmos tx message ExtensionOptionDynamicFeeTx { diff --git a/proto/ethermint/types/v1/indexer.proto b/proto/ethermint/types/v1/indexer.proto index 7701517ff2..4d0b9b1665 100644 --- a/proto/ethermint/types/v1/indexer.proto +++ b/proto/ethermint/types/v1/indexer.proto @@ -3,7 +3,7 @@ package ethermint.types.v1; import "gogoproto/gogo.proto"; -option go_package = "github.com/evmos/evmos/v11/types"; +option go_package = "github.com/evmos/evmos/v12/types"; // TxResult is the value stored in eth tx indexer message TxResult { diff --git a/proto/ethermint/types/v1/web3.proto b/proto/ethermint/types/v1/web3.proto index 491332a2cd..f4ad6de205 100644 --- a/proto/ethermint/types/v1/web3.proto +++ b/proto/ethermint/types/v1/web3.proto @@ -3,7 +3,7 @@ package ethermint.types.v1; import "gogoproto/gogo.proto"; -option go_package = "github.com/evmos/evmos/v11/types"; +option go_package = "github.com/evmos/evmos/v12/types"; // ExtensionOptionsWeb3Tx is an extension option that specifies the typed chain id, // the fee payer as well as its signature data. diff --git a/proto/evmos/claims/v1/claims.proto b/proto/evmos/claims/v1/claims.proto index c9040ee39e..abbb8e41da 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/v11/x/claims/types"; +option go_package = "github.com/evmos/evmos/v12/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 226778b912..f03071d5cd 100644 --- a/proto/evmos/claims/v1/genesis.proto +++ b/proto/evmos/claims/v1/genesis.proto @@ -6,7 +6,7 @@ import "gogoproto/gogo.proto"; import "google/protobuf/duration.proto"; import "google/protobuf/timestamp.proto"; -option go_package = "github.com/evmos/evmos/v11/x/claims/types"; +option go_package = "github.com/evmos/evmos/v12/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 edd9afbea5..393a415077 100644 --- a/proto/evmos/claims/v1/query.proto +++ b/proto/evmos/claims/v1/query.proto @@ -8,7 +8,7 @@ import "evmos/claims/v1/genesis.proto"; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; -option go_package = "github.com/evmos/evmos/v11/x/claims/types"; +option go_package = "github.com/evmos/evmos/v12/x/claims/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/evmos/claims/v1/tx.proto b/proto/evmos/claims/v1/tx.proto index 80a11bdc7a..b8705c8d33 100644 --- a/proto/evmos/claims/v1/tx.proto +++ b/proto/evmos/claims/v1/tx.proto @@ -6,7 +6,7 @@ import "cosmos_proto/cosmos.proto"; import "evmos/claims/v1/genesis.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/evmos/evmos/v11/x/claims/types"; +option go_package = "github.com/evmos/evmos/v12/x/claims/types"; // Msg defines the claims Msg service. service Msg { diff --git a/proto/evmos/epochs/v1/genesis.proto b/proto/evmos/epochs/v1/genesis.proto index 3127dbf866..f3019dc447 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/v11/x/epochs/types"; +option go_package = "github.com/evmos/evmos/v12/x/epochs/types"; // EpochInfo defines the message interface containing the relevant informations about // an epoch. diff --git a/proto/evmos/epochs/v1/query.proto b/proto/evmos/epochs/v1/query.proto index a625fdde11..a27081e7e4 100644 --- a/proto/evmos/epochs/v1/query.proto +++ b/proto/evmos/epochs/v1/query.proto @@ -6,7 +6,7 @@ import "evmos/epochs/v1/genesis.proto"; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; -option go_package = "github.com/evmos/evmos/v11/x/epochs/types"; +option go_package = "github.com/evmos/evmos/v12/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 4ab557c6d5..656deba720 100644 --- a/proto/evmos/erc20/v1/erc20.proto +++ b/proto/evmos/erc20/v1/erc20.proto @@ -3,7 +3,7 @@ package evmos.erc20.v1; import "cosmos/bank/v1beta1/bank.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/evmos/evmos/v11/x/erc20/types"; +option go_package = "github.com/evmos/evmos/v12/x/erc20/types"; // Owner enumerates the ownership of a ERC20 contract. enum Owner { diff --git a/proto/evmos/erc20/v1/events.proto b/proto/evmos/erc20/v1/events.proto index d8561ccc4d..5147af3a8d 100644 --- a/proto/evmos/erc20/v1/events.proto +++ b/proto/evmos/erc20/v1/events.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package evmos.erc20.v1; -option go_package = "github.com/evmos/evmos/v11/x/erc20/types"; +option go_package = "github.com/evmos/evmos/v12/x/erc20/types"; // EventRegisterPair is an event emitted when a coin is registered. message EventRegisterPair { diff --git a/proto/evmos/erc20/v1/genesis.proto b/proto/evmos/erc20/v1/genesis.proto index 5536f80ba8..8db0760b26 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/v11/x/erc20/types"; +option go_package = "github.com/evmos/evmos/v12/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 5793ee1dc8..d281bd074f 100644 --- a/proto/evmos/erc20/v1/query.proto +++ b/proto/evmos/erc20/v1/query.proto @@ -7,7 +7,7 @@ import "evmos/erc20/v1/genesis.proto"; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; -option go_package = "github.com/evmos/evmos/v11/x/erc20/types"; +option go_package = "github.com/evmos/evmos/v12/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 8ce70d44a6..22794a2e1f 100644 --- a/proto/evmos/erc20/v1/tx.proto +++ b/proto/evmos/erc20/v1/tx.proto @@ -8,7 +8,7 @@ import "evmos/erc20/v1/genesis.proto"; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; -option go_package = "github.com/evmos/evmos/v11/x/erc20/types"; +option go_package = "github.com/evmos/evmos/v12/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 84c31a6e19..040d1f4288 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/v11/x/incentives/types"; +option go_package = "github.com/evmos/evmos/v12/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 65aebebd23..83a9dee490 100644 --- a/proto/evmos/incentives/v1/incentives.proto +++ b/proto/evmos/incentives/v1/incentives.proto @@ -4,7 +4,7 @@ package evmos.incentives.v1; import "cosmos/base/v1beta1/coin.proto"; import "gogoproto/gogo.proto"; import "google/protobuf/timestamp.proto"; -option go_package = "github.com/evmos/evmos/v11/x/incentives/types"; +option go_package = "github.com/evmos/evmos/v12/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 80441c51b5..d9f06601b6 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 "gogoproto/gogo.proto"; import "google/api/annotations.proto"; -option go_package = "github.com/evmos/evmos/v11/x/incentives/types"; +option go_package = "github.com/evmos/evmos/v12/x/incentives/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/evmos/incentives/v1/tx.proto b/proto/evmos/incentives/v1/tx.proto index 1362f395c8..feb5600be3 100644 --- a/proto/evmos/incentives/v1/tx.proto +++ b/proto/evmos/incentives/v1/tx.proto @@ -6,7 +6,7 @@ import "cosmos_proto/cosmos.proto"; import "evmos/incentives/v1/genesis.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/evmos/evmos/v11/x/incentives/types"; +option go_package = "github.com/evmos/evmos/v12/x/incentives/types"; // Msg defines the incentives Msg service. service Msg { diff --git a/proto/evmos/inflation/v1/genesis.proto b/proto/evmos/inflation/v1/genesis.proto index 1c565624c7..de2fa023fa 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/v11/x/inflation/types"; +option go_package = "github.com/evmos/evmos/v12/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 465f1a0041..371c6b2a83 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/v11/x/inflation/types"; +option go_package = "github.com/evmos/evmos/v12/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 865f402a03..af2d8836f2 100644 --- a/proto/evmos/inflation/v1/query.proto +++ b/proto/evmos/inflation/v1/query.proto @@ -6,7 +6,7 @@ import "evmos/inflation/v1/genesis.proto"; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; -option go_package = "github.com/evmos/evmos/v11/x/inflation/types"; +option go_package = "github.com/evmos/evmos/v12/x/inflation/types"; // Query provides defines the gRPC querier service. service Query { diff --git a/proto/evmos/inflation/v1/tx.proto b/proto/evmos/inflation/v1/tx.proto index 15aa93ce98..ac2f029093 100644 --- a/proto/evmos/inflation/v1/tx.proto +++ b/proto/evmos/inflation/v1/tx.proto @@ -6,7 +6,7 @@ import "cosmos_proto/cosmos.proto"; import "evmos/inflation/v1/genesis.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/evmos/evmos/v11/x/inflation/types"; +option go_package = "github.com/evmos/evmos/v12/x/inflation/types"; // Msg defines the evm Msg service. service Msg { diff --git a/proto/evmos/recovery/v1/genesis.proto b/proto/evmos/recovery/v1/genesis.proto index 964766e3e8..b0dc90a1f8 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/v11/x/recovery/types"; +option go_package = "github.com/evmos/evmos/v12/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 ebfd51f401..be252b526a 100644 --- a/proto/evmos/recovery/v1/query.proto +++ b/proto/evmos/recovery/v1/query.proto @@ -5,7 +5,7 @@ import "evmos/recovery/v1/genesis.proto"; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; -option go_package = "github.com/evmos/evmos/v11/x/recovery/types"; +option go_package = "github.com/evmos/evmos/v12/x/recovery/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/evmos/recovery/v1/tx.proto b/proto/evmos/recovery/v1/tx.proto index 98e97615e7..04c12141eb 100644 --- a/proto/evmos/recovery/v1/tx.proto +++ b/proto/evmos/recovery/v1/tx.proto @@ -6,7 +6,7 @@ import "cosmos_proto/cosmos.proto"; import "evmos/recovery/v1/genesis.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/evmos/evmos/v11/x/recovery/types"; +option go_package = "github.com/evmos/evmos/v12/x/recovery/types"; // Msg defines the recovery Msg service. service Msg { diff --git a/proto/evmos/revenue/v1/events.proto b/proto/evmos/revenue/v1/events.proto index 875e1c678e..0b1ca57bed 100644 --- a/proto/evmos/revenue/v1/events.proto +++ b/proto/evmos/revenue/v1/events.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package evmos.revenue.v1; -option go_package = "github.com/evmos/evmos/v11/x/revenue/v1/types"; +option go_package = "github.com/evmos/evmos/v12/x/revenue/v1/types"; // EventRegisterRevenue is an event emitted when a contract is registered to receive a percentage of tx fees. message EventRegisterRevenue { diff --git a/proto/evmos/revenue/v1/genesis.proto b/proto/evmos/revenue/v1/genesis.proto index 360aca9adc..24ecd58d4a 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/v11/x/revenue/v1/types"; +option go_package = "github.com/evmos/evmos/v12/x/revenue/v1/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 dfab092b5b..b9de6ea2e6 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 "gogoproto/gogo.proto"; import "google/api/annotations.proto"; -option go_package = "github.com/evmos/evmos/v11/x/revenue/v1/types"; +option go_package = "github.com/evmos/evmos/v12/x/revenue/v1/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 f59cb4a6d5..53499bdd2d 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/v11/x/revenue/v1/types"; +option go_package = "github.com/evmos/evmos/v12/x/revenue/v1/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 707bd6366e..30a19a9a72 100644 --- a/proto/evmos/revenue/v1/tx.proto +++ b/proto/evmos/revenue/v1/tx.proto @@ -7,7 +7,7 @@ import "evmos/revenue/v1/genesis.proto"; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; -option go_package = "github.com/evmos/evmos/v11/x/revenue/v1/types"; +option go_package = "github.com/evmos/evmos/v12/x/revenue/v1/types"; // Msg defines the fees Msg service. service Msg { diff --git a/proto/evmos/vesting/v1/events.proto b/proto/evmos/vesting/v1/events.proto index efbcc0c33d..3eef2ebcfa 100644 --- a/proto/evmos/vesting/v1/events.proto +++ b/proto/evmos/vesting/v1/events.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package evmos.vesting.v1; -option go_package = "github.com/evmos/evmos/v11/x/vesting/types"; +option go_package = "github.com/evmos/evmos/v12/x/vesting/types"; // EventCreateClawbackVestingAccount defines the event type // for creating a clawback vesting account diff --git a/proto/evmos/vesting/v1/query.proto b/proto/evmos/vesting/v1/query.proto index b309b6f8d6..1890cdbe24 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 "gogoproto/gogo.proto"; import "google/api/annotations.proto"; -option go_package = "github.com/evmos/evmos/v11/x/vesting/types"; +option go_package = "github.com/evmos/evmos/v12/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 9097268b2a..32c6c772e3 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/api/annotations.proto"; import "google/protobuf/timestamp.proto"; -option go_package = "github.com/evmos/evmos/v11/x/vesting/types"; +option go_package = "github.com/evmos/evmos/v12/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 00007ce914..370c0c55e5 100644 --- a/proto/evmos/vesting/v1/vesting.proto +++ b/proto/evmos/vesting/v1/vesting.proto @@ -5,7 +5,7 @@ import "cosmos/vesting/v1beta1/vesting.proto"; import "gogoproto/gogo.proto"; import "google/protobuf/timestamp.proto"; -option go_package = "github.com/evmos/evmos/v11/x/vesting/types"; +option go_package = "github.com/evmos/evmos/v12/x/vesting/types"; // ClawbackVestingAccount implements the VestingAccount interface. It provides // an account that can hold contributions subject to "lockup" (like a diff --git a/rpc/apis.go b/rpc/apis.go index 26900cfcec..d210a94059 100644 --- a/rpc/apis.go +++ b/rpc/apis.go @@ -23,16 +23,16 @@ import ( "github.com/ethereum/go-ethereum/rpc" - "github.com/evmos/evmos/v11/rpc/backend" - "github.com/evmos/evmos/v11/rpc/namespaces/ethereum/debug" - "github.com/evmos/evmos/v11/rpc/namespaces/ethereum/eth" - "github.com/evmos/evmos/v11/rpc/namespaces/ethereum/eth/filters" - "github.com/evmos/evmos/v11/rpc/namespaces/ethereum/miner" - "github.com/evmos/evmos/v11/rpc/namespaces/ethereum/net" - "github.com/evmos/evmos/v11/rpc/namespaces/ethereum/personal" - "github.com/evmos/evmos/v11/rpc/namespaces/ethereum/txpool" - "github.com/evmos/evmos/v11/rpc/namespaces/ethereum/web3" - "github.com/evmos/evmos/v11/types" + "github.com/evmos/evmos/v12/rpc/backend" + "github.com/evmos/evmos/v12/rpc/namespaces/ethereum/debug" + "github.com/evmos/evmos/v12/rpc/namespaces/ethereum/eth" + "github.com/evmos/evmos/v12/rpc/namespaces/ethereum/eth/filters" + "github.com/evmos/evmos/v12/rpc/namespaces/ethereum/miner" + "github.com/evmos/evmos/v12/rpc/namespaces/ethereum/net" + "github.com/evmos/evmos/v12/rpc/namespaces/ethereum/personal" + "github.com/evmos/evmos/v12/rpc/namespaces/ethereum/txpool" + "github.com/evmos/evmos/v12/rpc/namespaces/ethereum/web3" + "github.com/evmos/evmos/v12/types" rpcclient "github.com/tendermint/tendermint/rpc/jsonrpc/client" ) diff --git a/rpc/backend/account_info.go b/rpc/backend/account_info.go index 3f48fd6cf0..76ac21c80a 100644 --- a/rpc/backend/account_info.go +++ b/rpc/backend/account_info.go @@ -28,8 +28,8 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common/hexutil" - rpctypes "github.com/evmos/evmos/v11/rpc/types" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + rpctypes "github.com/evmos/evmos/v12/rpc/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" "github.com/pkg/errors" ) diff --git a/rpc/backend/account_info_test.go b/rpc/backend/account_info_test.go index 3b9468aae9..eb50ac6a36 100644 --- a/rpc/backend/account_info_test.go +++ b/rpc/backend/account_info_test.go @@ -11,10 +11,10 @@ import ( tmrpcclient "github.com/tendermint/tendermint/rpc/client" "google.golang.org/grpc/metadata" - "github.com/evmos/evmos/v11/rpc/backend/mocks" - rpctypes "github.com/evmos/evmos/v11/rpc/types" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/rpc/backend/mocks" + rpctypes "github.com/evmos/evmos/v12/rpc/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" ) func (suite *BackendTestSuite) TestGetCode() { diff --git a/rpc/backend/backend.go b/rpc/backend/backend.go index 8f2a1b9bac..2bdbcf4749 100644 --- a/rpc/backend/backend.go +++ b/rpc/backend/backend.go @@ -30,10 +30,10 @@ import ( "github.com/ethereum/go-ethereum/params" "github.com/ethereum/go-ethereum/rpc" "github.com/ethereum/go-ethereum/signer/core/apitypes" - rpctypes "github.com/evmos/evmos/v11/rpc/types" - "github.com/evmos/evmos/v11/server/config" - evmostypes "github.com/evmos/evmos/v11/types" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + rpctypes "github.com/evmos/evmos/v12/rpc/types" + "github.com/evmos/evmos/v12/server/config" + evmostypes "github.com/evmos/evmos/v12/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" "github.com/tendermint/tendermint/libs/log" tmrpctypes "github.com/tendermint/tendermint/rpc/core/types" ) diff --git a/rpc/backend/backend_suite_test.go b/rpc/backend/backend_suite_test.go index 3639ce5c46..ff3beaf9e2 100644 --- a/rpc/backend/backend_suite_test.go +++ b/rpc/backend/backend_suite_test.go @@ -18,15 +18,15 @@ import ( "github.com/stretchr/testify/suite" tmrpctypes "github.com/tendermint/tendermint/rpc/core/types" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/crypto/hd" - "github.com/evmos/evmos/v11/encoding" - "github.com/evmos/evmos/v11/indexer" - "github.com/evmos/evmos/v11/rpc/backend/mocks" - rpctypes "github.com/evmos/evmos/v11/rpc/types" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/utils" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/crypto/hd" + "github.com/evmos/evmos/v12/encoding" + "github.com/evmos/evmos/v12/indexer" + "github.com/evmos/evmos/v12/rpc/backend/mocks" + rpctypes "github.com/evmos/evmos/v12/rpc/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/utils" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" ) type BackendTestSuite struct { diff --git a/rpc/backend/blocks.go b/rpc/backend/blocks.go index b51f6ea6b3..256f09dadb 100644 --- a/rpc/backend/blocks.go +++ b/rpc/backend/blocks.go @@ -28,8 +28,8 @@ import ( "github.com/ethereum/go-ethereum/common/hexutil" ethtypes "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/trie" - rpctypes "github.com/evmos/evmos/v11/rpc/types" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + rpctypes "github.com/evmos/evmos/v12/rpc/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" "github.com/pkg/errors" tmrpctypes "github.com/tendermint/tendermint/rpc/core/types" "google.golang.org/grpc" diff --git a/rpc/backend/blocks_test.go b/rpc/backend/blocks_test.go index f459ce99a4..5bb5ceae81 100644 --- a/rpc/backend/blocks_test.go +++ b/rpc/backend/blocks_test.go @@ -16,10 +16,10 @@ import ( tmtypes "github.com/tendermint/tendermint/types" "google.golang.org/grpc/metadata" - "github.com/evmos/evmos/v11/rpc/backend/mocks" - ethrpc "github.com/evmos/evmos/v11/rpc/types" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/rpc/backend/mocks" + ethrpc "github.com/evmos/evmos/v12/rpc/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" ) func (suite *BackendTestSuite) TestBlockNumber() { diff --git a/rpc/backend/call_tx.go b/rpc/backend/call_tx.go index 562f1ba73e..ea73798801 100644 --- a/rpc/backend/call_tx.go +++ b/rpc/backend/call_tx.go @@ -29,9 +29,9 @@ import ( "github.com/ethereum/go-ethereum/common/hexutil" ethtypes "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/core/vm" - rpctypes "github.com/evmos/evmos/v11/rpc/types" - "github.com/evmos/evmos/v11/types" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + rpctypes "github.com/evmos/evmos/v12/rpc/types" + "github.com/evmos/evmos/v12/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" "github.com/pkg/errors" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" diff --git a/rpc/backend/call_tx_test.go b/rpc/backend/call_tx_test.go index 187055d9e6..6ece1ef6e1 100644 --- a/rpc/backend/call_tx_test.go +++ b/rpc/backend/call_tx_test.go @@ -10,10 +10,10 @@ import ( "github.com/ethereum/go-ethereum/common/hexutil" ethtypes "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/rlp" - "github.com/evmos/evmos/v11/rpc/backend/mocks" - rpctypes "github.com/evmos/evmos/v11/rpc/types" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/rpc/backend/mocks" + rpctypes "github.com/evmos/evmos/v12/rpc/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" "google.golang.org/grpc/metadata" ) diff --git a/rpc/backend/chain_info.go b/rpc/backend/chain_info.go index e8daf8c937..bd3bdb6c45 100644 --- a/rpc/backend/chain_info.go +++ b/rpc/backend/chain_info.go @@ -25,10 +25,10 @@ import ( ethtypes "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/params" "github.com/ethereum/go-ethereum/rpc" - rpctypes "github.com/evmos/evmos/v11/rpc/types" - "github.com/evmos/evmos/v11/types" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" - feemarkettypes "github.com/evmos/evmos/v11/x/feemarket/types" + rpctypes "github.com/evmos/evmos/v12/rpc/types" + "github.com/evmos/evmos/v12/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" + feemarkettypes "github.com/evmos/evmos/v12/x/feemarket/types" tmrpctypes "github.com/tendermint/tendermint/rpc/core/types" ) diff --git a/rpc/backend/chain_info_test.go b/rpc/backend/chain_info_test.go index d384114a17..abe1e7e74f 100644 --- a/rpc/backend/chain_info_test.go +++ b/rpc/backend/chain_info_test.go @@ -14,11 +14,11 @@ import ( "github.com/tendermint/tendermint/abci/types" tmrpctypes "github.com/tendermint/tendermint/rpc/core/types" - "github.com/evmos/evmos/v11/rpc/backend/mocks" - rpc "github.com/evmos/evmos/v11/rpc/types" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" - feemarkettypes "github.com/evmos/evmos/v11/x/feemarket/types" + "github.com/evmos/evmos/v12/rpc/backend/mocks" + rpc "github.com/evmos/evmos/v12/rpc/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" + feemarkettypes "github.com/evmos/evmos/v12/x/feemarket/types" ) func (suite *BackendTestSuite) TestBaseFee() { diff --git a/rpc/backend/client_test.go b/rpc/backend/client_test.go index d3c9f7f316..aa1b7f36fd 100644 --- a/rpc/backend/client_test.go +++ b/rpc/backend/client_test.go @@ -10,9 +10,9 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" "github.com/ethereum/go-ethereum/common" - "github.com/evmos/evmos/v11/rpc/backend/mocks" - rpc "github.com/evmos/evmos/v11/rpc/types" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/rpc/backend/mocks" + rpc "github.com/evmos/evmos/v12/rpc/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" mock "github.com/stretchr/testify/mock" "github.com/stretchr/testify/require" abci "github.com/tendermint/tendermint/abci/types" diff --git a/rpc/backend/evm_query_client_test.go b/rpc/backend/evm_query_client_test.go index 5d2b59002a..5e3614279d 100644 --- a/rpc/backend/evm_query_client_test.go +++ b/rpc/backend/evm_query_client_test.go @@ -13,10 +13,10 @@ import ( errortypes "github.com/cosmos/cosmos-sdk/types/errors" grpctypes "github.com/cosmos/cosmos-sdk/types/grpc" "github.com/ethereum/go-ethereum/common" - "github.com/evmos/evmos/v11/rpc/backend/mocks" - rpc "github.com/evmos/evmos/v11/rpc/types" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/rpc/backend/mocks" + rpc "github.com/evmos/evmos/v12/rpc/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" mock "github.com/stretchr/testify/mock" "github.com/stretchr/testify/require" "google.golang.org/grpc" diff --git a/rpc/backend/feemarket_query_client_test.go b/rpc/backend/feemarket_query_client_test.go index b52c88e92c..a5064bd3ee 100644 --- a/rpc/backend/feemarket_query_client_test.go +++ b/rpc/backend/feemarket_query_client_test.go @@ -2,9 +2,9 @@ package backend import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/evmos/evmos/v11/rpc/backend/mocks" - rpc "github.com/evmos/evmos/v11/rpc/types" - feemarkettypes "github.com/evmos/evmos/v11/x/feemarket/types" + "github.com/evmos/evmos/v12/rpc/backend/mocks" + rpc "github.com/evmos/evmos/v12/rpc/types" + feemarkettypes "github.com/evmos/evmos/v12/x/feemarket/types" ) var _ feemarkettypes.QueryClient = &mocks.FeeMarketQueryClient{} diff --git a/rpc/backend/filters_test.go b/rpc/backend/filters_test.go index 8a3c53974a..9eebb96978 100644 --- a/rpc/backend/filters_test.go +++ b/rpc/backend/filters_test.go @@ -5,9 +5,9 @@ import ( "github.com/ethereum/go-ethereum/common" ethtypes "github.com/ethereum/go-ethereum/core/types" - "github.com/evmos/evmos/v11/rpc/backend/mocks" - ethrpc "github.com/evmos/evmos/v11/rpc/types" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/rpc/backend/mocks" + ethrpc "github.com/evmos/evmos/v12/rpc/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" tmtypes "github.com/tendermint/tendermint/types" ) diff --git a/rpc/backend/mocks/evm_query_client.go b/rpc/backend/mocks/evm_query_client.go index 474a7e102d..4589a35d5a 100644 --- a/rpc/backend/mocks/evm_query_client.go +++ b/rpc/backend/mocks/evm_query_client.go @@ -9,7 +9,7 @@ import ( mock "github.com/stretchr/testify/mock" - types "github.com/evmos/evmos/v11/x/evm/types" + types "github.com/evmos/evmos/v12/x/evm/types" ) // EVMQueryClient is an autogenerated mock type for the EVMQueryClient type diff --git a/rpc/backend/mocks/feemarket_query_client.go b/rpc/backend/mocks/feemarket_query_client.go index a2383ad789..18e296197e 100644 --- a/rpc/backend/mocks/feemarket_query_client.go +++ b/rpc/backend/mocks/feemarket_query_client.go @@ -9,7 +9,7 @@ import ( mock "github.com/stretchr/testify/mock" - types "github.com/evmos/evmos/v11/x/feemarket/types" + types "github.com/evmos/evmos/v12/x/feemarket/types" ) // FeeMarketQueryClient is an autogenerated mock type for the QueryClient type diff --git a/rpc/backend/node_info.go b/rpc/backend/node_info.go index f5648c4f76..5b3f0db35b 100644 --- a/rpc/backend/node_info.go +++ b/rpc/backend/node_info.go @@ -33,11 +33,11 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common/hexutil" "github.com/ethereum/go-ethereum/crypto" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - rpctypes "github.com/evmos/evmos/v11/rpc/types" - "github.com/evmos/evmos/v11/server/config" - "github.com/evmos/evmos/v11/types" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + rpctypes "github.com/evmos/evmos/v12/rpc/types" + "github.com/evmos/evmos/v12/server/config" + "github.com/evmos/evmos/v12/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" tmtypes "github.com/tendermint/tendermint/types" ) diff --git a/rpc/backend/node_info_test.go b/rpc/backend/node_info_test.go index dd5274e62b..0733032a95 100644 --- a/rpc/backend/node_info_test.go +++ b/rpc/backend/node_info_test.go @@ -8,9 +8,9 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common/hexutil" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - "github.com/evmos/evmos/v11/rpc/backend/mocks" - "github.com/evmos/evmos/v11/types" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/rpc/backend/mocks" + "github.com/evmos/evmos/v12/types" "github.com/spf13/viper" tmrpcclient "github.com/tendermint/tendermint/rpc/client" "google.golang.org/grpc/metadata" diff --git a/rpc/backend/sign_tx.go b/rpc/backend/sign_tx.go index 277d67c705..f18655de31 100644 --- a/rpc/backend/sign_tx.go +++ b/rpc/backend/sign_tx.go @@ -30,7 +30,7 @@ import ( "github.com/ethereum/go-ethereum/crypto" "github.com/ethereum/go-ethereum/signer/core/apitypes" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" ) // SendTransaction sends transaction based on received args using Node's key to sign it diff --git a/rpc/backend/sign_tx_test.go b/rpc/backend/sign_tx_test.go index 3404104462..d56be04e05 100644 --- a/rpc/backend/sign_tx_test.go +++ b/rpc/backend/sign_tx_test.go @@ -14,10 +14,10 @@ import ( "github.com/ethereum/go-ethereum/signer/core/apitypes" "google.golang.org/grpc/metadata" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - "github.com/evmos/evmos/v11/rpc/backend/mocks" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/rpc/backend/mocks" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" ) func (suite *BackendTestSuite) TestSendTransaction() { diff --git a/rpc/backend/tracing.go b/rpc/backend/tracing.go index d0a4947627..836c013c23 100644 --- a/rpc/backend/tracing.go +++ b/rpc/backend/tracing.go @@ -22,8 +22,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/ethereum/go-ethereum/common" - rpctypes "github.com/evmos/evmos/v11/rpc/types" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + rpctypes "github.com/evmos/evmos/v12/rpc/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" "github.com/pkg/errors" tmrpctypes "github.com/tendermint/tendermint/rpc/core/types" ) diff --git a/rpc/backend/tracing_test.go b/rpc/backend/tracing_test.go index aae28863bc..fd3cfc2b33 100644 --- a/rpc/backend/tracing_test.go +++ b/rpc/backend/tracing_test.go @@ -6,10 +6,10 @@ import ( "github.com/cosmos/cosmos-sdk/crypto" "github.com/ethereum/go-ethereum/common" ethtypes "github.com/ethereum/go-ethereum/core/types" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - "github.com/evmos/evmos/v11/indexer" - "github.com/evmos/evmos/v11/rpc/backend/mocks" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/indexer" + "github.com/evmos/evmos/v12/rpc/backend/mocks" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" abci "github.com/tendermint/tendermint/abci/types" tmlog "github.com/tendermint/tendermint/libs/log" tmrpctypes "github.com/tendermint/tendermint/rpc/core/types" diff --git a/rpc/backend/tx_info.go b/rpc/backend/tx_info.go index 339e84a939..692fa31b3c 100644 --- a/rpc/backend/tx_info.go +++ b/rpc/backend/tx_info.go @@ -26,9 +26,9 @@ import ( "github.com/ethereum/go-ethereum/common/hexutil" ethtypes "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/crypto" - rpctypes "github.com/evmos/evmos/v11/rpc/types" - "github.com/evmos/evmos/v11/types" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + rpctypes "github.com/evmos/evmos/v12/rpc/types" + "github.com/evmos/evmos/v12/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" "github.com/pkg/errors" tmrpctypes "github.com/tendermint/tendermint/rpc/core/types" ) diff --git a/rpc/backend/tx_info_test.go b/rpc/backend/tx_info_test.go index 4e2067db03..362f995e7e 100644 --- a/rpc/backend/tx_info_test.go +++ b/rpc/backend/tx_info_test.go @@ -7,11 +7,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common/hexutil" - "github.com/evmos/evmos/v11/indexer" - "github.com/evmos/evmos/v11/rpc/backend/mocks" - rpctypes "github.com/evmos/evmos/v11/rpc/types" - evmostypes "github.com/evmos/evmos/v11/types" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/indexer" + "github.com/evmos/evmos/v12/rpc/backend/mocks" + rpctypes "github.com/evmos/evmos/v12/rpc/types" + evmostypes "github.com/evmos/evmos/v12/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" abci "github.com/tendermint/tendermint/abci/types" tmlog "github.com/tendermint/tendermint/libs/log" tmrpctypes "github.com/tendermint/tendermint/rpc/core/types" diff --git a/rpc/backend/utils.go b/rpc/backend/utils.go index a308999790..9538e745fa 100644 --- a/rpc/backend/utils.go +++ b/rpc/backend/utils.go @@ -37,8 +37,8 @@ import ( "github.com/tendermint/tendermint/libs/log" tmrpctypes "github.com/tendermint/tendermint/rpc/core/types" - "github.com/evmos/evmos/v11/rpc/types" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/rpc/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" "github.com/tendermint/tendermint/proto/tendermint/crypto" ) diff --git a/rpc/namespaces/ethereum/debug/api.go b/rpc/namespaces/ethereum/debug/api.go index 2618b85cd0..4e0492eafd 100644 --- a/rpc/namespaces/ethereum/debug/api.go +++ b/rpc/namespaces/ethereum/debug/api.go @@ -29,7 +29,7 @@ import ( "github.com/davecgh/go-spew/spew" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" stderrors "github.com/pkg/errors" @@ -39,8 +39,8 @@ import ( "github.com/ethereum/go-ethereum/common/hexutil" "github.com/ethereum/go-ethereum/consensus/ethash" "github.com/ethereum/go-ethereum/rlp" - "github.com/evmos/evmos/v11/rpc/backend" - rpctypes "github.com/evmos/evmos/v11/rpc/types" + "github.com/evmos/evmos/v12/rpc/backend" + rpctypes "github.com/evmos/evmos/v12/rpc/types" "github.com/tendermint/tendermint/libs/log" ) diff --git a/rpc/namespaces/ethereum/eth/api.go b/rpc/namespaces/ethereum/eth/api.go index 78e8ab008e..8f7d859766 100644 --- a/rpc/namespaces/ethereum/eth/api.go +++ b/rpc/namespaces/ethereum/eth/api.go @@ -28,11 +28,11 @@ import ( "github.com/ethereum/go-ethereum/common/hexutil" ethtypes "github.com/ethereum/go-ethereum/core/types" - "github.com/evmos/evmos/v11/rpc/backend" + "github.com/evmos/evmos/v12/rpc/backend" - rpctypes "github.com/evmos/evmos/v11/rpc/types" - "github.com/evmos/evmos/v11/types" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + rpctypes "github.com/evmos/evmos/v12/rpc/types" + "github.com/evmos/evmos/v12/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" ) // The Ethereum API allows applications to connect to an Evmos node that is diff --git a/rpc/namespaces/ethereum/eth/filters/api.go b/rpc/namespaces/ethereum/eth/filters/api.go index 7bf5bec1eb..71a3db64cb 100644 --- a/rpc/namespaces/ethereum/eth/filters/api.go +++ b/rpc/namespaces/ethereum/eth/filters/api.go @@ -22,7 +22,7 @@ import ( "time" "github.com/cosmos/cosmos-sdk/client" - "github.com/evmos/evmos/v11/rpc/types" + "github.com/evmos/evmos/v12/rpc/types" "github.com/tendermint/tendermint/libs/log" @@ -35,7 +35,7 @@ import ( "github.com/ethereum/go-ethereum/eth/filters" "github.com/ethereum/go-ethereum/rpc" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" ) // FilterAPI gathers diff --git a/rpc/namespaces/ethereum/eth/filters/filter_system.go b/rpc/namespaces/ethereum/eth/filters/filter_system.go index f49ad8bc98..df82144947 100644 --- a/rpc/namespaces/ethereum/eth/filters/filter_system.go +++ b/rpc/namespaces/ethereum/eth/filters/filter_system.go @@ -37,8 +37,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/rpc/ethereum/pubsub" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/rpc/ethereum/pubsub" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" ) var ( diff --git a/rpc/namespaces/ethereum/eth/filters/filters.go b/rpc/namespaces/ethereum/eth/filters/filters.go index 390995df6a..e25dc7e5bc 100644 --- a/rpc/namespaces/ethereum/eth/filters/filters.go +++ b/rpc/namespaces/ethereum/eth/filters/filters.go @@ -21,8 +21,8 @@ import ( "fmt" "math/big" - "github.com/evmos/evmos/v11/rpc/backend" - "github.com/evmos/evmos/v11/rpc/types" + "github.com/evmos/evmos/v12/rpc/backend" + "github.com/evmos/evmos/v12/rpc/types" "github.com/pkg/errors" "github.com/tendermint/tendermint/libs/log" diff --git a/rpc/namespaces/ethereum/miner/api.go b/rpc/namespaces/ethereum/miner/api.go index 5fc2b621b2..b820547d9e 100644 --- a/rpc/namespaces/ethereum/miner/api.go +++ b/rpc/namespaces/ethereum/miner/api.go @@ -17,7 +17,7 @@ package miner import ( "github.com/cosmos/cosmos-sdk/server" - "github.com/evmos/evmos/v11/rpc/backend" + "github.com/evmos/evmos/v12/rpc/backend" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common/hexutil" diff --git a/rpc/namespaces/ethereum/net/api.go b/rpc/namespaces/ethereum/net/api.go index a9a94b23bd..c787ba1f45 100644 --- a/rpc/namespaces/ethereum/net/api.go +++ b/rpc/namespaces/ethereum/net/api.go @@ -20,7 +20,7 @@ import ( "fmt" "github.com/cosmos/cosmos-sdk/client" - "github.com/evmos/evmos/v11/types" + "github.com/evmos/evmos/v12/types" rpcclient "github.com/tendermint/tendermint/rpc/client" ) diff --git a/rpc/namespaces/ethereum/personal/api.go b/rpc/namespaces/ethereum/personal/api.go index 3c15ab44a5..343ead8c37 100644 --- a/rpc/namespaces/ethereum/personal/api.go +++ b/rpc/namespaces/ethereum/personal/api.go @@ -21,10 +21,10 @@ import ( "os" "time" - "github.com/evmos/evmos/v11/rpc/backend" + "github.com/evmos/evmos/v12/rpc/backend" - "github.com/evmos/evmos/v11/crypto/hd" - "github.com/evmos/evmos/v11/types" + "github.com/evmos/evmos/v12/crypto/hd" + "github.com/evmos/evmos/v12/types" "github.com/tendermint/tendermint/libs/log" @@ -36,7 +36,7 @@ import ( "github.com/ethereum/go-ethereum/common/hexutil" "github.com/ethereum/go-ethereum/crypto" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" ) // PrivateAccountAPI is the personal_ prefixed set of APIs in the Web3 JSON-RPC spec. diff --git a/rpc/namespaces/ethereum/txpool/api.go b/rpc/namespaces/ethereum/txpool/api.go index 809b100172..154a73bda4 100644 --- a/rpc/namespaces/ethereum/txpool/api.go +++ b/rpc/namespaces/ethereum/txpool/api.go @@ -20,7 +20,7 @@ import ( "github.com/ethereum/go-ethereum/common/hexutil" - "github.com/evmos/evmos/v11/rpc/types" + "github.com/evmos/evmos/v12/rpc/types" ) // PublicAPI offers and API for the transaction pool. It only operates on data that is non-confidential. diff --git a/rpc/namespaces/ethereum/web3/api.go b/rpc/namespaces/ethereum/web3/api.go index e11f67b8d2..f1ffea035d 100644 --- a/rpc/namespaces/ethereum/web3/api.go +++ b/rpc/namespaces/ethereum/web3/api.go @@ -16,7 +16,7 @@ package web3 import ( - "github.com/evmos/evmos/v11/version" + "github.com/evmos/evmos/v12/version" "github.com/ethereum/go-ethereum/common/hexutil" "github.com/ethereum/go-ethereum/crypto" diff --git a/rpc/types/block.go b/rpc/types/block.go index 33bce189fc..bdb642cf05 100644 --- a/rpc/types/block.go +++ b/rpc/types/block.go @@ -32,7 +32,7 @@ import ( grpctypes "github.com/cosmos/cosmos-sdk/types/grpc" - "github.com/evmos/evmos/v11/types" + "github.com/evmos/evmos/v12/types" ) // BlockNumber represents decoding hex string to block values diff --git a/rpc/types/events.go b/rpc/types/events.go index 406f6d5688..5ccc93b1e3 100644 --- a/rpc/types/events.go +++ b/rpc/types/events.go @@ -21,8 +21,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/ethereum/go-ethereum/common" - "github.com/evmos/evmos/v11/types" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" abci "github.com/tendermint/tendermint/abci/types" tmrpctypes "github.com/tendermint/tendermint/rpc/core/types" ) diff --git a/rpc/types/events_test.go b/rpc/types/events_test.go index 009c5643c4..afd7946516 100644 --- a/rpc/types/events_test.go +++ b/rpc/types/events_test.go @@ -5,7 +5,7 @@ import ( "testing" "github.com/ethereum/go-ethereum/common" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" "github.com/stretchr/testify/require" abci "github.com/tendermint/tendermint/abci/types" ) diff --git a/rpc/types/query_client.go b/rpc/types/query_client.go index 03cc4665d5..3567d77f86 100644 --- a/rpc/types/query_client.go +++ b/rpc/types/query_client.go @@ -25,8 +25,8 @@ import ( "github.com/cosmos/cosmos-sdk/client" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" - feemarkettypes "github.com/evmos/evmos/v11/x/feemarket/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" + feemarkettypes "github.com/evmos/evmos/v12/x/feemarket/types" ) // QueryClient defines a gRPC Client used for: diff --git a/rpc/types/utils.go b/rpc/types/utils.go index f6ae00b371..4bb9c0d893 100644 --- a/rpc/types/utils.go +++ b/rpc/types/utils.go @@ -29,8 +29,8 @@ import ( "github.com/cosmos/cosmos-sdk/client" errortypes "github.com/cosmos/cosmos-sdk/types/errors" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" - feemarkettypes "github.com/evmos/evmos/v11/x/feemarket/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" + feemarkettypes "github.com/evmos/evmos/v12/x/feemarket/types" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common/hexutil" diff --git a/rpc/websockets.go b/rpc/websockets.go index de20e3c371..8cd2a8a5a3 100644 --- a/rpc/websockets.go +++ b/rpc/websockets.go @@ -41,11 +41,11 @@ import ( rpcclient "github.com/tendermint/tendermint/rpc/jsonrpc/client" tmtypes "github.com/tendermint/tendermint/types" - "github.com/evmos/evmos/v11/rpc/ethereum/pubsub" - rpcfilters "github.com/evmos/evmos/v11/rpc/namespaces/ethereum/eth/filters" - "github.com/evmos/evmos/v11/rpc/types" - "github.com/evmos/evmos/v11/server/config" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/rpc/ethereum/pubsub" + rpcfilters "github.com/evmos/evmos/v12/rpc/namespaces/ethereum/eth/filters" + "github.com/evmos/evmos/v12/rpc/types" + "github.com/evmos/evmos/v12/server/config" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" ) type WebsocketsServer interface { diff --git a/server/indexer_cmd.go b/server/indexer_cmd.go index 569bb8208d..8bd2909a55 100644 --- a/server/indexer_cmd.go +++ b/server/indexer_cmd.go @@ -22,7 +22,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/server" - "github.com/evmos/evmos/v11/indexer" + "github.com/evmos/evmos/v12/indexer" tmnode "github.com/tendermint/tendermint/node" sm "github.com/tendermint/tendermint/state" tmstore "github.com/tendermint/tendermint/store" diff --git a/server/indexer_service.go b/server/indexer_service.go index 129119087c..32dd5ef07d 100644 --- a/server/indexer_service.go +++ b/server/indexer_service.go @@ -23,7 +23,7 @@ import ( rpcclient "github.com/tendermint/tendermint/rpc/client" "github.com/tendermint/tendermint/types" - evmostypes "github.com/evmos/evmos/v11/types" + evmostypes "github.com/evmos/evmos/v12/types" ) const ( diff --git a/server/json_rpc.go b/server/json_rpc.go index 80ee84005e..73341a5aa8 100644 --- a/server/json_rpc.go +++ b/server/json_rpc.go @@ -27,10 +27,10 @@ import ( "github.com/cosmos/cosmos-sdk/server/types" ethlog "github.com/ethereum/go-ethereum/log" ethrpc "github.com/ethereum/go-ethereum/rpc" - "github.com/evmos/evmos/v11/rpc" + "github.com/evmos/evmos/v12/rpc" - "github.com/evmos/evmos/v11/server/config" - evmostypes "github.com/evmos/evmos/v11/types" + "github.com/evmos/evmos/v12/server/config" + evmostypes "github.com/evmos/evmos/v12/types" ) // StartJSONRPC starts the JSON-RPC server diff --git a/server/start.go b/server/start.go index d51c494a12..4cd31c4001 100644 --- a/server/start.go +++ b/server/start.go @@ -61,11 +61,11 @@ import ( "github.com/cosmos/cosmos-sdk/server/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/indexer" - ethdebug "github.com/evmos/evmos/v11/rpc/namespaces/ethereum/debug" - "github.com/evmos/evmos/v11/server/config" - srvflags "github.com/evmos/evmos/v11/server/flags" - evmostypes "github.com/evmos/evmos/v11/types" + "github.com/evmos/evmos/v12/indexer" + ethdebug "github.com/evmos/evmos/v12/rpc/namespaces/ethereum/debug" + "github.com/evmos/evmos/v12/server/config" + srvflags "github.com/evmos/evmos/v12/server/flags" + evmostypes "github.com/evmos/evmos/v12/types" ) // DBOpener is a function to open `application.db`, potentially with customized options. diff --git a/server/util.go b/server/util.go index 86f1e78055..08ad205207 100644 --- a/server/util.go +++ b/server/util.go @@ -21,7 +21,7 @@ import ( "time" // TODO update import to local pkg when rpc pkg is migrated - "github.com/evmos/evmos/v11/server/config" + "github.com/evmos/evmos/v12/server/config" "github.com/gorilla/mux" "github.com/improbable-eng/grpc-web/go/grpcweb" "github.com/spf13/cobra" diff --git a/tests/e2e/e2e_suite_test.go b/tests/e2e/e2e_suite_test.go index 59625e7618..2531d34841 100644 --- a/tests/e2e/e2e_suite_test.go +++ b/tests/e2e/e2e_suite_test.go @@ -10,8 +10,8 @@ import ( "github.com/stretchr/testify/suite" - "github.com/evmos/evmos/v11/tests/e2e/upgrade" - "github.com/evmos/evmos/v11/utils" + "github.com/evmos/evmos/v12/tests/e2e/upgrade" + "github.com/evmos/evmos/v12/utils" ) const ( diff --git a/tests/e2e/e2e_test.go b/tests/e2e/e2e_test.go index f58a985a45..4cda553dda 100644 --- a/tests/e2e/e2e_test.go +++ b/tests/e2e/e2e_test.go @@ -4,7 +4,7 @@ import ( "context" "strings" - "github.com/evmos/evmos/v11/tests/e2e/upgrade" + "github.com/evmos/evmos/v12/tests/e2e/upgrade" ) // TestUpgrade tests if an Evmos node can be upgraded from one version to another. diff --git a/tests/integration/ledger/evmosd_suite_test.go b/tests/integration/ledger/evmosd_suite_test.go index f150709dd0..0ea3843f0b 100644 --- a/tests/integration/ledger/evmosd_suite_test.go +++ b/tests/integration/ledger/evmosd_suite_test.go @@ -18,20 +18,20 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/spf13/cobra" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/crypto/hd" - "github.com/evmos/evmos/v11/tests/integration/ledger/mocks" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/utils" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/crypto/hd" + "github.com/evmos/evmos/v12/tests/integration/ledger/mocks" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/utils" "github.com/stretchr/testify/suite" "github.com/tendermint/tendermint/crypto/tmhash" "github.com/tendermint/tendermint/version" cosmosledger "github.com/cosmos/cosmos-sdk/crypto/ledger" sdk "github.com/cosmos/cosmos-sdk/types" - clientkeys "github.com/evmos/evmos/v11/client/keys" - evmoskeyring "github.com/evmos/evmos/v11/crypto/keyring" - feemarkettypes "github.com/evmos/evmos/v11/x/feemarket/types" + clientkeys "github.com/evmos/evmos/v12/client/keys" + evmoskeyring "github.com/evmos/evmos/v12/crypto/keyring" + feemarkettypes "github.com/evmos/evmos/v12/x/feemarket/types" tmproto "github.com/tendermint/tendermint/proto/tendermint/types" tmversion "github.com/tendermint/tendermint/proto/tendermint/version" rpcclientmock "github.com/tendermint/tendermint/rpc/client/mock" diff --git a/tests/integration/ledger/ledger_test.go b/tests/integration/ledger/ledger_test.go index 66bf7056b0..76d8fa4eaa 100644 --- a/tests/integration/ledger/ledger_test.go +++ b/tests/integration/ledger/ledger_test.go @@ -9,12 +9,12 @@ import ( "github.com/cosmos/cosmos-sdk/crypto/keyring" "github.com/cosmos/cosmos-sdk/simapp/params" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/crypto/hd" - "github.com/evmos/evmos/v11/encoding" - "github.com/evmos/evmos/v11/tests/integration/ledger/mocks" - "github.com/evmos/evmos/v11/testutil" - utiltx "github.com/evmos/evmos/v11/testutil/tx" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/crypto/hd" + "github.com/evmos/evmos/v12/encoding" + "github.com/evmos/evmos/v12/tests/integration/ledger/mocks" + "github.com/evmos/evmos/v12/testutil" + utiltx "github.com/evmos/evmos/v12/testutil/tx" "github.com/spf13/cobra" diff --git a/testutil/abci.go b/testutil/abci.go index 8ea56df4bf..f593fc1bfa 100644 --- a/testutil/abci.go +++ b/testutil/abci.go @@ -26,9 +26,9 @@ import ( abci "github.com/tendermint/tendermint/abci/types" tmtypes "github.com/tendermint/tendermint/types" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/encoding" - "github.com/evmos/evmos/v11/testutil/tx" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/encoding" + "github.com/evmos/evmos/v12/testutil/tx" ) // Commit commits a block at a given time. Reminder: At the end of each diff --git a/testutil/ante.go b/testutil/ante.go index 74d02c0f61..425b846da8 100644 --- a/testutil/ante.go +++ b/testutil/ante.go @@ -2,8 +2,8 @@ package testutil import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/encoding" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/encoding" ) // NextFn is a no-op function that returns the context and no error in order to mock diff --git a/testutil/contract.go b/testutil/contract.go index 9ef9729853..2134347516 100644 --- a/testutil/contract.go +++ b/testutil/contract.go @@ -15,9 +15,9 @@ import ( ethtypes "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/crypto" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/testutil/tx" - evm "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/testutil/tx" + evm "github.com/evmos/evmos/v12/x/evm/types" ) // DeployContract deploys a contract with the provided private key, diff --git a/testutil/fund.go b/testutil/fund.go index 8fc6a3b579..7c4b429c19 100644 --- a/testutil/fund.go +++ b/testutil/fund.go @@ -19,8 +19,8 @@ package testutil import ( sdk "github.com/cosmos/cosmos-sdk/types" bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" - "github.com/evmos/evmos/v11/utils" - inflationtypes "github.com/evmos/evmos/v11/x/inflation/types" + "github.com/evmos/evmos/v12/utils" + inflationtypes "github.com/evmos/evmos/v12/x/inflation/types" ) // FundAccount is a utility function that funds an account by minting and diff --git a/testutil/integration.go b/testutil/integration.go index b1b8428e36..6dbb9a03f0 100644 --- a/testutil/integration.go +++ b/testutil/integration.go @@ -25,8 +25,8 @@ import ( stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" abci "github.com/tendermint/tendermint/abci/types" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" ) // SubmitProposal delivers a submit proposal tx for a given gov content. diff --git a/testutil/network/network.go b/testutil/network/network.go index e4bf97abe9..c63a9ce102 100644 --- a/testutil/network/network.go +++ b/testutil/network/network.go @@ -64,13 +64,13 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" "github.com/cosmos/cosmos-sdk/x/genutil" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/crypto/hd" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/crypto/hd" - "github.com/evmos/evmos/v11/encoding" - "github.com/evmos/evmos/v11/server/config" - evmostypes "github.com/evmos/evmos/v11/types" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/encoding" + "github.com/evmos/evmos/v12/server/config" + evmostypes "github.com/evmos/evmos/v12/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" ) // package-wide network lock to only allow one test network at a time diff --git a/testutil/network/network_test.go b/testutil/network/network_test.go index 51826f45ec..929454037e 100644 --- a/testutil/network/network_test.go +++ b/testutil/network/network_test.go @@ -11,10 +11,10 @@ import ( "github.com/stretchr/testify/suite" "github.com/ethereum/go-ethereum/ethclient" - "github.com/evmos/evmos/v11/server/config" - "github.com/evmos/evmos/v11/testutil/network" + "github.com/evmos/evmos/v12/server/config" + "github.com/evmos/evmos/v12/testutil/network" - evmosnetwork "github.com/evmos/evmos/v11/testutil/network" + evmosnetwork "github.com/evmos/evmos/v12/testutil/network" ) type IntegrationTestSuite struct { diff --git a/testutil/network/util.go b/testutil/network/util.go index 40c9c015ee..42d7c633c3 100644 --- a/testutil/network/util.go +++ b/testutil/network/util.go @@ -43,10 +43,10 @@ import ( govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" govv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - inflationtypes "github.com/evmos/evmos/v11/x/inflation/types" + inflationtypes "github.com/evmos/evmos/v12/x/inflation/types" - "github.com/evmos/evmos/v11/server" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/server" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" ) func startInProcess(cfg Config, val *Validator) error { diff --git a/testutil/staking-rewards.go b/testutil/staking-rewards.go index f29910727f..54be1c754c 100644 --- a/testutil/staking-rewards.go +++ b/testutil/staking-rewards.go @@ -28,9 +28,9 @@ import ( "github.com/cosmos/cosmos-sdk/x/staking" "github.com/cosmos/cosmos-sdk/x/staking/teststaking" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/evmos/evmos/v11/app" - testutiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/utils" + "github.com/evmos/evmos/v12/app" + testutiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/utils" ) // PrepareAccountsForDelegationRewards prepares the test suite for testing to withdraw delegation rewards. diff --git a/testutil/statedb.go b/testutil/statedb.go index 65b0807ae8..f48a0b27f4 100644 --- a/testutil/statedb.go +++ b/testutil/statedb.go @@ -19,8 +19,8 @@ package testutil import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/ethereum/go-ethereum/common" - "github.com/evmos/evmos/v11/app/ante/evm" - "github.com/evmos/evmos/v11/x/evm/statedb" + "github.com/evmos/evmos/v12/app/ante/evm" + "github.com/evmos/evmos/v12/x/evm/statedb" ) // NewStateDB returns a new StateDB for testing purposes. diff --git a/testutil/tx/cosmos.go b/testutil/tx/cosmos.go index 78dadc3d18..76a8a75325 100644 --- a/testutil/tx/cosmos.go +++ b/testutil/tx/cosmos.go @@ -26,8 +26,8 @@ import ( "github.com/cosmos/cosmos-sdk/types/tx/signing" authsigning "github.com/cosmos/cosmos-sdk/x/auth/signing" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/utils" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/utils" ) var ( diff --git a/testutil/tx/eip712.go b/testutil/tx/eip712.go index ca5d38e951..4c77eea4a2 100644 --- a/testutil/tx/eip712.go +++ b/testutil/tx/eip712.go @@ -29,10 +29,10 @@ import ( "github.com/ethereum/go-ethereum/signer/core/apitypes" cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" - "github.com/evmos/evmos/v11/app" - cryptocodec "github.com/evmos/evmos/v11/crypto/codec" - "github.com/evmos/evmos/v11/ethereum/eip712" - "github.com/evmos/evmos/v11/types" + "github.com/evmos/evmos/v12/app" + cryptocodec "github.com/evmos/evmos/v12/crypto/codec" + "github.com/evmos/evmos/v12/ethereum/eip712" + "github.com/evmos/evmos/v12/types" ) type EIP712TxArgs struct { diff --git a/testutil/tx/eth.go b/testutil/tx/eth.go index 68b08ab7a0..16d9adfd3f 100644 --- a/testutil/tx/eth.go +++ b/testutil/tx/eth.go @@ -31,10 +31,10 @@ import ( "github.com/ethereum/go-ethereum/common/hexutil" ethtypes "github.com/ethereum/go-ethereum/core/types" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/server/config" - "github.com/evmos/evmos/v11/utils" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/server/config" + "github.com/evmos/evmos/v12/utils" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" ) // PrepareEthTx creates an ethereum tx and signs it with the provided messages and private key. diff --git a/testutil/tx/signer.go b/testutil/tx/signer.go index a314e4b540..b7734d77b5 100644 --- a/testutil/tx/signer.go +++ b/testutil/tx/signer.go @@ -25,7 +25,7 @@ import ( cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" ) // NewAddrKey generates an Ethereum address and its corresponding private key. diff --git a/types/account_test.go b/types/account_test.go index bf2507728e..6eb62ad934 100644 --- a/types/account_test.go +++ b/types/account_test.go @@ -12,10 +12,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - cryptocodec "github.com/evmos/evmos/v11/crypto/codec" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - encodingcodec "github.com/evmos/evmos/v11/encoding/codec" - "github.com/evmos/evmos/v11/types" + cryptocodec "github.com/evmos/evmos/v12/crypto/codec" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + encodingcodec "github.com/evmos/evmos/v12/encoding/codec" + "github.com/evmos/evmos/v12/types" ) func init() { diff --git a/types/validation_test.go b/types/validation_test.go index 33c1e5616c..105c6b5a82 100644 --- a/types/validation_test.go +++ b/types/validation_test.go @@ -4,8 +4,8 @@ import ( "testing" "github.com/ethereum/go-ethereum/common" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/types" "github.com/stretchr/testify/require" ) diff --git a/utils/utils.go b/utils/utils.go index 117d31ec5f..837189a80a 100644 --- a/utils/utils.go +++ b/utils/utils.go @@ -19,7 +19,7 @@ package utils import ( "strings" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" errorsmod "cosmossdk.io/errors" "github.com/cosmos/cosmos-sdk/crypto/keys/ed25519" diff --git a/utils/utils_test.go b/utils/utils_test.go index 40fef9ca70..0e3e9a7c83 100644 --- a/utils/utils_test.go +++ b/utils/utils_test.go @@ -12,7 +12,7 @@ import ( cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" ) func init() { diff --git a/x/claims/client/cli/query.go b/x/claims/client/cli/query.go index 72d06a105c..65c65fc540 100644 --- a/x/claims/client/cli/query.go +++ b/x/claims/client/cli/query.go @@ -26,7 +26,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/version" - "github.com/evmos/evmos/v11/x/claims/types" + "github.com/evmos/evmos/v12/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 2c611693fc..193e53c544 100644 --- a/x/claims/genesis.go +++ b/x/claims/genesis.go @@ -23,8 +23,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/x/claims/keeper" - "github.com/evmos/evmos/v11/x/claims/types" + "github.com/evmos/evmos/v12/x/claims/keeper" + "github.com/evmos/evmos/v12/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 f13475b710..cb1b3350e3 100644 --- a/x/claims/genesis_test.go +++ b/x/claims/genesis_test.go @@ -12,13 +12,13 @@ import ( tmversion "github.com/tendermint/tendermint/proto/tendermint/version" "github.com/tendermint/tendermint/version" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/testutil" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/utils" - "github.com/evmos/evmos/v11/x/claims" - "github.com/evmos/evmos/v11/x/claims/types" - feemarkettypes "github.com/evmos/evmos/v11/x/feemarket/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/testutil" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/utils" + "github.com/evmos/evmos/v12/x/claims" + "github.com/evmos/evmos/v12/x/claims/types" + feemarkettypes "github.com/evmos/evmos/v12/x/feemarket/types" ) type GenesisTestSuite struct { diff --git a/x/claims/handler.go b/x/claims/handler.go index 7e17d24fc8..293f97ac1e 100644 --- a/x/claims/handler.go +++ b/x/claims/handler.go @@ -21,7 +21,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" errortypes "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/evmos/evmos/v11/x/claims/types" + "github.com/evmos/evmos/v12/x/claims/types" ) // NewHandler returns claim module messages diff --git a/x/claims/ibc_middleware.go b/x/claims/ibc_middleware.go index 09126edad9..d1e3596f5b 100644 --- a/x/claims/ibc_middleware.go +++ b/x/claims/ibc_middleware.go @@ -24,8 +24,8 @@ import ( "github.com/cosmos/ibc-go/v6/modules/core/exported" clienttypes "github.com/cosmos/ibc-go/v6/modules/core/02-client/types" - "github.com/evmos/evmos/v11/ibc" - "github.com/evmos/evmos/v11/x/claims/keeper" + "github.com/evmos/evmos/v12/ibc" + "github.com/evmos/evmos/v12/x/claims/keeper" ) var _ porttypes.Middleware = &IBCMiddleware{} diff --git a/x/claims/keeper/abci.go b/x/claims/keeper/abci.go index 061325264b..9f604ee1a7 100644 --- a/x/claims/keeper/abci.go +++ b/x/claims/keeper/abci.go @@ -22,9 +22,9 @@ import ( errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" vestexported "github.com/cosmos/cosmos-sdk/x/auth/vesting/exported" - evmostypes "github.com/evmos/evmos/v11/types" + evmostypes "github.com/evmos/evmos/v12/types" - "github.com/evmos/evmos/v11/x/claims/types" + "github.com/evmos/evmos/v12/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 c247861d26..9e4343f07a 100644 --- a/x/claims/keeper/abci_test.go +++ b/x/claims/keeper/abci_test.go @@ -9,11 +9,11 @@ import ( distrtypes "github.com/cosmos/cosmos-sdk/x/distribution/types" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/crypto" - testutil "github.com/evmos/evmos/v11/testutil" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - evmostypes "github.com/evmos/evmos/v11/types" - "github.com/evmos/evmos/v11/x/claims/types" - vestingtypes "github.com/evmos/evmos/v11/x/vesting/types" + testutil "github.com/evmos/evmos/v12/testutil" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + evmostypes "github.com/evmos/evmos/v12/types" + "github.com/evmos/evmos/v12/x/claims/types" + vestingtypes "github.com/evmos/evmos/v12/x/vesting/types" ) func (suite *KeeperTestSuite) TestEndBlock() { diff --git a/x/claims/keeper/claim.go b/x/claims/keeper/claim.go index 3060cab1c9..ae89613fa3 100644 --- a/x/claims/keeper/claim.go +++ b/x/claims/keeper/claim.go @@ -22,7 +22,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" errortypes "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/evmos/evmos/v11/x/claims/types" + "github.com/evmos/evmos/v12/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 dba19fb5c6..308f5d3b7a 100644 --- a/x/claims/keeper/claim_test.go +++ b/x/claims/keeper/claim_test.go @@ -12,13 +12,13 @@ import ( stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/crypto" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - "github.com/evmos/evmos/v11/testutil" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - evmostypes "github.com/evmos/evmos/v11/types" - inflationtypes "github.com/evmos/evmos/v11/x/inflation/types" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/testutil" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + evmostypes "github.com/evmos/evmos/v12/types" + inflationtypes "github.com/evmos/evmos/v12/x/inflation/types" - "github.com/evmos/evmos/v11/x/claims/types" + "github.com/evmos/evmos/v12/x/claims/types" ) func (suite *KeeperTestSuite) TestGetClaimableAmountForAction() { diff --git a/x/claims/keeper/claims_records.go b/x/claims/keeper/claims_records.go index c831fb8090..f304049356 100644 --- a/x/claims/keeper/claims_records.go +++ b/x/claims/keeper/claims_records.go @@ -20,7 +20,7 @@ import ( "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/x/claims/types" + "github.com/evmos/evmos/v12/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 7ffc04d96c..0ed00580e2 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/v11/x/claims/types" + "github.com/evmos/evmos/v12/x/claims/types" ) func (suite *KeeperTestSuite) TestsClaimsRecords() { diff --git a/x/claims/keeper/grpc_query.go b/x/claims/keeper/grpc_query.go index ff731f7d0d..443ff0fb58 100644 --- a/x/claims/keeper/grpc_query.go +++ b/x/claims/keeper/grpc_query.go @@ -25,7 +25,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/evmos/evmos/v11/x/claims/types" + "github.com/evmos/evmos/v12/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 98f2642931..36bca645b4 100644 --- a/x/claims/keeper/grpc_query_test.go +++ b/x/claims/keeper/grpc_query_test.go @@ -6,9 +6,9 @@ import ( "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/testutil" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/x/claims/types" + "github.com/evmos/evmos/v12/testutil" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/x/claims/types" ) func (suite *KeeperTestSuite) TestTotalUnclaimed() { diff --git a/x/claims/keeper/hooks.go b/x/claims/keeper/hooks.go index c89f130957..49f14a15ad 100644 --- a/x/claims/keeper/hooks.go +++ b/x/claims/keeper/hooks.go @@ -26,11 +26,11 @@ import ( "github.com/ethereum/go-ethereum/core" ethtypes "github.com/ethereum/go-ethereum/core/types" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" clienttypes "github.com/cosmos/ibc-go/v6/modules/core/02-client/types" porttypes "github.com/cosmos/ibc-go/v6/modules/core/05-port/types" - "github.com/evmos/evmos/v11/x/claims/types" + "github.com/evmos/evmos/v12/x/claims/types" ) var ( diff --git a/x/claims/keeper/hooks_test.go b/x/claims/keeper/hooks_test.go index 639907843e..92d9de705d 100644 --- a/x/claims/keeper/hooks_test.go +++ b/x/claims/keeper/hooks_test.go @@ -7,9 +7,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" ethtypes "github.com/ethereum/go-ethereum/core/types" - "github.com/evmos/evmos/v11/testutil" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/x/claims/types" + "github.com/evmos/evmos/v12/testutil" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/x/claims/types" ) func (suite *KeeperTestSuite) TestAfterProposalVote() { diff --git a/x/claims/keeper/ibc_callbacks.go b/x/claims/keeper/ibc_callbacks.go index 8bea7bb14b..311c5c01f4 100644 --- a/x/claims/keeper/ibc_callbacks.go +++ b/x/claims/keeper/ibc_callbacks.go @@ -24,8 +24,8 @@ import ( channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" "github.com/cosmos/ibc-go/v6/modules/core/exported" - "github.com/evmos/evmos/v11/ibc" - "github.com/evmos/evmos/v11/x/claims/types" + "github.com/evmos/evmos/v12/ibc" + "github.com/evmos/evmos/v12/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 86793bd128..7bf1738824 100644 --- a/x/claims/keeper/ibc_callbacks_ibc_suite_test.go +++ b/x/claims/keeper/ibc_callbacks_ibc_suite_test.go @@ -12,13 +12,13 @@ import ( channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" ibcgotesting "github.com/cosmos/ibc-go/v6/testing" - "github.com/evmos/evmos/v11/app" - ibctesting "github.com/evmos/evmos/v11/ibc/testing" - "github.com/evmos/evmos/v11/testutil" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/utils" - "github.com/evmos/evmos/v11/x/claims/types" - inflationtypes "github.com/evmos/evmos/v11/x/inflation/types" + "github.com/evmos/evmos/v12/app" + ibctesting "github.com/evmos/evmos/v12/ibc/testing" + "github.com/evmos/evmos/v12/testutil" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/utils" + "github.com/evmos/evmos/v12/x/claims/types" + inflationtypes "github.com/evmos/evmos/v12/x/inflation/types" ) type IBCTestingSuite struct { diff --git a/x/claims/keeper/ibc_callbacks_test.go b/x/claims/keeper/ibc_callbacks_test.go index 06783161de..bf81812609 100644 --- a/x/claims/keeper/ibc_callbacks_test.go +++ b/x/claims/keeper/ibc_callbacks_test.go @@ -15,7 +15,7 @@ import ( ibcgotesting "github.com/cosmos/ibc-go/v6/testing" ibcmock "github.com/cosmos/ibc-go/v6/testing/mock" - "github.com/evmos/evmos/v11/x/claims/types" + "github.com/evmos/evmos/v12/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 c7124ab191..5a78498055 100644 --- a/x/claims/keeper/integration_test.go +++ b/x/claims/keeper/integration_test.go @@ -12,12 +12,12 @@ import ( govv1beta1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - "github.com/evmos/evmos/v11/testutil" - "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/utils" - "github.com/evmos/evmos/v11/x/claims/types" - inflationtypes "github.com/evmos/evmos/v11/x/inflation/types" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/testutil" + "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/utils" + "github.com/evmos/evmos/v12/x/claims/types" + inflationtypes "github.com/evmos/evmos/v12/x/inflation/types" ) var _ = Describe("Claiming", Ordered, func() { diff --git a/x/claims/keeper/invariants.go b/x/claims/keeper/invariants.go index cbed3a2837..e3ab326856 100644 --- a/x/claims/keeper/invariants.go +++ b/x/claims/keeper/invariants.go @@ -21,7 +21,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/x/claims/types" + "github.com/evmos/evmos/v12/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 57f8dff959..d7eae0e907 100644 --- a/x/claims/keeper/invariants_test.go +++ b/x/claims/keeper/invariants_test.go @@ -3,9 +3,9 @@ package keeper_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/testutil" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/x/claims/types" + "github.com/evmos/evmos/v12/testutil" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/x/claims/types" ) func (suite *KeeperTestSuite) TestClaimsInvariant() { diff --git a/x/claims/keeper/keeper.go b/x/claims/keeper/keeper.go index c80c99fe56..b0a1a9c877 100644 --- a/x/claims/keeper/keeper.go +++ b/x/claims/keeper/keeper.go @@ -27,7 +27,7 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" porttypes "github.com/cosmos/ibc-go/v6/modules/core/05-port/types" - "github.com/evmos/evmos/v11/x/claims/types" + "github.com/evmos/evmos/v12/x/claims/types" ) // Keeper struct diff --git a/x/claims/keeper/migrations.go b/x/claims/keeper/migrations.go index 9660b4376a..f2a86c7df5 100644 --- a/x/claims/keeper/migrations.go +++ b/x/claims/keeper/migrations.go @@ -18,8 +18,8 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - v3 "github.com/evmos/evmos/v11/x/claims/migrations/v3" - "github.com/evmos/evmos/v11/x/claims/types" + v3 "github.com/evmos/evmos/v12/x/claims/migrations/v3" + "github.com/evmos/evmos/v12/x/claims/types" ) // Migrator is a struct for handling in-place store migrations. diff --git a/x/claims/keeper/msg_server.go b/x/claims/keeper/msg_server.go index efe0f2f30f..96822d1a51 100644 --- a/x/claims/keeper/msg_server.go +++ b/x/claims/keeper/msg_server.go @@ -27,7 +27,7 @@ import ( transfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" - "github.com/evmos/evmos/v11/x/claims/types" + "github.com/evmos/evmos/v12/x/claims/types" ) // UpdateParams implements the gRPC MsgServer interface. When an UpdateParams diff --git a/x/claims/keeper/msg_server_test.go b/x/claims/keeper/msg_server_test.go index e93fe2c238..ed7b1dd852 100644 --- a/x/claims/keeper/msg_server_test.go +++ b/x/claims/keeper/msg_server_test.go @@ -9,7 +9,7 @@ import ( transfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" - "github.com/evmos/evmos/v11/x/claims/types" + "github.com/evmos/evmos/v12/x/claims/types" ) func (suite *KeeperTestSuite) TestUpdateParams() { diff --git a/x/claims/keeper/params.go b/x/claims/keeper/params.go index a824b02fa2..84e7649ac5 100644 --- a/x/claims/keeper/params.go +++ b/x/claims/keeper/params.go @@ -19,7 +19,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/x/claims/types" + "github.com/evmos/evmos/v12/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 efde7ac993..e2d8bc1490 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/v11/x/claims/types" + "github.com/evmos/evmos/v12/x/claims/types" ) func (suite *KeeperTestSuite) TestParams() { diff --git a/x/claims/keeper/setup_test.go b/x/claims/keeper/setup_test.go index 22520da1dc..580e0a9835 100644 --- a/x/claims/keeper/setup_test.go +++ b/x/claims/keeper/setup_test.go @@ -11,9 +11,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" ethtypes "github.com/ethereum/go-ethereum/core/types" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/x/claims/types" - evm "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/x/claims/types" + evm "github.com/evmos/evmos/v12/x/evm/types" "github.com/stretchr/testify/suite" ) diff --git a/x/claims/keeper/utils_test.go b/x/claims/keeper/utils_test.go index d4c05dad7b..12ddd78b3b 100644 --- a/x/claims/keeper/utils_test.go +++ b/x/claims/keeper/utils_test.go @@ -13,17 +13,17 @@ import ( "github.com/ethereum/go-ethereum/common" ethtypes "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/crypto" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/contracts" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - "github.com/evmos/evmos/v11/testutil" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - evmostypes "github.com/evmos/evmos/v11/types" - "github.com/evmos/evmos/v11/utils" - "github.com/evmos/evmos/v11/x/claims/types" - evm "github.com/evmos/evmos/v11/x/evm/types" - feemarkettypes "github.com/evmos/evmos/v11/x/feemarket/types" - incentivestypes "github.com/evmos/evmos/v11/x/incentives/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/contracts" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/testutil" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + evmostypes "github.com/evmos/evmos/v12/types" + "github.com/evmos/evmos/v12/utils" + "github.com/evmos/evmos/v12/x/claims/types" + evm "github.com/evmos/evmos/v12/x/evm/types" + feemarkettypes "github.com/evmos/evmos/v12/x/feemarket/types" + incentivestypes "github.com/evmos/evmos/v12/x/incentives/types" "github.com/stretchr/testify/require" ) diff --git a/x/claims/migrations/v3/migrate.go b/x/claims/migrations/v3/migrate.go index a0e3dd810e..13b12aab6d 100644 --- a/x/claims/migrations/v3/migrate.go +++ b/x/claims/migrations/v3/migrate.go @@ -21,8 +21,8 @@ import ( storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" - v3types "github.com/evmos/evmos/v11/x/claims/migrations/v3/types" - "github.com/evmos/evmos/v11/x/claims/types" + v3types "github.com/evmos/evmos/v12/x/claims/migrations/v3/types" + "github.com/evmos/evmos/v12/x/claims/types" ) // MigrateStore migrates the x/claims module state from the consensus version 2 to diff --git a/x/claims/migrations/v3/migrate_test.go b/x/claims/migrations/v3/migrate_test.go index 1f2453fb92..52192b0b7c 100644 --- a/x/claims/migrations/v3/migrate_test.go +++ b/x/claims/migrations/v3/migrate_test.go @@ -8,11 +8,11 @@ import ( "github.com/cosmos/cosmos-sdk/testutil" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/encoding" - v3 "github.com/evmos/evmos/v11/x/claims/migrations/v3" - v3types "github.com/evmos/evmos/v11/x/claims/migrations/v3/types" - "github.com/evmos/evmos/v11/x/claims/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/encoding" + v3 "github.com/evmos/evmos/v12/x/claims/migrations/v3" + v3types "github.com/evmos/evmos/v12/x/claims/migrations/v3/types" + "github.com/evmos/evmos/v12/x/claims/types" "github.com/stretchr/testify/require" ) diff --git a/x/claims/migrations/v3/types/genesis.pb.go b/x/claims/migrations/v3/types/genesis.pb.go index 29c6c9e4f4..28aaf2022b 100644 --- a/x/claims/migrations/v3/types/genesis.pb.go +++ b/x/claims/migrations/v3/types/genesis.pb.go @@ -11,7 +11,7 @@ import ( time "time" _ "github.com/cosmos/gogoproto/gogoproto" - "github.com/evmos/evmos/v11/x/claims/types" + "github.com/evmos/evmos/v12/x/claims/types" proto "github.com/gogo/protobuf/proto" github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" _ "google.golang.org/protobuf/types/known/durationpb" diff --git a/x/claims/migrations/v3/types/params.go b/x/claims/migrations/v3/types/params.go index 5ec7738dc7..3915ca9b00 100644 --- a/x/claims/migrations/v3/types/params.go +++ b/x/claims/migrations/v3/types/params.go @@ -20,8 +20,8 @@ import ( "fmt" "time" - "github.com/evmos/evmos/v11/utils" - "github.com/evmos/evmos/v11/x/claims/types" + "github.com/evmos/evmos/v12/utils" + "github.com/evmos/evmos/v12/x/claims/types" errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/claims/module.go b/x/claims/module.go index 97ca7f29cf..3797e36e52 100644 --- a/x/claims/module.go +++ b/x/claims/module.go @@ -33,9 +33,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/evmos/evmos/v11/x/claims/client/cli" - "github.com/evmos/evmos/v11/x/claims/keeper" - "github.com/evmos/evmos/v11/x/claims/types" + "github.com/evmos/evmos/v12/x/claims/client/cli" + "github.com/evmos/evmos/v12/x/claims/keeper" + "github.com/evmos/evmos/v12/x/claims/types" ) var ( diff --git a/x/claims/types/claims_record_test.go b/x/claims/types/claims_record_test.go index a221fc81ba..082b60feae 100644 --- a/x/claims/types/claims_record_test.go +++ b/x/claims/types/claims_record_test.go @@ -5,8 +5,8 @@ import ( "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/x/claims/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/x/claims/types" "github.com/stretchr/testify/require" ) diff --git a/x/claims/types/genesis_test.go b/x/claims/types/genesis_test.go index bdd46c64fd..5ecfc93cac 100644 --- a/x/claims/types/genesis_test.go +++ b/x/claims/types/genesis_test.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/x/claims/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/x/claims/types" "github.com/stretchr/testify/suite" ) diff --git a/x/claims/types/params.go b/x/claims/types/params.go index 59d3c56c68..28a4568696 100644 --- a/x/claims/types/params.go +++ b/x/claims/types/params.go @@ -24,7 +24,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" host "github.com/cosmos/ibc-go/v6/modules/core/24-host" - "github.com/evmos/evmos/v11/utils" + "github.com/evmos/evmos/v12/utils" ) var ( diff --git a/x/claims/types/params_test.go b/x/claims/types/params_test.go index 774e693831..d86856f3a8 100644 --- a/x/claims/types/params_test.go +++ b/x/claims/types/params_test.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/x/claims/types" + "github.com/evmos/evmos/v12/x/claims/types" "github.com/stretchr/testify/require" ) diff --git a/x/epochs/client/cli/query.go b/x/epochs/client/cli/query.go index 1c2e7cbdf0..1782d00ded 100644 --- a/x/epochs/client/cli/query.go +++ b/x/epochs/client/cli/query.go @@ -25,7 +25,7 @@ import ( "github.com/cosmos/cosmos-sdk/version" "github.com/spf13/cobra" - "github.com/evmos/evmos/v11/x/epochs/types" + "github.com/evmos/evmos/v12/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 25c70ca10b..6f0ce109d6 100644 --- a/x/epochs/genesis.go +++ b/x/epochs/genesis.go @@ -21,8 +21,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/x/epochs/keeper" - "github.com/evmos/evmos/v11/x/epochs/types" + "github.com/evmos/evmos/v12/x/epochs/keeper" + "github.com/evmos/evmos/v12/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 7c555211c1..cd207a0e78 100644 --- a/x/epochs/genesis_test.go +++ b/x/epochs/genesis_test.go @@ -4,13 +4,13 @@ import ( "testing" "time" - feemarkettypes "github.com/evmos/evmos/v11/x/feemarket/types" + feemarkettypes "github.com/evmos/evmos/v12/x/feemarket/types" "github.com/stretchr/testify/require" tmproto "github.com/tendermint/tendermint/proto/tendermint/types" - simapp "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/x/epochs" - "github.com/evmos/evmos/v11/x/epochs/types" + simapp "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/x/epochs" + "github.com/evmos/evmos/v12/x/epochs/types" ) func TestEpochsExportGenesis(t *testing.T) { diff --git a/x/epochs/keeper/abci.go b/x/epochs/keeper/abci.go index b7a0c8ba4e..085f7b96a0 100644 --- a/x/epochs/keeper/abci.go +++ b/x/epochs/keeper/abci.go @@ -23,7 +23,7 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/x/epochs/types" + "github.com/evmos/evmos/v12/x/epochs/types" ) // BeginBlocker of epochs module diff --git a/x/epochs/keeper/abci_test.go b/x/epochs/keeper/abci_test.go index 5085c50042..6395f3badf 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/v11/x/epochs" - "github.com/evmos/evmos/v11/x/epochs/types" + "github.com/evmos/evmos/v12/x/epochs" + "github.com/evmos/evmos/v12/x/epochs/types" ) func (suite *KeeperTestSuite) TestEpochInfoChangesBeginBlockerAndInitGenesis() { diff --git a/x/epochs/keeper/epoch_infos.go b/x/epochs/keeper/epoch_infos.go index 5753efa478..c70bced147 100644 --- a/x/epochs/keeper/epoch_infos.go +++ b/x/epochs/keeper/epoch_infos.go @@ -20,7 +20,7 @@ import ( "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/x/epochs/types" + "github.com/evmos/evmos/v12/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 44b9d13f77..cfe229e814 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/v11/x/epochs/types" + "github.com/evmos/evmos/v12/x/epochs/types" ) func (suite *KeeperTestSuite) TestEpochLifeCycle() { diff --git a/x/epochs/keeper/grpc_query.go b/x/epochs/keeper/grpc_query.go index 5194db5cea..d14829de56 100644 --- a/x/epochs/keeper/grpc_query.go +++ b/x/epochs/keeper/grpc_query.go @@ -25,7 +25,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/evmos/evmos/v11/x/epochs/types" + "github.com/evmos/evmos/v12/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 f032d11999..a2fae1171e 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/v11/x/epochs/types" + "github.com/evmos/evmos/v12/x/epochs/types" ) func (suite *KeeperTestSuite) TestEpochInfo() { diff --git a/x/epochs/keeper/hooks.go b/x/epochs/keeper/hooks.go index 99bcec32c9..3e72596bb1 100644 --- a/x/epochs/keeper/hooks.go +++ b/x/epochs/keeper/hooks.go @@ -18,7 +18,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/x/epochs/types" + "github.com/evmos/evmos/v12/x/epochs/types" ) var _ types.EpochHooks = MultiEpochHooks{} diff --git a/x/epochs/keeper/keeper.go b/x/epochs/keeper/keeper.go index bebd8c5061..063a4e608a 100644 --- a/x/epochs/keeper/keeper.go +++ b/x/epochs/keeper/keeper.go @@ -24,7 +24,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/tendermint/tendermint/libs/log" - "github.com/evmos/evmos/v11/x/epochs/types" + "github.com/evmos/evmos/v12/x/epochs/types" ) // Keeper of this module maintains collections of epochs and hooks. diff --git a/x/epochs/keeper/setup_test.go b/x/epochs/keeper/setup_test.go index 2bd8713eca..4f1bf57651 100644 --- a/x/epochs/keeper/setup_test.go +++ b/x/epochs/keeper/setup_test.go @@ -9,10 +9,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/suite" - evm "github.com/evmos/evmos/v11/x/evm/types" + evm "github.com/evmos/evmos/v12/x/evm/types" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/x/epochs/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/x/epochs/types" ) type KeeperTestSuite struct { diff --git a/x/epochs/keeper/utils_test.go b/x/epochs/keeper/utils_test.go index 208e7ebadf..81190cb8ee 100644 --- a/x/epochs/keeper/utils_test.go +++ b/x/epochs/keeper/utils_test.go @@ -4,10 +4,10 @@ import ( "time" "github.com/cosmos/cosmos-sdk/baseapp" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/testutil" - "github.com/evmos/evmos/v11/x/epochs/types" - evm "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/testutil" + "github.com/evmos/evmos/v12/x/epochs/types" + evm "github.com/evmos/evmos/v12/x/evm/types" "github.com/stretchr/testify/require" ) diff --git a/x/epochs/module.go b/x/epochs/module.go index 3fffebd8b0..48f1c0bdd2 100644 --- a/x/epochs/module.go +++ b/x/epochs/module.go @@ -36,9 +36,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/evmos/evmos/v11/x/epochs/client/cli" - "github.com/evmos/evmos/v11/x/epochs/keeper" - "github.com/evmos/evmos/v11/x/epochs/types" + "github.com/evmos/evmos/v12/x/epochs/client/cli" + "github.com/evmos/evmos/v12/x/epochs/keeper" + "github.com/evmos/evmos/v12/x/epochs/types" ) var ( diff --git a/x/erc20/client/cli/query.go b/x/erc20/client/cli/query.go index 8414e5ad92..1ed6c23692 100644 --- a/x/erc20/client/cli/query.go +++ b/x/erc20/client/cli/query.go @@ -23,7 +23,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/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 90104a51b5..d672490e9f 100644 --- a/x/erc20/client/cli/tx.go +++ b/x/erc20/client/cli/tx.go @@ -31,9 +31,9 @@ import ( "github.com/ethereum/go-ethereum/common" - evmostypes "github.com/evmos/evmos/v11/types" + evmostypes "github.com/evmos/evmos/v12/types" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/x/erc20/types" ) // NewTxCmd returns a root CLI command handler for erc20 transaction commands diff --git a/x/erc20/client/cli/utils.go b/x/erc20/client/cli/utils.go index 5635a7b606..098ca91760 100644 --- a/x/erc20/client/cli/utils.go +++ b/x/erc20/client/cli/utils.go @@ -23,7 +23,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/x/erc20/types" ) // ParseRegisterCoinProposal reads and parses a ParseRegisterCoinProposal from a file. diff --git a/x/erc20/client/cli/utils_test.go b/x/erc20/client/cli/utils_test.go index d8c9c83c9a..837fd29212 100644 --- a/x/erc20/client/cli/utils_test.go +++ b/x/erc20/client/cli/utils_test.go @@ -3,7 +3,7 @@ package cli import ( "testing" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/x/erc20/types" "github.com/stretchr/testify/require" ) diff --git a/x/erc20/client/proposal_handler.go b/x/erc20/client/proposal_handler.go index 436a11da7c..ef1afc62dd 100644 --- a/x/erc20/client/proposal_handler.go +++ b/x/erc20/client/proposal_handler.go @@ -19,7 +19,7 @@ package client import ( govclient "github.com/cosmos/cosmos-sdk/x/gov/client" - "github.com/evmos/evmos/v11/x/erc20/client/cli" + "github.com/evmos/evmos/v12/x/erc20/client/cli" ) var ( diff --git a/x/erc20/genesis.go b/x/erc20/genesis.go index 902d1afdcc..e317315fab 100644 --- a/x/erc20/genesis.go +++ b/x/erc20/genesis.go @@ -22,8 +22,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authkeeper "github.com/cosmos/cosmos-sdk/x/auth/keeper" - "github.com/evmos/evmos/v11/x/erc20/keeper" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/x/erc20/keeper" + "github.com/evmos/evmos/v12/x/erc20/types" ) // InitGenesis import module genesis diff --git a/x/erc20/genesis_test.go b/x/erc20/genesis_test.go index 5e9b5a9f70..cc8a4cfd45 100644 --- a/x/erc20/genesis_test.go +++ b/x/erc20/genesis_test.go @@ -13,13 +13,13 @@ import ( tmversion "github.com/tendermint/tendermint/proto/tendermint/version" "github.com/tendermint/tendermint/version" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/utils" - feemarkettypes "github.com/evmos/evmos/v11/x/feemarket/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/utils" + feemarkettypes "github.com/evmos/evmos/v12/x/feemarket/types" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/x/erc20" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/x/erc20" + "github.com/evmos/evmos/v12/x/erc20/types" ) type GenesisTestSuite struct { diff --git a/x/erc20/handler.go b/x/erc20/handler.go index 1b9bc30b0a..4a9f3f8a3d 100644 --- a/x/erc20/handler.go +++ b/x/erc20/handler.go @@ -21,7 +21,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" errortypes "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/x/erc20/types" ) // NewHandler defines the erc20 module handler instance diff --git a/x/erc20/ibc_middleware.go b/x/erc20/ibc_middleware.go index 688f31fe1e..54f3f8caf0 100644 --- a/x/erc20/ibc_middleware.go +++ b/x/erc20/ibc_middleware.go @@ -26,8 +26,8 @@ import ( "github.com/cosmos/ibc-go/v6/modules/core/exported" errortypes "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/evmos/evmos/v11/ibc" - "github.com/evmos/evmos/v11/x/erc20/keeper" + "github.com/evmos/evmos/v12/ibc" + "github.com/evmos/evmos/v12/x/erc20/keeper" ) var _ porttypes.IBCModule = &IBCMiddleware{} diff --git a/x/erc20/keeper/erc20_utils_test.go b/x/erc20/keeper/erc20_utils_test.go index f0b12f0e28..b2dfe6bdfc 100644 --- a/x/erc20/keeper/erc20_utils_test.go +++ b/x/erc20/keeper/erc20_utils_test.go @@ -6,9 +6,9 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/crypto" - "github.com/evmos/evmos/v11/contracts" - "github.com/evmos/evmos/v11/x/erc20/types" - evm "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/contracts" + "github.com/evmos/evmos/v12/x/erc20/types" + evm "github.com/evmos/evmos/v12/x/evm/types" ) func (suite *KeeperTestSuite) MintERC20Token(contractAddr, from, to common.Address, amount *big.Int) *evm.MsgEthereumTx { diff --git a/x/erc20/keeper/evm.go b/x/erc20/keeper/evm.go index 79ca910950..4918b1289a 100644 --- a/x/erc20/keeper/evm.go +++ b/x/erc20/keeper/evm.go @@ -29,11 +29,11 @@ import ( "github.com/ethereum/go-ethereum/common/hexutil" ethtypes "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/crypto" - "github.com/evmos/evmos/v11/server/config" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/server/config" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" - "github.com/evmos/evmos/v11/contracts" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/contracts" + "github.com/evmos/evmos/v12/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 c2096730f3..65222ca839 100644 --- a/x/erc20/keeper/evm_hooks.go +++ b/x/erc20/keeper/evm_hooks.go @@ -24,10 +24,10 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core" ethtypes "github.com/ethereum/go-ethereum/core/types" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" - "github.com/evmos/evmos/v11/contracts" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/contracts" + "github.com/evmos/evmos/v12/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 90d71fd21b..90e54e84c2 100644 --- a/x/erc20/keeper/evm_hooks_test.go +++ b/x/erc20/keeper/evm_hooks_test.go @@ -8,9 +8,9 @@ import ( "github.com/ethereum/go-ethereum/common" ethtypes "github.com/ethereum/go-ethereum/core/types" - "github.com/evmos/evmos/v11/contracts" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/contracts" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/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 77b1da50fb..8e2ebb8c4d 100644 --- a/x/erc20/keeper/evm_test.go +++ b/x/erc20/keeper/evm_test.go @@ -7,13 +7,13 @@ import ( govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" "github.com/ethereum/go-ethereum/common" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" "github.com/stretchr/testify/mock" - "github.com/evmos/evmos/v11/contracts" - "github.com/evmos/evmos/v11/x/erc20/keeper" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/contracts" + "github.com/evmos/evmos/v12/x/erc20/keeper" + "github.com/evmos/evmos/v12/x/erc20/types" ) func (suite *KeeperTestSuite) TestQueryERC20() { diff --git a/x/erc20/keeper/grpc_query.go b/x/erc20/keeper/grpc_query.go index 7b67c7bcb9..1beb195cc1 100644 --- a/x/erc20/keeper/grpc_query.go +++ b/x/erc20/keeper/grpc_query.go @@ -25,9 +25,9 @@ import ( "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - evmostypes "github.com/evmos/evmos/v11/types" + evmostypes "github.com/evmos/evmos/v12/types" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/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 1d452b4d3e..4ec5d17553 100644 --- a/x/erc20/keeper/grpc_query_test.go +++ b/x/erc20/keeper/grpc_query_test.go @@ -6,8 +6,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/x/erc20/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/x/erc20/types" ) func (suite *KeeperTestSuite) TestTokenPairs() { diff --git a/x/erc20/keeper/ibc_callbacks.go b/x/erc20/keeper/ibc_callbacks.go index af38e562d2..fbc0c02895 100644 --- a/x/erc20/keeper/ibc_callbacks.go +++ b/x/erc20/keeper/ibc_callbacks.go @@ -29,8 +29,8 @@ import ( "github.com/cosmos/ibc-go/v6/modules/core/exported" "github.com/ethereum/go-ethereum/common" - "github.com/evmos/evmos/v11/ibc" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/ibc" + "github.com/evmos/evmos/v12/x/erc20/types" ) // OnRecvPacket performs the ICS20 middleware receive callback for automatically diff --git a/x/erc20/keeper/ibc_callbacks_integration_test.go b/x/erc20/keeper/ibc_callbacks_integration_test.go index a5267c338d..a12e06e46a 100644 --- a/x/erc20/keeper/ibc_callbacks_integration_test.go +++ b/x/erc20/keeper/ibc_callbacks_integration_test.go @@ -12,14 +12,14 @@ import ( transfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" "github.com/ethereum/go-ethereum/common" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/contracts" - ibctesting "github.com/evmos/evmos/v11/ibc/testing" - "github.com/evmos/evmos/v11/testutil" - teststypes "github.com/evmos/evmos/v11/types/tests" - "github.com/evmos/evmos/v11/utils" - claimstypes "github.com/evmos/evmos/v11/x/claims/types" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/contracts" + ibctesting "github.com/evmos/evmos/v12/ibc/testing" + "github.com/evmos/evmos/v12/testutil" + teststypes "github.com/evmos/evmos/v12/types/tests" + "github.com/evmos/evmos/v12/utils" + claimstypes "github.com/evmos/evmos/v12/x/claims/types" + "github.com/evmos/evmos/v12/x/erc20/types" . "github.com/onsi/ginkgo/v2" ) diff --git a/x/erc20/keeper/ibc_callbacks_test.go b/x/erc20/keeper/ibc_callbacks_test.go index d96802b5a3..e9b498d55e 100644 --- a/x/erc20/keeper/ibc_callbacks_test.go +++ b/x/erc20/keeper/ibc_callbacks_test.go @@ -5,8 +5,8 @@ import ( "fmt" "math/big" - "github.com/evmos/evmos/v11/utils" - "github.com/evmos/evmos/v11/x/erc20/keeper" + "github.com/evmos/evmos/v12/utils" + "github.com/evmos/evmos/v12/x/erc20/keeper" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" @@ -15,8 +15,8 @@ import ( "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1" sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - "github.com/evmos/evmos/v11/testutil" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/testutil" transfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" clienttypes "github.com/cosmos/ibc-go/v6/modules/core/02-client/types" @@ -24,11 +24,11 @@ import ( ibcgotesting "github.com/cosmos/ibc-go/v6/testing" ibcmock "github.com/cosmos/ibc-go/v6/testing/mock" - "github.com/evmos/evmos/v11/contracts" - claimstypes "github.com/evmos/evmos/v11/x/claims/types" - "github.com/evmos/evmos/v11/x/erc20/types" - inflationtypes "github.com/evmos/evmos/v11/x/inflation/types" - vestingtypes "github.com/evmos/evmos/v11/x/vesting/types" + "github.com/evmos/evmos/v12/contracts" + claimstypes "github.com/evmos/evmos/v12/x/claims/types" + "github.com/evmos/evmos/v12/x/erc20/types" + inflationtypes "github.com/evmos/evmos/v12/x/inflation/types" + vestingtypes "github.com/evmos/evmos/v12/x/vesting/types" ) var erc20Denom = "erc20/0xdac17f958d2ee523a2206206994597c13d831ec7" diff --git a/x/erc20/keeper/integration_test.go b/x/erc20/keeper/integration_test.go index c05408e9e0..81fd9c035b 100644 --- a/x/erc20/keeper/integration_test.go +++ b/x/erc20/keeper/integration_test.go @@ -15,12 +15,12 @@ import ( stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" abci "github.com/tendermint/tendermint/abci/types" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - "github.com/evmos/evmos/v11/utils" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/utils" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/testutil" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/testutil" + "github.com/evmos/evmos/v12/x/erc20/types" ) var _ = Describe("Performing EVM transactions", Ordered, func() { diff --git a/x/erc20/keeper/keeper.go b/x/erc20/keeper/keeper.go index 079e7aa25b..385515325c 100644 --- a/x/erc20/keeper/keeper.go +++ b/x/erc20/keeper/keeper.go @@ -24,7 +24,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/tendermint/tendermint/libs/log" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/x/erc20/types" ) // Keeper of this module maintains collections of erc20. diff --git a/x/erc20/keeper/migrations.go b/x/erc20/keeper/migrations.go index 0655866164..2c76fd1cc2 100644 --- a/x/erc20/keeper/migrations.go +++ b/x/erc20/keeper/migrations.go @@ -19,8 +19,8 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - v3 "github.com/evmos/evmos/v11/x/erc20/migrations/v3" - "github.com/evmos/evmos/v11/x/erc20/types" + v3 "github.com/evmos/evmos/v12/x/erc20/migrations/v3" + "github.com/evmos/evmos/v12/x/erc20/types" ) var _ module.MigrationHandler = Migrator{}.Migrate2to3 diff --git a/x/erc20/keeper/migrations_test.go b/x/erc20/keeper/migrations_test.go index ec70a0573e..df7f23ce68 100644 --- a/x/erc20/keeper/migrations_test.go +++ b/x/erc20/keeper/migrations_test.go @@ -7,11 +7,11 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/encoding" - erc20keeper "github.com/evmos/evmos/v11/x/erc20/keeper" - v3types "github.com/evmos/evmos/v11/x/erc20/migrations/v3/types" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/encoding" + erc20keeper "github.com/evmos/evmos/v12/x/erc20/keeper" + v3types "github.com/evmos/evmos/v12/x/erc20/migrations/v3/types" + "github.com/evmos/evmos/v12/x/erc20/types" ) type mockSubspace struct { diff --git a/x/erc20/keeper/mint.go b/x/erc20/keeper/mint.go index b57b82a048..a4007d09d6 100644 --- a/x/erc20/keeper/mint.go +++ b/x/erc20/keeper/mint.go @@ -22,7 +22,7 @@ import ( errortypes "github.com/cosmos/cosmos-sdk/types/errors" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/x/erc20/types" ) // MintingEnabled checks that: diff --git a/x/erc20/keeper/mint_test.go b/x/erc20/keeper/mint_test.go index 7c81a5b2dc..4c4cc7d76e 100644 --- a/x/erc20/keeper/mint_test.go +++ b/x/erc20/keeper/mint_test.go @@ -6,8 +6,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/x/erc20/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/x/erc20/types" ) func (suite *KeeperTestSuite) TestMintingEnabled() { diff --git a/x/erc20/keeper/mock_test.go b/x/erc20/keeper/mock_test.go index 301c2f03ab..936ce48525 100644 --- a/x/erc20/keeper/mock_test.go +++ b/x/erc20/keeper/mock_test.go @@ -8,9 +8,9 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core" "github.com/ethereum/go-ethereum/core/vm" - "github.com/evmos/evmos/v11/x/erc20/types" - "github.com/evmos/evmos/v11/x/evm/statedb" - evm "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/x/erc20/types" + "github.com/evmos/evmos/v12/x/evm/statedb" + evm "github.com/evmos/evmos/v12/x/evm/types" "github.com/stretchr/testify/mock" ) diff --git a/x/erc20/keeper/msg_server.go b/x/erc20/keeper/msg_server.go index 6c4e9bcec7..daf4fea59d 100644 --- a/x/erc20/keeper/msg_server.go +++ b/x/erc20/keeper/msg_server.go @@ -28,8 +28,8 @@ import ( govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" "github.com/ethereum/go-ethereum/common" - "github.com/evmos/evmos/v11/contracts" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/contracts" + "github.com/evmos/evmos/v12/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 8d70c585ad..ba27d83206 100644 --- a/x/erc20/keeper/msg_server_test.go +++ b/x/erc20/keeper/msg_server_test.go @@ -12,10 +12,10 @@ import ( "github.com/ethereum/go-ethereum/common" - "github.com/evmos/evmos/v11/x/erc20/keeper" - "github.com/evmos/evmos/v11/x/erc20/types" - "github.com/evmos/evmos/v11/x/evm/statedb" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/x/erc20/keeper" + "github.com/evmos/evmos/v12/x/erc20/types" + "github.com/evmos/evmos/v12/x/evm/statedb" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" ) func (suite *KeeperTestSuite) TestConvertCoinNativeCoin() { diff --git a/x/erc20/keeper/params.go b/x/erc20/keeper/params.go index c741f5ddb6..1856115a1b 100644 --- a/x/erc20/keeper/params.go +++ b/x/erc20/keeper/params.go @@ -18,7 +18,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/x/erc20/types" ) var isTrue = []byte("0x01") diff --git a/x/erc20/keeper/params_test.go b/x/erc20/keeper/params_test.go index ee0bbb5df5..cc92d54e3d 100644 --- a/x/erc20/keeper/params_test.go +++ b/x/erc20/keeper/params_test.go @@ -3,7 +3,7 @@ package keeper_test import ( "reflect" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/x/erc20/types" ) func (suite *KeeperTestSuite) TestParams() { diff --git a/x/erc20/keeper/proposals.go b/x/erc20/keeper/proposals.go index f0209d9a8a..e8bfdb785d 100644 --- a/x/erc20/keeper/proposals.go +++ b/x/erc20/keeper/proposals.go @@ -23,7 +23,7 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" "github.com/ethereum/go-ethereum/common" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/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 178bff3eab..a0f482f066 100644 --- a/x/erc20/keeper/proposals_test.go +++ b/x/erc20/keeper/proposals_test.go @@ -12,12 +12,12 @@ import ( "github.com/ethereum/go-ethereum/common" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" - "github.com/evmos/evmos/v11/x/erc20/keeper" - "github.com/evmos/evmos/v11/x/erc20/types" - inflationtypes "github.com/evmos/evmos/v11/x/inflation/types" + "github.com/evmos/evmos/v12/x/erc20/keeper" + "github.com/evmos/evmos/v12/x/erc20/types" + inflationtypes "github.com/evmos/evmos/v12/x/inflation/types" ) const ( diff --git a/x/erc20/keeper/setup_test.go b/x/erc20/keeper/setup_test.go index 808deb808b..915c129203 100644 --- a/x/erc20/keeper/setup_test.go +++ b/x/erc20/keeper/setup_test.go @@ -14,10 +14,10 @@ import ( ibcgotesting "github.com/cosmos/ibc-go/v6/testing" "github.com/ethereum/go-ethereum/common" ethtypes "github.com/ethereum/go-ethereum/core/types" - "github.com/evmos/evmos/v11/app" - ibctesting "github.com/evmos/evmos/v11/ibc/testing" - "github.com/evmos/evmos/v11/x/erc20/types" - evm "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/app" + ibctesting "github.com/evmos/evmos/v12/ibc/testing" + "github.com/evmos/evmos/v12/x/erc20/types" + evm "github.com/evmos/evmos/v12/x/evm/types" "github.com/stretchr/testify/suite" ) diff --git a/x/erc20/keeper/token_pairs.go b/x/erc20/keeper/token_pairs.go index 571b1e2ef7..6d8fce8848 100644 --- a/x/erc20/keeper/token_pairs.go +++ b/x/erc20/keeper/token_pairs.go @@ -21,7 +21,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/ethereum/go-ethereum/common" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/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 9bd2137932..e45f47d150 100644 --- a/x/erc20/keeper/token_pairs_test.go +++ b/x/erc20/keeper/token_pairs_test.go @@ -5,9 +5,9 @@ import ( "github.com/ethereum/go-ethereum/common" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/x/erc20/types" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/x/erc20/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" ) func (suite *KeeperTestSuite) TestGetTokenPairs() { diff --git a/x/erc20/keeper/utils_test.go b/x/erc20/keeper/utils_test.go index 0a9c6042fd..c0f16892ef 100644 --- a/x/erc20/keeper/utils_test.go +++ b/x/erc20/keeper/utils_test.go @@ -21,21 +21,21 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common/hexutil" ethtypes "github.com/ethereum/go-ethereum/core/types" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/contracts" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - ibctesting "github.com/evmos/evmos/v11/ibc/testing" - "github.com/evmos/evmos/v11/server/config" - "github.com/evmos/evmos/v11/testutil" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - teststypes "github.com/evmos/evmos/v11/types/tests" - "github.com/evmos/evmos/v11/utils" - claimstypes "github.com/evmos/evmos/v11/x/claims/types" - "github.com/evmos/evmos/v11/x/erc20/types" - "github.com/evmos/evmos/v11/x/evm/statedb" - evm "github.com/evmos/evmos/v11/x/evm/types" - feemarkettypes "github.com/evmos/evmos/v11/x/feemarket/types" - inflationtypes "github.com/evmos/evmos/v11/x/inflation/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/contracts" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + ibctesting "github.com/evmos/evmos/v12/ibc/testing" + "github.com/evmos/evmos/v12/server/config" + "github.com/evmos/evmos/v12/testutil" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + teststypes "github.com/evmos/evmos/v12/types/tests" + "github.com/evmos/evmos/v12/utils" + claimstypes "github.com/evmos/evmos/v12/x/claims/types" + "github.com/evmos/evmos/v12/x/erc20/types" + "github.com/evmos/evmos/v12/x/evm/statedb" + evm "github.com/evmos/evmos/v12/x/evm/types" + feemarkettypes "github.com/evmos/evmos/v12/x/feemarket/types" + inflationtypes "github.com/evmos/evmos/v12/x/inflation/types" "github.com/stretchr/testify/require" ) diff --git a/x/erc20/migrations/v3/migration.go b/x/erc20/migrations/v3/migration.go index cb5a363a3d..52cb8291e2 100644 --- a/x/erc20/migrations/v3/migration.go +++ b/x/erc20/migrations/v3/migration.go @@ -19,8 +19,8 @@ package v3 import ( storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" - v3types "github.com/evmos/evmos/v11/x/erc20/migrations/v3/types" - "github.com/evmos/evmos/v11/x/erc20/types" + v3types "github.com/evmos/evmos/v12/x/erc20/migrations/v3/types" + "github.com/evmos/evmos/v12/x/erc20/types" ) var isTrue = []byte{0x01} diff --git a/x/erc20/migrations/v3/migration_test.go b/x/erc20/migrations/v3/migration_test.go index 04edf3c263..54c5b28918 100644 --- a/x/erc20/migrations/v3/migration_test.go +++ b/x/erc20/migrations/v3/migration_test.go @@ -5,17 +5,17 @@ import ( storetypes "github.com/cosmos/cosmos-sdk/store/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/encoding" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/encoding" - v3types "github.com/evmos/evmos/v11/x/erc20/migrations/v3/types" + v3types "github.com/evmos/evmos/v12/x/erc20/migrations/v3/types" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/x/erc20/types" "github.com/stretchr/testify/require" "github.com/cosmos/cosmos-sdk/testutil" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/x/erc20/migrations/v3" + "github.com/evmos/evmos/v12/x/erc20/migrations/v3" ) type mockSubspace struct { diff --git a/x/erc20/migrations/v3/types/genesis.pb.go b/x/erc20/migrations/v3/types/genesis.pb.go index 7e85ba8f1c..4ac228d560 100644 --- a/x/erc20/migrations/v3/types/genesis.pb.go +++ b/x/erc20/migrations/v3/types/genesis.pb.go @@ -10,7 +10,7 @@ import ( math_bits "math/bits" _ "github.com/cosmos/gogoproto/gogoproto" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/x/erc20/types" proto "github.com/gogo/protobuf/proto" ) diff --git a/x/erc20/migrations/v3/types/params.go b/x/erc20/migrations/v3/types/params.go index 40bc9498c4..59d069ff37 100644 --- a/x/erc20/migrations/v3/types/params.go +++ b/x/erc20/migrations/v3/types/params.go @@ -20,7 +20,7 @@ import ( "fmt" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/x/erc20/types" ) var _ types.LegacyParams = &V3Params{} diff --git a/x/erc20/module.go b/x/erc20/module.go index bdc49375d2..03f889470c 100644 --- a/x/erc20/module.go +++ b/x/erc20/module.go @@ -34,9 +34,9 @@ import ( "github.com/spf13/cobra" abci "github.com/tendermint/tendermint/abci/types" - "github.com/evmos/evmos/v11/x/erc20/client/cli" - "github.com/evmos/evmos/v11/x/erc20/keeper" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/x/erc20/client/cli" + "github.com/evmos/evmos/v12/x/erc20/keeper" + "github.com/evmos/evmos/v12/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 614ef0dc2d..7e2db450ce 100644 --- a/x/erc20/proposal_handler.go +++ b/x/erc20/proposal_handler.go @@ -23,8 +23,8 @@ import ( govv1beta1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" "github.com/ethereum/go-ethereum/common" - "github.com/evmos/evmos/v11/x/erc20/keeper" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/x/erc20/keeper" + "github.com/evmos/evmos/v12/x/erc20/types" ) // NewErc20ProposalHandler creates a governance handler to manage new proposal types. diff --git a/x/erc20/types/evm_test.go b/x/erc20/types/evm_test.go index 2a829c33f1..f8eebccdac 100644 --- a/x/erc20/types/evm_test.go +++ b/x/erc20/types/evm_test.go @@ -3,7 +3,7 @@ package types_test import ( "testing" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/x/erc20/types" "github.com/stretchr/testify/require" ) diff --git a/x/erc20/types/genesis_test.go b/x/erc20/types/genesis_test.go index ed5519774e..803abf3a0e 100644 --- a/x/erc20/types/genesis_test.go +++ b/x/erc20/types/genesis_test.go @@ -3,7 +3,7 @@ package types_test import ( "testing" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/x/erc20/types" "github.com/stretchr/testify/suite" ) diff --git a/x/erc20/types/interfaces.go b/x/erc20/types/interfaces.go index 268bdefe3d..b994f99493 100644 --- a/x/erc20/types/interfaces.go +++ b/x/erc20/types/interfaces.go @@ -29,9 +29,9 @@ import ( "github.com/ethereum/go-ethereum/core" "github.com/ethereum/go-ethereum/core/vm" - claimstypes "github.com/evmos/evmos/v11/x/claims/types" - "github.com/evmos/evmos/v11/x/evm/statedb" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + claimstypes "github.com/evmos/evmos/v12/x/claims/types" + "github.com/evmos/evmos/v12/x/evm/statedb" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" ) // AccountKeeper defines the expected interface needed to retrieve account info. diff --git a/x/erc20/types/msg_test.go b/x/erc20/types/msg_test.go index a0aeca7eb8..346b078179 100644 --- a/x/erc20/types/msg_test.go +++ b/x/erc20/types/msg_test.go @@ -10,8 +10,8 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/x/erc20/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/x/erc20/types" "github.com/ethereum/go-ethereum/common" ) diff --git a/x/erc20/types/params_test.go b/x/erc20/types/params_test.go index f38f02aed3..4ec69ecd64 100644 --- a/x/erc20/types/params_test.go +++ b/x/erc20/types/params_test.go @@ -3,7 +3,7 @@ package types_test import ( "testing" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/x/erc20/types" "github.com/stretchr/testify/suite" ) diff --git a/x/erc20/types/proposal.go b/x/erc20/types/proposal.go index 9feb10bde0..c030e412ef 100644 --- a/x/erc20/types/proposal.go +++ b/x/erc20/types/proposal.go @@ -25,7 +25,7 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" v1beta1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" ibctransfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" - evmostypes "github.com/evmos/evmos/v11/types" + evmostypes "github.com/evmos/evmos/v12/types" ) // constants diff --git a/x/erc20/types/proposal_test.go b/x/erc20/types/proposal_test.go index 94072a84e1..82bcf73b26 100644 --- a/x/erc20/types/proposal_test.go +++ b/x/erc20/types/proposal_test.go @@ -9,8 +9,8 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" length "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/x/erc20/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/x/erc20/types" ) type ProposalTestSuite struct { diff --git a/x/erc20/types/token_pair.go b/x/erc20/types/token_pair.go index 21d30abc85..fdf475de28 100644 --- a/x/erc20/types/token_pair.go +++ b/x/erc20/types/token_pair.go @@ -19,7 +19,7 @@ package types import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/ethereum/go-ethereum/common" - evmostypes "github.com/evmos/evmos/v11/types" + evmostypes "github.com/evmos/evmos/v12/types" "github.com/tendermint/tendermint/crypto/tmhash" ) diff --git a/x/erc20/types/token_pair_test.go b/x/erc20/types/token_pair_test.go index 98c89113e5..74dd0c2c91 100644 --- a/x/erc20/types/token_pair_test.go +++ b/x/erc20/types/token_pair_test.go @@ -5,8 +5,8 @@ import ( "testing" "github.com/ethereum/go-ethereum/common" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/x/erc20/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/x/erc20/types" "github.com/stretchr/testify/suite" "github.com/tendermint/tendermint/crypto/tmhash" ) diff --git a/x/erc20/types/utils_test.go b/x/erc20/types/utils_test.go index 87d2e1f5f4..5098644904 100644 --- a/x/erc20/types/utils_test.go +++ b/x/erc20/types/utils_test.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/x/erc20/types" "github.com/stretchr/testify/require" ) diff --git a/x/evm/client/cli/query.go b/x/evm/client/cli/query.go index 5a397d2576..0587421250 100644 --- a/x/evm/client/cli/query.go +++ b/x/evm/client/cli/query.go @@ -16,13 +16,13 @@ package cli import ( - rpctypes "github.com/evmos/evmos/v11/rpc/types" + rpctypes "github.com/evmos/evmos/v12/rpc/types" "github.com/spf13/cobra" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" - "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/x/evm/types" ) // GetQueryCmd returns the parent command for all x/bank CLi query commands. diff --git a/x/evm/client/cli/tx.go b/x/evm/client/cli/tx.go index 85d2da2451..ffbd438734 100644 --- a/x/evm/client/cli/tx.go +++ b/x/evm/client/cli/tx.go @@ -27,8 +27,8 @@ import ( "github.com/pkg/errors" "github.com/spf13/cobra" - rpctypes "github.com/evmos/evmos/v11/rpc/types" - "github.com/evmos/evmos/v11/x/evm/types" + rpctypes "github.com/evmos/evmos/v12/rpc/types" + "github.com/evmos/evmos/v12/x/evm/types" ) // GetTxCmd returns the transaction commands for this module diff --git a/x/evm/genesis.go b/x/evm/genesis.go index b0e288e50e..267543701b 100644 --- a/x/evm/genesis.go +++ b/x/evm/genesis.go @@ -25,9 +25,9 @@ import ( "github.com/ethereum/go-ethereum/crypto" abci "github.com/tendermint/tendermint/abci/types" - evmostypes "github.com/evmos/evmos/v11/types" - "github.com/evmos/evmos/v11/x/evm/keeper" - "github.com/evmos/evmos/v11/x/evm/types" + evmostypes "github.com/evmos/evmos/v12/types" + "github.com/evmos/evmos/v12/x/evm/keeper" + "github.com/evmos/evmos/v12/x/evm/types" ) // InitGenesis initializes genesis state based on exported genesis diff --git a/x/evm/genesis_test.go b/x/evm/genesis_test.go index f2fad63c63..c0cb367fa2 100644 --- a/x/evm/genesis_test.go +++ b/x/evm/genesis_test.go @@ -6,11 +6,11 @@ import ( "github.com/ethereum/go-ethereum/common" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - evmostypes "github.com/evmos/evmos/v11/types" - "github.com/evmos/evmos/v11/x/evm" - "github.com/evmos/evmos/v11/x/evm/statedb" - "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + evmostypes "github.com/evmos/evmos/v12/types" + "github.com/evmos/evmos/v12/x/evm" + "github.com/evmos/evmos/v12/x/evm/statedb" + "github.com/evmos/evmos/v12/x/evm/types" ) func (suite *EvmTestSuite) TestInitGenesis() { diff --git a/x/evm/handler.go b/x/evm/handler.go index 4b19c498c7..e6ff220e4e 100644 --- a/x/evm/handler.go +++ b/x/evm/handler.go @@ -20,7 +20,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" errortypes "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/x/evm/types" ) // NewHandler returns a handler for Ethermint type messages. diff --git a/x/evm/handler_test.go b/x/evm/handler_test.go index 0a1de638fc..e5f37b5c26 100644 --- a/x/evm/handler_test.go +++ b/x/evm/handler_test.go @@ -6,8 +6,8 @@ import ( "testing" "time" - "github.com/evmos/evmos/v11/utils" - "github.com/evmos/evmos/v11/x/evm/keeper" + "github.com/evmos/evmos/v12/utils" + "github.com/evmos/evmos/v12/x/evm/keeper" sdkmath "cosmossdk.io/math" "github.com/gogo/protobuf/proto" @@ -19,7 +19,7 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - feemarkettypes "github.com/evmos/evmos/v11/x/feemarket/types" + feemarkettypes "github.com/evmos/evmos/v12/x/feemarket/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" "github.com/ethereum/go-ethereum/common" @@ -33,13 +33,13 @@ import ( "github.com/cosmos/cosmos-sdk/crypto/keyring" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - evmostypes "github.com/evmos/evmos/v11/types" - "github.com/evmos/evmos/v11/x/evm" - "github.com/evmos/evmos/v11/x/evm/statedb" - "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + evmostypes "github.com/evmos/evmos/v12/types" + "github.com/evmos/evmos/v12/x/evm" + "github.com/evmos/evmos/v12/x/evm/statedb" + "github.com/evmos/evmos/v12/x/evm/types" "github.com/tendermint/tendermint/crypto/tmhash" tmproto "github.com/tendermint/tendermint/proto/tendermint/types" diff --git a/x/evm/keeper/abci_test.go b/x/evm/keeper/abci_test.go index 5bbcbd2a1c..71891c6c73 100644 --- a/x/evm/keeper/abci_test.go +++ b/x/evm/keeper/abci_test.go @@ -1,7 +1,7 @@ package keeper_test import ( - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" "github.com/tendermint/tendermint/abci/types" ) diff --git a/x/evm/keeper/benchmark_test.go b/x/evm/keeper/benchmark_test.go index 2746369f7b..1cadb59ed4 100644 --- a/x/evm/keeper/benchmark_test.go +++ b/x/evm/keeper/benchmark_test.go @@ -12,8 +12,8 @@ import ( "github.com/ethereum/go-ethereum/common" ethtypes "github.com/ethereum/go-ethereum/core/types" - evmostypes "github.com/evmos/evmos/v11/types" - "github.com/evmos/evmos/v11/x/evm/types" + evmostypes "github.com/evmos/evmos/v12/types" + "github.com/evmos/evmos/v12/x/evm/types" ) func SetupContract(b *testing.B) (*KeeperTestSuite, common.Address) { diff --git a/x/evm/keeper/config.go b/x/evm/keeper/config.go index 16993883fe..9f25cd9b6e 100644 --- a/x/evm/keeper/config.go +++ b/x/evm/keeper/config.go @@ -23,8 +23,8 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core" "github.com/ethereum/go-ethereum/core/vm" - "github.com/evmos/evmos/v11/x/evm/statedb" - "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/x/evm/statedb" + "github.com/evmos/evmos/v12/x/evm/types" ) // EVMConfig creates the EVMConfig based on current state diff --git a/x/evm/keeper/fees.go b/x/evm/keeper/fees.go index e8772a61e5..39b963a96a 100644 --- a/x/evm/keeper/fees.go +++ b/x/evm/keeper/fees.go @@ -28,7 +28,7 @@ import ( errortypes "github.com/cosmos/cosmos-sdk/types/errors" authante "github.com/cosmos/cosmos-sdk/x/auth/ante" - "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/x/evm/types" ) // CheckSenderBalance validates that the tx cost value is positive and that the diff --git a/x/evm/keeper/fees_test.go b/x/evm/keeper/fees_test.go index 5ea412f6f3..cd7de0ed2b 100644 --- a/x/evm/keeper/fees_test.go +++ b/x/evm/keeper/fees_test.go @@ -8,8 +8,8 @@ import ( "github.com/ethereum/go-ethereum/common" ethtypes "github.com/ethereum/go-ethereum/core/types" ethparams "github.com/ethereum/go-ethereum/params" - "github.com/evmos/evmos/v11/x/evm/keeper" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/x/evm/keeper" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" ) func (suite *KeeperTestSuite) TestCheckSenderBalance() { diff --git a/x/evm/keeper/gas.go b/x/evm/keeper/gas.go index 4b9f5d8ed1..976d48630a 100644 --- a/x/evm/keeper/gas.go +++ b/x/evm/keeper/gas.go @@ -27,7 +27,7 @@ import ( errortypes "github.com/cosmos/cosmos-sdk/types/errors" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/x/evm/types" ) // GetEthIntrinsicGas returns the intrinsic gas cost for the transaction diff --git a/x/evm/keeper/grpc_query.go b/x/evm/keeper/grpc_query.go index 4d8ecc48ea..20429bb2cc 100644 --- a/x/evm/keeper/grpc_query.go +++ b/x/evm/keeper/grpc_query.go @@ -39,9 +39,9 @@ import ( "github.com/ethereum/go-ethereum/core/vm" ethparams "github.com/ethereum/go-ethereum/params" - evmostypes "github.com/evmos/evmos/v11/types" - "github.com/evmos/evmos/v11/x/evm/statedb" - "github.com/evmos/evmos/v11/x/evm/types" + evmostypes "github.com/evmos/evmos/v12/types" + "github.com/evmos/evmos/v12/x/evm/statedb" + "github.com/evmos/evmos/v12/x/evm/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/evm/keeper/grpc_query_test.go b/x/evm/keeper/grpc_query_test.go index e6c47614aa..deae04512f 100644 --- a/x/evm/keeper/grpc_query_test.go +++ b/x/evm/keeper/grpc_query_test.go @@ -15,10 +15,10 @@ import ( ethlogger "github.com/ethereum/go-ethereum/eth/tracers/logger" ethparams "github.com/ethereum/go-ethereum/params" - "github.com/evmos/evmos/v11/server/config" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/x/evm/statedb" - "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/server/config" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/x/evm/statedb" + "github.com/evmos/evmos/v12/x/evm/types" ) // Not valid Ethereum address diff --git a/x/evm/keeper/hooks.go b/x/evm/keeper/hooks.go index 5a852ba5b7..7e4f92cead 100644 --- a/x/evm/keeper/hooks.go +++ b/x/evm/keeper/hooks.go @@ -20,7 +20,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/ethereum/go-ethereum/core" ethtypes "github.com/ethereum/go-ethereum/core/types" - "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/x/evm/types" ) var _ types.EvmHooks = MultiEvmHooks{} diff --git a/x/evm/keeper/hooks_test.go b/x/evm/keeper/hooks_test.go index 01b41da7ee..964e29d670 100644 --- a/x/evm/keeper/hooks_test.go +++ b/x/evm/keeper/hooks_test.go @@ -9,9 +9,9 @@ import ( "github.com/ethereum/go-ethereum/core" ethtypes "github.com/ethereum/go-ethereum/core/types" - "github.com/evmos/evmos/v11/x/evm/keeper" - "github.com/evmos/evmos/v11/x/evm/statedb" - "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/x/evm/keeper" + "github.com/evmos/evmos/v12/x/evm/statedb" + "github.com/evmos/evmos/v12/x/evm/types" ) // LogRecordHook records all the logs diff --git a/x/evm/keeper/integration_test.go b/x/evm/keeper/integration_test.go index 516e7fa9c2..f0a8b796fb 100644 --- a/x/evm/keeper/integration_test.go +++ b/x/evm/keeper/integration_test.go @@ -12,17 +12,17 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/ethereum/go-ethereum/common" ethtypes "github.com/ethereum/go-ethereum/core/types" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - "github.com/evmos/evmos/v11/encoding" - "github.com/evmos/evmos/v11/testutil" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/utils" - "github.com/evmos/evmos/v11/x/feemarket/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/encoding" + "github.com/evmos/evmos/v12/testutil" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/utils" + "github.com/evmos/evmos/v12/x/feemarket/types" "github.com/cosmos/cosmos-sdk/simapp" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" abci "github.com/tendermint/tendermint/abci/types" "github.com/tendermint/tendermint/libs/log" dbm "github.com/tendermint/tm-db" diff --git a/x/evm/keeper/keeper.go b/x/evm/keeper/keeper.go index afcf97bf3e..c0beffda21 100644 --- a/x/evm/keeper/keeper.go +++ b/x/evm/keeper/keeper.go @@ -31,9 +31,9 @@ import ( "github.com/ethereum/go-ethereum/params" "github.com/tendermint/tendermint/libs/log" - evmostypes "github.com/evmos/evmos/v11/types" - "github.com/evmos/evmos/v11/x/evm/statedb" - "github.com/evmos/evmos/v11/x/evm/types" + evmostypes "github.com/evmos/evmos/v12/types" + "github.com/evmos/evmos/v12/x/evm/statedb" + "github.com/evmos/evmos/v12/x/evm/types" ) // Keeper grants access to the EVM module state and implements the go-ethereum StateDB interface. diff --git a/x/evm/keeper/keeper_test.go b/x/evm/keeper/keeper_test.go index 04b3dfe018..8507d987eb 100644 --- a/x/evm/keeper/keeper_test.go +++ b/x/evm/keeper/keeper_test.go @@ -6,10 +6,10 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - evmostypes "github.com/evmos/evmos/v11/types" - "github.com/evmos/evmos/v11/x/evm/keeper" - "github.com/evmos/evmos/v11/x/evm/statedb" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + evmostypes "github.com/evmos/evmos/v12/types" + "github.com/evmos/evmos/v12/x/evm/keeper" + "github.com/evmos/evmos/v12/x/evm/statedb" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" "github.com/ethereum/go-ethereum/common" diff --git a/x/evm/keeper/migrations.go b/x/evm/keeper/migrations.go index 5835d363e3..4bfa1028ba 100644 --- a/x/evm/keeper/migrations.go +++ b/x/evm/keeper/migrations.go @@ -17,9 +17,9 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - v4 "github.com/evmos/evmos/v11/x/evm/migrations/v4" - v5 "github.com/evmos/evmos/v11/x/evm/migrations/v5" - "github.com/evmos/evmos/v11/x/evm/types" + v4 "github.com/evmos/evmos/v12/x/evm/migrations/v4" + v5 "github.com/evmos/evmos/v12/x/evm/migrations/v5" + "github.com/evmos/evmos/v12/x/evm/types" ) // Migrator is a struct for handling in-place store migrations. diff --git a/x/evm/keeper/migrations_test.go b/x/evm/keeper/migrations_test.go index 07da37fd3e..0728563f16 100644 --- a/x/evm/keeper/migrations_test.go +++ b/x/evm/keeper/migrations_test.go @@ -2,8 +2,8 @@ package keeper_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - evmkeeper "github.com/evmos/evmos/v11/x/evm/keeper" - "github.com/evmos/evmos/v11/x/evm/types" + evmkeeper "github.com/evmos/evmos/v12/x/evm/keeper" + "github.com/evmos/evmos/v12/x/evm/types" ) type mockSubspace struct { diff --git a/x/evm/keeper/msg_server.go b/x/evm/keeper/msg_server.go index e70b14700c..4087617018 100644 --- a/x/evm/keeper/msg_server.go +++ b/x/evm/keeper/msg_server.go @@ -31,7 +31,7 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/x/evm/types" ) var _ types.MsgServer = &Keeper{} diff --git a/x/evm/keeper/msg_server_test.go b/x/evm/keeper/msg_server_test.go index fe8dc777ed..652a1431d3 100644 --- a/x/evm/keeper/msg_server_test.go +++ b/x/evm/keeper/msg_server_test.go @@ -8,8 +8,8 @@ import ( ethtypes "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/params" - "github.com/evmos/evmos/v11/x/evm/statedb" - "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/x/evm/statedb" + "github.com/evmos/evmos/v12/x/evm/types" ) func (suite *KeeperTestSuite) TestEthereumTx() { diff --git a/x/evm/keeper/params.go b/x/evm/keeper/params.go index ce8dd222cb..da185f1372 100644 --- a/x/evm/keeper/params.go +++ b/x/evm/keeper/params.go @@ -17,7 +17,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/x/evm/types" ) // GetParams returns the total set of evm parameters. diff --git a/x/evm/keeper/params_benchmark_test.go b/x/evm/keeper/params_benchmark_test.go index ac5bc82bba..787c0b3304 100644 --- a/x/evm/keeper/params_benchmark_test.go +++ b/x/evm/keeper/params_benchmark_test.go @@ -3,7 +3,7 @@ package keeper_test import ( "testing" - "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/x/evm/types" ) func BenchmarkSetParams(b *testing.B) { diff --git a/x/evm/keeper/params_test.go b/x/evm/keeper/params_test.go index 12d6778cb8..02cdb17951 100644 --- a/x/evm/keeper/params_test.go +++ b/x/evm/keeper/params_test.go @@ -3,7 +3,7 @@ package keeper_test import ( "reflect" - "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/x/evm/types" ) func (suite *KeeperTestSuite) TestParams() { diff --git a/x/evm/keeper/setup_test.go b/x/evm/keeper/setup_test.go index 5854db4b87..d47629fce2 100644 --- a/x/evm/keeper/setup_test.go +++ b/x/evm/keeper/setup_test.go @@ -5,7 +5,7 @@ import ( "testing" "time" - "github.com/evmos/evmos/v11/utils" + "github.com/evmos/evmos/v12/utils" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" @@ -24,14 +24,14 @@ import ( ethtypes "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/crypto" "github.com/ethereum/go-ethereum/params" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - "github.com/evmos/evmos/v11/encoding" - "github.com/evmos/evmos/v11/testutil" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - evmostypes "github.com/evmos/evmos/v11/types" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" - feemarkettypes "github.com/evmos/evmos/v11/x/feemarket/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/encoding" + "github.com/evmos/evmos/v12/testutil" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + evmostypes "github.com/evmos/evmos/v12/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" + feemarkettypes "github.com/evmos/evmos/v12/x/feemarket/types" "github.com/stretchr/testify/require" "github.com/stretchr/testify/suite" abci "github.com/tendermint/tendermint/abci/types" diff --git a/x/evm/keeper/state_transition.go b/x/evm/keeper/state_transition.go index 937bea2161..1f2be6faae 100644 --- a/x/evm/keeper/state_transition.go +++ b/x/evm/keeper/state_transition.go @@ -23,9 +23,9 @@ import ( errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" - evmostypes "github.com/evmos/evmos/v11/types" - "github.com/evmos/evmos/v11/x/evm/statedb" - "github.com/evmos/evmos/v11/x/evm/types" + evmostypes "github.com/evmos/evmos/v12/types" + "github.com/evmos/evmos/v12/x/evm/statedb" + "github.com/evmos/evmos/v12/x/evm/types" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core" diff --git a/x/evm/keeper/state_transition_benchmark_test.go b/x/evm/keeper/state_transition_benchmark_test.go index 9438469994..88ba9e096b 100644 --- a/x/evm/keeper/state_transition_benchmark_test.go +++ b/x/evm/keeper/state_transition_benchmark_test.go @@ -11,7 +11,7 @@ import ( "github.com/ethereum/go-ethereum/core" ethtypes "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/params" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" "github.com/stretchr/testify/require" ) diff --git a/x/evm/keeper/state_transition_test.go b/x/evm/keeper/state_transition_test.go index ea87ddc8bc..1892f86baf 100644 --- a/x/evm/keeper/state_transition_test.go +++ b/x/evm/keeper/state_transition_test.go @@ -12,10 +12,10 @@ import ( "github.com/ethereum/go-ethereum/core" ethtypes "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/params" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/x/evm/keeper" - "github.com/evmos/evmos/v11/x/evm/statedb" - "github.com/evmos/evmos/v11/x/evm/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/x/evm/keeper" + "github.com/evmos/evmos/v12/x/evm/statedb" + "github.com/evmos/evmos/v12/x/evm/types" "github.com/tendermint/tendermint/crypto/tmhash" tmproto "github.com/tendermint/tendermint/proto/tendermint/types" tmtypes "github.com/tendermint/tendermint/types" diff --git a/x/evm/keeper/statedb.go b/x/evm/keeper/statedb.go index b2329ec572..29ba9e1f55 100644 --- a/x/evm/keeper/statedb.go +++ b/x/evm/keeper/statedb.go @@ -25,9 +25,9 @@ import ( "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/ethereum/go-ethereum/common" - evmostypes "github.com/evmos/evmos/v11/types" - "github.com/evmos/evmos/v11/x/evm/statedb" - "github.com/evmos/evmos/v11/x/evm/types" + evmostypes "github.com/evmos/evmos/v12/types" + "github.com/evmos/evmos/v12/x/evm/statedb" + "github.com/evmos/evmos/v12/x/evm/types" ) var _ statedb.Keeper = &Keeper{} diff --git a/x/evm/keeper/statedb_benchmark_test.go b/x/evm/keeper/statedb_benchmark_test.go index 895b18973b..12d6051f67 100644 --- a/x/evm/keeper/statedb_benchmark_test.go +++ b/x/evm/keeper/statedb_benchmark_test.go @@ -10,7 +10,7 @@ import ( ethtypes "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/crypto" - utiltx "github.com/evmos/evmos/v11/testutil/tx" + utiltx "github.com/evmos/evmos/v12/testutil/tx" ) func BenchmarkCreateAccountNew(b *testing.B) { diff --git a/x/evm/keeper/statedb_test.go b/x/evm/keeper/statedb_test.go index aa71c3c5dc..4e10bfe0e4 100644 --- a/x/evm/keeper/statedb_test.go +++ b/x/evm/keeper/statedb_test.go @@ -16,10 +16,10 @@ import ( ethtypes "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/core/vm" "github.com/ethereum/go-ethereum/crypto" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/x/evm/statedb" - "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/x/evm/statedb" + "github.com/evmos/evmos/v12/x/evm/types" ) func (suite *KeeperTestSuite) TestCreateAccount() { diff --git a/x/evm/keeper/utils_test.go b/x/evm/keeper/utils_test.go index 302a26988e..ada3d79540 100644 --- a/x/evm/keeper/utils_test.go +++ b/x/evm/keeper/utils_test.go @@ -11,10 +11,10 @@ import ( "github.com/ethereum/go-ethereum/common/hexutil" ethtypes "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/crypto" - "github.com/evmos/evmos/v11/server/config" - "github.com/evmos/evmos/v11/testutil" - "github.com/evmos/evmos/v11/x/evm/statedb" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/server/config" + "github.com/evmos/evmos/v12/testutil" + "github.com/evmos/evmos/v12/x/evm/statedb" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" "github.com/stretchr/testify/require" ) diff --git a/x/evm/migrations/v4/migrate.go b/x/evm/migrations/v4/migrate.go index a8a29e5966..5a90b48464 100644 --- a/x/evm/migrations/v4/migrate.go +++ b/x/evm/migrations/v4/migrate.go @@ -20,8 +20,8 @@ import ( storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" - v4types "github.com/evmos/evmos/v11/x/evm/migrations/v4/types" - "github.com/evmos/evmos/v11/x/evm/types" + v4types "github.com/evmos/evmos/v12/x/evm/migrations/v4/types" + "github.com/evmos/evmos/v12/x/evm/types" ) // MigrateStore migrates the x/evm module state from the consensus version 3 to diff --git a/x/evm/migrations/v4/migrate_test.go b/x/evm/migrations/v4/migrate_test.go index 4b7ea10c15..3c89c09a59 100644 --- a/x/evm/migrations/v4/migrate_test.go +++ b/x/evm/migrations/v4/migrate_test.go @@ -20,14 +20,14 @@ import ( "github.com/stretchr/testify/require" - "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/x/evm/types" "github.com/cosmos/cosmos-sdk/testutil" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/encoding" - v4 "github.com/evmos/evmos/v11/x/evm/migrations/v4" - v4types "github.com/evmos/evmos/v11/x/evm/migrations/v4/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/encoding" + v4 "github.com/evmos/evmos/v12/x/evm/migrations/v4" + v4types "github.com/evmos/evmos/v12/x/evm/migrations/v4/types" ) type mockSubspace struct { diff --git a/x/evm/migrations/v5/migrate.go b/x/evm/migrations/v5/migrate.go index 731301d4b7..055c734d1b 100644 --- a/x/evm/migrations/v5/migrate.go +++ b/x/evm/migrations/v5/migrate.go @@ -19,9 +19,9 @@ import ( "github.com/cosmos/cosmos-sdk/codec" storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/x/evm/types" - v5types "github.com/evmos/evmos/v11/x/evm/migrations/v5/types" + v5types "github.com/evmos/evmos/v12/x/evm/migrations/v5/types" ) // MigrateStore migrates the x/evm module state from the consensus version 4 to diff --git a/x/evm/migrations/v5/migrate_test.go b/x/evm/migrations/v5/migrate_test.go index 8851f1a6f9..81ee883ec7 100644 --- a/x/evm/migrations/v5/migrate_test.go +++ b/x/evm/migrations/v5/migrate_test.go @@ -22,11 +22,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/encoding" - v5 "github.com/evmos/evmos/v11/x/evm/migrations/v5" - v5types "github.com/evmos/evmos/v11/x/evm/migrations/v5/types" - "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/encoding" + v5 "github.com/evmos/evmos/v12/x/evm/migrations/v5" + v5types "github.com/evmos/evmos/v12/x/evm/migrations/v5/types" + "github.com/evmos/evmos/v12/x/evm/types" ) func TestMigrate(t *testing.T) { diff --git a/x/evm/module.go b/x/evm/module.go index 2c1c3a4ba9..06a046e6a9 100644 --- a/x/evm/module.go +++ b/x/evm/module.go @@ -34,9 +34,9 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/evmos/evmos/v11/x/evm/client/cli" - "github.com/evmos/evmos/v11/x/evm/keeper" - "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/x/evm/client/cli" + "github.com/evmos/evmos/v12/x/evm/keeper" + "github.com/evmos/evmos/v12/x/evm/types" ) var ( diff --git a/x/evm/statedb/config.go b/x/evm/statedb/config.go index 34148b88e1..0c523c6cac 100644 --- a/x/evm/statedb/config.go +++ b/x/evm/statedb/config.go @@ -20,7 +20,7 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/params" - "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/x/evm/types" ) // TxConfig encapulates the readonly information of current tx for `StateDB`. diff --git a/x/evm/statedb/mock_test.go b/x/evm/statedb/mock_test.go index c307ddf7c7..e4e0f3a7fc 100644 --- a/x/evm/statedb/mock_test.go +++ b/x/evm/statedb/mock_test.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/crypto" - "github.com/evmos/evmos/v11/x/evm/statedb" + "github.com/evmos/evmos/v12/x/evm/statedb" ) var ( diff --git a/x/evm/statedb/statedb_test.go b/x/evm/statedb/statedb_test.go index c09efae5b7..0f4e3be6a6 100644 --- a/x/evm/statedb/statedb_test.go +++ b/x/evm/statedb/statedb_test.go @@ -9,7 +9,7 @@ import ( ethtypes "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/core/vm" "github.com/ethereum/go-ethereum/crypto" - "github.com/evmos/evmos/v11/x/evm/statedb" + "github.com/evmos/evmos/v12/x/evm/statedb" "github.com/stretchr/testify/suite" ) diff --git a/x/evm/types/access_list_test.go b/x/evm/types/access_list_test.go index 1478f829c7..e7ef98e8eb 100644 --- a/x/evm/types/access_list_test.go +++ b/x/evm/types/access_list_test.go @@ -3,7 +3,7 @@ package types_test import ( "github.com/ethereum/go-ethereum/common" ethtypes "github.com/ethereum/go-ethereum/core/types" - "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/x/evm/types" ) func (suite *TxDataTestSuite) TestTestNewAccessList() { diff --git a/x/evm/types/access_list_tx.go b/x/evm/types/access_list_tx.go index 3db2335c09..59f6510def 100644 --- a/x/evm/types/access_list_tx.go +++ b/x/evm/types/access_list_tx.go @@ -25,7 +25,7 @@ import ( "github.com/ethereum/go-ethereum/common" ethtypes "github.com/ethereum/go-ethereum/core/types" - "github.com/evmos/evmos/v11/types" + "github.com/evmos/evmos/v12/types" ) func newAccessListTx(tx *ethtypes.Transaction) (*AccessListTx, error) { diff --git a/x/evm/types/access_list_tx_test.go b/x/evm/types/access_list_tx_test.go index 6b3664a2b9..c4d46f4ff4 100644 --- a/x/evm/types/access_list_tx_test.go +++ b/x/evm/types/access_list_tx_test.go @@ -4,7 +4,7 @@ import ( "math/big" ethtypes "github.com/ethereum/go-ethereum/core/types" - "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/x/evm/types" ) func (suite *TxDataTestSuite) TestAccessListTxCopy() { diff --git a/x/evm/types/dynamic_fee_tx.go b/x/evm/types/dynamic_fee_tx.go index dffeab0cb2..82b407a722 100644 --- a/x/evm/types/dynamic_fee_tx.go +++ b/x/evm/types/dynamic_fee_tx.go @@ -25,7 +25,7 @@ import ( "github.com/ethereum/go-ethereum/common" ethtypes "github.com/ethereum/go-ethereum/core/types" - "github.com/evmos/evmos/v11/types" + "github.com/evmos/evmos/v12/types" ) func NewDynamicFeeTx(tx *ethtypes.Transaction) (*DynamicFeeTx, error) { diff --git a/x/evm/types/dynamic_fee_tx_test.go b/x/evm/types/dynamic_fee_tx_test.go index 0b3b74c7e5..5d6ecd5e3b 100644 --- a/x/evm/types/dynamic_fee_tx_test.go +++ b/x/evm/types/dynamic_fee_tx_test.go @@ -11,8 +11,8 @@ import ( "github.com/ethereum/go-ethereum/common/hexutil" ethtypes "github.com/ethereum/go-ethereum/core/types" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/x/evm/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/x/evm/types" "github.com/stretchr/testify/suite" ) diff --git a/x/evm/types/genesis.go b/x/evm/types/genesis.go index 73339b22e1..9059f5d264 100644 --- a/x/evm/types/genesis.go +++ b/x/evm/types/genesis.go @@ -18,7 +18,7 @@ package types import ( "fmt" - "github.com/evmos/evmos/v11/types" + "github.com/evmos/evmos/v12/types" ) // Validate performs a basic validation of a GenesisAccount fields. diff --git a/x/evm/types/genesis_test.go b/x/evm/types/genesis_test.go index 161a5ce969..bb599e19ee 100644 --- a/x/evm/types/genesis_test.go +++ b/x/evm/types/genesis_test.go @@ -6,7 +6,7 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/stretchr/testify/suite" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" ) type GenesisTestSuite struct { diff --git a/x/evm/types/interfaces.go b/x/evm/types/interfaces.go index 45d76b0470..6723659a8e 100644 --- a/x/evm/types/interfaces.go +++ b/x/evm/types/interfaces.go @@ -26,7 +26,7 @@ import ( "github.com/ethereum/go-ethereum/core" ethtypes "github.com/ethereum/go-ethereum/core/types" - feemarkettypes "github.com/evmos/evmos/v11/x/feemarket/types" + feemarkettypes "github.com/evmos/evmos/v12/x/feemarket/types" ) // AccountKeeper defines the expected account keeper interface diff --git a/x/evm/types/legacy_tx.go b/x/evm/types/legacy_tx.go index dba5807335..1cc44b353a 100644 --- a/x/evm/types/legacy_tx.go +++ b/x/evm/types/legacy_tx.go @@ -23,7 +23,7 @@ import ( errorsmod "cosmossdk.io/errors" "github.com/ethereum/go-ethereum/common" ethtypes "github.com/ethereum/go-ethereum/core/types" - "github.com/evmos/evmos/v11/types" + "github.com/evmos/evmos/v12/types" ) func NewLegacyTx(tx *ethtypes.Transaction) (*LegacyTx, error) { diff --git a/x/evm/types/legacy_tx_test.go b/x/evm/types/legacy_tx_test.go index 3d18297cca..dab1c47f95 100644 --- a/x/evm/types/legacy_tx_test.go +++ b/x/evm/types/legacy_tx_test.go @@ -6,7 +6,7 @@ import ( "github.com/ethereum/go-ethereum/common" ethtypes "github.com/ethereum/go-ethereum/core/types" - "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/x/evm/types" ) func (suite *TxDataTestSuite) TestNewLegacyTx() { diff --git a/x/evm/types/logs.go b/x/evm/types/logs.go index 148d077b5f..739e0c20c2 100644 --- a/x/evm/types/logs.go +++ b/x/evm/types/logs.go @@ -22,7 +22,7 @@ import ( "github.com/ethereum/go-ethereum/common" ethtypes "github.com/ethereum/go-ethereum/core/types" - evmostypes "github.com/evmos/evmos/v11/types" + evmostypes "github.com/evmos/evmos/v12/types" ) // NewTransactionLogs creates a new NewTransactionLogs instance. diff --git a/x/evm/types/logs_test.go b/x/evm/types/logs_test.go index e6caf6fb95..bef3e3ee25 100644 --- a/x/evm/types/logs_test.go +++ b/x/evm/types/logs_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/x/evm/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/x/evm/types" "github.com/ethereum/go-ethereum/common" ) diff --git a/x/evm/types/msg.go b/x/evm/types/msg.go index 9ea54a0dca..6b4a134f4a 100644 --- a/x/evm/types/msg.go +++ b/x/evm/types/msg.go @@ -32,7 +32,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/auth/signing" authtx "github.com/cosmos/cosmos-sdk/x/auth/tx" - "github.com/evmos/evmos/v11/types" + "github.com/evmos/evmos/v12/types" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core" diff --git a/x/evm/types/msg_test.go b/x/evm/types/msg_test.go index fe3f1aac7d..dce514cad4 100644 --- a/x/evm/types/msg_test.go +++ b/x/evm/types/msg_test.go @@ -17,12 +17,12 @@ import ( "github.com/ethereum/go-ethereum/common" ethtypes "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/crypto" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - utiltx "github.com/evmos/evmos/v11/testutil/tx" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + utiltx "github.com/evmos/evmos/v12/testutil/tx" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/encoding" - "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/encoding" + "github.com/evmos/evmos/v12/x/evm/types" ) const invalidAddress = "0x0000" diff --git a/x/evm/types/params.go b/x/evm/types/params.go index d3a4ec9045..02e05d0acd 100644 --- a/x/evm/types/params.go +++ b/x/evm/types/params.go @@ -24,7 +24,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/utils" + "github.com/evmos/evmos/v12/utils" ) var ( diff --git a/x/evm/types/tx_args_test.go b/x/evm/types/tx_args_test.go index 54a684edc7..14ac521ed6 100644 --- a/x/evm/types/tx_args_test.go +++ b/x/evm/types/tx_args_test.go @@ -7,7 +7,7 @@ import ( "github.com/ethereum/go-ethereum/common" ethtypes "github.com/ethereum/go-ethereum/core/types" - "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/x/evm/types" ) func (suite *TxDataTestSuite) TestTxArgsString() { diff --git a/x/evm/types/utils_test.go b/x/evm/types/utils_test.go index e2b57f2a53..d660b853c5 100644 --- a/x/evm/types/utils_test.go +++ b/x/evm/types/utils_test.go @@ -14,10 +14,10 @@ import ( proto "github.com/gogo/protobuf/proto" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/encoding" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/encoding" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" "github.com/stretchr/testify/require" ) diff --git a/x/feemarket/client/cli/query.go b/x/feemarket/client/cli/query.go index 83c0ac4e54..44e63c991e 100644 --- a/x/feemarket/client/cli/query.go +++ b/x/feemarket/client/cli/query.go @@ -21,7 +21,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" - "github.com/evmos/evmos/v11/x/feemarket/types" + "github.com/evmos/evmos/v12/x/feemarket/types" ) // GetQueryCmd returns the parent command for all x/feemarket CLI query commands. diff --git a/x/feemarket/genesis.go b/x/feemarket/genesis.go index 7399ef0150..280213c233 100644 --- a/x/feemarket/genesis.go +++ b/x/feemarket/genesis.go @@ -20,8 +20,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" abci "github.com/tendermint/tendermint/abci/types" - "github.com/evmos/evmos/v11/x/feemarket/keeper" - "github.com/evmos/evmos/v11/x/feemarket/types" + "github.com/evmos/evmos/v12/x/feemarket/keeper" + "github.com/evmos/evmos/v12/x/feemarket/types" ) // InitGenesis initializes genesis state based on exported genesis diff --git a/x/feemarket/handler.go b/x/feemarket/handler.go index 46dd807963..91b7ae00cf 100644 --- a/x/feemarket/handler.go +++ b/x/feemarket/handler.go @@ -19,7 +19,7 @@ import ( errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" errortypes "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/evmos/evmos/v11/x/feemarket/types" + "github.com/evmos/evmos/v12/x/feemarket/types" ) // NewHandler returns a handler for Ethermint type messages. diff --git a/x/feemarket/keeper/abci.go b/x/feemarket/keeper/abci.go index 4d5fe7a8c5..03ce8314bf 100644 --- a/x/feemarket/keeper/abci.go +++ b/x/feemarket/keeper/abci.go @@ -18,7 +18,7 @@ package keeper import ( "fmt" - "github.com/evmos/evmos/v11/x/feemarket/types" + "github.com/evmos/evmos/v12/x/feemarket/types" abci "github.com/tendermint/tendermint/abci/types" sdkmath "cosmossdk.io/math" diff --git a/x/feemarket/keeper/grpc_query.go b/x/feemarket/keeper/grpc_query.go index 93e12a0c6c..87d4e82370 100644 --- a/x/feemarket/keeper/grpc_query.go +++ b/x/feemarket/keeper/grpc_query.go @@ -22,7 +22,7 @@ import ( sdkmath "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/x/feemarket/types" + "github.com/evmos/evmos/v12/x/feemarket/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/feemarket/keeper/grpc_query_test.go b/x/feemarket/keeper/grpc_query_test.go index f689acfbd1..58762a9d73 100644 --- a/x/feemarket/keeper/grpc_query_test.go +++ b/x/feemarket/keeper/grpc_query_test.go @@ -4,7 +4,7 @@ import ( sdkmath "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" ethparams "github.com/ethereum/go-ethereum/params" - "github.com/evmos/evmos/v11/x/feemarket/types" + "github.com/evmos/evmos/v12/x/feemarket/types" ) func (suite *KeeperTestSuite) TestQueryParams() { diff --git a/x/feemarket/keeper/integration_test.go b/x/feemarket/keeper/integration_test.go index c264ed2412..35a1f0a37b 100644 --- a/x/feemarket/keeper/integration_test.go +++ b/x/feemarket/keeper/integration_test.go @@ -10,9 +10,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" ethtypes "github.com/ethereum/go-ethereum/core/types" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - "github.com/evmos/evmos/v11/testutil" - utiltx "github.com/evmos/evmos/v11/testutil/tx" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/testutil" + utiltx "github.com/evmos/evmos/v12/testutil/tx" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" ) diff --git a/x/feemarket/keeper/keeper.go b/x/feemarket/keeper/keeper.go index 62a9a480e7..bbb7c1644f 100644 --- a/x/feemarket/keeper/keeper.go +++ b/x/feemarket/keeper/keeper.go @@ -24,7 +24,7 @@ import ( paramstypes "github.com/cosmos/cosmos-sdk/x/params/types" "github.com/tendermint/tendermint/libs/log" - "github.com/evmos/evmos/v11/x/feemarket/types" + "github.com/evmos/evmos/v12/x/feemarket/types" ) // KeyPrefixBaseFeeV1 TODO: Temporary will be removed with params refactor PR diff --git a/x/feemarket/keeper/migrations.go b/x/feemarket/keeper/migrations.go index e6874b0743..ffe44130f9 100644 --- a/x/feemarket/keeper/migrations.go +++ b/x/feemarket/keeper/migrations.go @@ -17,8 +17,8 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - v4 "github.com/evmos/evmos/v11/x/feemarket/migrations/v4" - "github.com/evmos/evmos/v11/x/feemarket/types" + v4 "github.com/evmos/evmos/v12/x/feemarket/migrations/v4" + "github.com/evmos/evmos/v12/x/feemarket/types" ) // Migrator is a struct for handling in-place store migrations. diff --git a/x/feemarket/keeper/migrations_test.go b/x/feemarket/keeper/migrations_test.go index b45d90b7da..9237881989 100644 --- a/x/feemarket/keeper/migrations_test.go +++ b/x/feemarket/keeper/migrations_test.go @@ -2,8 +2,8 @@ package keeper_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - feemarketkeeper "github.com/evmos/evmos/v11/x/feemarket/keeper" - "github.com/evmos/evmos/v11/x/feemarket/types" + feemarketkeeper "github.com/evmos/evmos/v12/x/feemarket/keeper" + "github.com/evmos/evmos/v12/x/feemarket/types" ) type mockSubspace struct { diff --git a/x/feemarket/keeper/msg_server.go b/x/feemarket/keeper/msg_server.go index 10a6d58267..4fa5fc801d 100644 --- a/x/feemarket/keeper/msg_server.go +++ b/x/feemarket/keeper/msg_server.go @@ -6,7 +6,7 @@ import ( errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/evmos/evmos/v11/x/feemarket/types" + "github.com/evmos/evmos/v12/x/feemarket/types" ) // UpdateParams implements the gRPC MsgServer interface. When an UpdateParams diff --git a/x/feemarket/keeper/msg_server_test.go b/x/feemarket/keeper/msg_server_test.go index 05b52189a2..f09d131079 100644 --- a/x/feemarket/keeper/msg_server_test.go +++ b/x/feemarket/keeper/msg_server_test.go @@ -3,7 +3,7 @@ package keeper_test import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/evmos/evmos/v11/x/feemarket/types" + "github.com/evmos/evmos/v12/x/feemarket/types" ) func (suite *KeeperTestSuite) TestUpdateParams() { diff --git a/x/feemarket/keeper/params.go b/x/feemarket/keeper/params.go index 78dc50632e..a32f61ed49 100644 --- a/x/feemarket/keeper/params.go +++ b/x/feemarket/keeper/params.go @@ -18,7 +18,7 @@ package keeper import ( "math/big" - "github.com/evmos/evmos/v11/x/feemarket/types" + "github.com/evmos/evmos/v12/x/feemarket/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/feemarket/keeper/params_test.go b/x/feemarket/keeper/params_test.go index a06f5adca2..a11c7df515 100644 --- a/x/feemarket/keeper/params_test.go +++ b/x/feemarket/keeper/params_test.go @@ -3,7 +3,7 @@ package keeper_test import ( "reflect" - "github.com/evmos/evmos/v11/x/feemarket/types" + "github.com/evmos/evmos/v12/x/feemarket/types" ) func (suite *KeeperTestSuite) TestSetGetParams() { diff --git a/x/feemarket/keeper/setup_test.go b/x/feemarket/keeper/setup_test.go index 74aa966502..74f8ed9527 100644 --- a/x/feemarket/keeper/setup_test.go +++ b/x/feemarket/keeper/setup_test.go @@ -12,8 +12,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/ethereum/go-ethereum/common" ethtypes "github.com/ethereum/go-ethereum/core/types" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/x/feemarket/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/x/feemarket/types" "github.com/stretchr/testify/suite" ) diff --git a/x/feemarket/keeper/utils_test.go b/x/feemarket/keeper/utils_test.go index 5b4da2ac86..313a57e564 100644 --- a/x/feemarket/keeper/utils_test.go +++ b/x/feemarket/keeper/utils_test.go @@ -5,7 +5,7 @@ import ( "math/big" "time" - "github.com/evmos/evmos/v11/utils" + "github.com/evmos/evmos/v12/utils" sdkmath "cosmossdk.io/math" "github.com/cosmos/cosmos-sdk/baseapp" @@ -21,14 +21,14 @@ import ( ethtypes "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/crypto" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - "github.com/evmos/evmos/v11/encoding" - "github.com/evmos/evmos/v11/testutil" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - evmostypes "github.com/evmos/evmos/v11/types" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" - "github.com/evmos/evmos/v11/x/feemarket/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/encoding" + "github.com/evmos/evmos/v12/testutil" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + evmostypes "github.com/evmos/evmos/v12/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" + "github.com/evmos/evmos/v12/x/feemarket/types" "github.com/stretchr/testify/require" diff --git a/x/feemarket/migrations/v4/migrate.go b/x/feemarket/migrations/v4/migrate.go index 49c0515ea8..0244135944 100644 --- a/x/feemarket/migrations/v4/migrate.go +++ b/x/feemarket/migrations/v4/migrate.go @@ -19,7 +19,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec" storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/x/feemarket/types" + "github.com/evmos/evmos/v12/x/feemarket/types" ) // MigrateStore migrates the x/evm module state from the consensus version 3 to diff --git a/x/feemarket/migrations/v4/migrate_test.go b/x/feemarket/migrations/v4/migrate_test.go index fc8aa4552e..0b273bd0c9 100644 --- a/x/feemarket/migrations/v4/migrate_test.go +++ b/x/feemarket/migrations/v4/migrate_test.go @@ -20,10 +20,10 @@ import ( "github.com/cosmos/cosmos-sdk/testutil" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/encoding" - v4 "github.com/evmos/evmos/v11/x/feemarket/migrations/v4" - "github.com/evmos/evmos/v11/x/feemarket/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/encoding" + v4 "github.com/evmos/evmos/v12/x/feemarket/migrations/v4" + "github.com/evmos/evmos/v12/x/feemarket/types" "github.com/stretchr/testify/require" ) diff --git a/x/feemarket/migrations/v4/types/params.go b/x/feemarket/migrations/v4/types/params.go index 0ce0556b35..ff76804315 100644 --- a/x/feemarket/migrations/v4/types/params.go +++ b/x/feemarket/migrations/v4/types/params.go @@ -18,7 +18,7 @@ package types import ( "fmt" - "github.com/evmos/evmos/v11/x/feemarket/types" + "github.com/evmos/evmos/v12/x/feemarket/types" sdkmath "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/feemarket/module.go b/x/feemarket/module.go index 583fbd0a1f..0d1db7c36e 100644 --- a/x/feemarket/module.go +++ b/x/feemarket/module.go @@ -34,9 +34,9 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/evmos/evmos/v11/x/feemarket/client/cli" - "github.com/evmos/evmos/v11/x/feemarket/keeper" - "github.com/evmos/evmos/v11/x/feemarket/types" + "github.com/evmos/evmos/v12/x/feemarket/client/cli" + "github.com/evmos/evmos/v12/x/feemarket/keeper" + "github.com/evmos/evmos/v12/x/feemarket/types" ) var ( diff --git a/x/ibc/transfer/ibc_module.go b/x/ibc/transfer/ibc_module.go index de75c0a85a..183b43f1eb 100644 --- a/x/ibc/transfer/ibc_module.go +++ b/x/ibc/transfer/ibc_module.go @@ -19,7 +19,7 @@ package transfer import ( ibctransfer "github.com/cosmos/ibc-go/v6/modules/apps/transfer" porttypes "github.com/cosmos/ibc-go/v6/modules/core/05-port/types" - "github.com/evmos/evmos/v11/x/ibc/transfer/keeper" + "github.com/evmos/evmos/v12/x/ibc/transfer/keeper" ) var _ porttypes.IBCModule = IBCModule{} diff --git a/x/ibc/transfer/keeper/keeper.go b/x/ibc/transfer/keeper/keeper.go index 9f85e9c8e4..eb2738be44 100644 --- a/x/ibc/transfer/keeper/keeper.go +++ b/x/ibc/transfer/keeper/keeper.go @@ -26,7 +26,7 @@ import ( transfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" porttypes "github.com/cosmos/ibc-go/v6/modules/core/05-port/types" - "github.com/evmos/evmos/v11/x/ibc/transfer/types" + "github.com/evmos/evmos/v12/x/ibc/transfer/types" ) // Keeper defines the modified IBC transfer keeper that embeds the original one. diff --git a/x/ibc/transfer/keeper/keeper_test.go b/x/ibc/transfer/keeper/keeper_test.go index 46807a09a7..920a2565c3 100644 --- a/x/ibc/transfer/keeper/keeper_test.go +++ b/x/ibc/transfer/keeper/keeper_test.go @@ -25,18 +25,18 @@ import ( stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" ethtypes "github.com/ethereum/go-ethereum/core/types" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - "github.com/evmos/evmos/v11/server/config" - "github.com/evmos/evmos/v11/testutil" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/utils" - "github.com/evmos/evmos/v11/x/evm/statedb" - evm "github.com/evmos/evmos/v11/x/evm/types" - feemarkettypes "github.com/evmos/evmos/v11/x/feemarket/types" - - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/contracts" - "github.com/evmos/evmos/v11/x/erc20/types" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/server/config" + "github.com/evmos/evmos/v12/testutil" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/utils" + "github.com/evmos/evmos/v12/x/evm/statedb" + evm "github.com/evmos/evmos/v12/x/evm/types" + feemarkettypes "github.com/evmos/evmos/v12/x/feemarket/types" + + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/contracts" + "github.com/evmos/evmos/v12/x/erc20/types" capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" transfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" diff --git a/x/ibc/transfer/keeper/msg_server.go b/x/ibc/transfer/keeper/msg_server.go index e03d621371..c50501f422 100644 --- a/x/ibc/transfer/keeper/msg_server.go +++ b/x/ibc/transfer/keeper/msg_server.go @@ -28,7 +28,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" - erc20types "github.com/evmos/evmos/v11/x/erc20/types" + erc20types "github.com/evmos/evmos/v12/x/erc20/types" ) var _ types.MsgServer = Keeper{} diff --git a/x/ibc/transfer/keeper/msg_server_test.go b/x/ibc/transfer/keeper/msg_server_test.go index 81d2f1a88f..35b8a0b11d 100644 --- a/x/ibc/transfer/keeper/msg_server_test.go +++ b/x/ibc/transfer/keeper/msg_server_test.go @@ -9,9 +9,9 @@ import ( "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" host "github.com/cosmos/ibc-go/v6/modules/core/24-host" - "github.com/evmos/evmos/v11/testutil" - erc20types "github.com/evmos/evmos/v11/x/erc20/types" - "github.com/evmos/evmos/v11/x/ibc/transfer/keeper" + "github.com/evmos/evmos/v12/testutil" + erc20types "github.com/evmos/evmos/v12/x/erc20/types" + "github.com/evmos/evmos/v12/x/ibc/transfer/keeper" "github.com/stretchr/testify/mock" ) diff --git a/x/ibc/transfer/module.go b/x/ibc/transfer/module.go index 61b8e1ed22..7b3ff31904 100644 --- a/x/ibc/transfer/module.go +++ b/x/ibc/transfer/module.go @@ -24,7 +24,7 @@ import ( ibctransfer "github.com/cosmos/ibc-go/v6/modules/apps/transfer" ibctransferkeeper "github.com/cosmos/ibc-go/v6/modules/apps/transfer/keeper" "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" - "github.com/evmos/evmos/v11/x/ibc/transfer/keeper" + "github.com/evmos/evmos/v12/x/ibc/transfer/keeper" ) var ( diff --git a/x/ibc/transfer/types/interfaces.go b/x/ibc/transfer/types/interfaces.go index ae3d980d51..8f557f61e1 100644 --- a/x/ibc/transfer/types/interfaces.go +++ b/x/ibc/transfer/types/interfaces.go @@ -26,7 +26,7 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" transfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" - erc20types "github.com/evmos/evmos/v11/x/erc20/types" + erc20types "github.com/evmos/evmos/v12/x/erc20/types" ) // AccountKeeper defines the expected interface needed to retrieve account info. diff --git a/x/incentives/client/cli/query.go b/x/incentives/client/cli/query.go index 787b88904b..fc0d6a1de6 100644 --- a/x/incentives/client/cli/query.go +++ b/x/incentives/client/cli/query.go @@ -25,7 +25,7 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/spf13/cobra" - "github.com/evmos/evmos/v11/x/incentives/types" + "github.com/evmos/evmos/v12/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 6250dc5209..925984b71a 100644 --- a/x/incentives/client/cli/tx.go +++ b/x/incentives/client/cli/tx.go @@ -30,7 +30,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/gov/client/cli" govv1beta1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" - "github.com/evmos/evmos/v11/x/incentives/types" + "github.com/evmos/evmos/v12/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 59626dea10..9dbf8897f5 100644 --- a/x/incentives/client/proposal_handler.go +++ b/x/incentives/client/proposal_handler.go @@ -19,7 +19,7 @@ package client import ( govclient "github.com/cosmos/cosmos-sdk/x/gov/client" - "github.com/evmos/evmos/v11/x/incentives/client/cli" + "github.com/evmos/evmos/v12/x/incentives/client/cli" ) var ( diff --git a/x/incentives/genesis.go b/x/incentives/genesis.go index 7bcd0f4aa4..99be21535a 100644 --- a/x/incentives/genesis.go +++ b/x/incentives/genesis.go @@ -24,8 +24,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authkeeper "github.com/cosmos/cosmos-sdk/x/auth/keeper" - "github.com/evmos/evmos/v11/x/incentives/keeper" - "github.com/evmos/evmos/v11/x/incentives/types" + "github.com/evmos/evmos/v12/x/incentives/keeper" + "github.com/evmos/evmos/v12/x/incentives/types" ) // InitGenesis import module genesis diff --git a/x/incentives/handler.go b/x/incentives/handler.go index 8d15b54125..3ba8ee8c47 100644 --- a/x/incentives/handler.go +++ b/x/incentives/handler.go @@ -20,7 +20,7 @@ import ( errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" errortypes "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/evmos/evmos/v11/x/incentives/types" + "github.com/evmos/evmos/v12/x/incentives/types" ) // NewHandler returns a handler for incentives module messages diff --git a/x/incentives/keeper/allocation_meters.go b/x/incentives/keeper/allocation_meters.go index 26286f9a4e..227e6d8403 100644 --- a/x/incentives/keeper/allocation_meters.go +++ b/x/incentives/keeper/allocation_meters.go @@ -22,7 +22,7 @@ import ( "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/x/incentives/types" + "github.com/evmos/evmos/v12/x/incentives/types" ) // GetAllAllocationMeters - get all registered AllocationMeters diff --git a/x/incentives/keeper/distribution.go b/x/incentives/keeper/distribution.go index fc067671b7..7ededc9d77 100644 --- a/x/incentives/keeper/distribution.go +++ b/x/incentives/keeper/distribution.go @@ -28,7 +28,7 @@ import ( errortypes "github.com/cosmos/cosmos-sdk/types/errors" "github.com/ethereum/go-ethereum/common" - "github.com/evmos/evmos/v11/x/incentives/types" + "github.com/evmos/evmos/v12/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 0eb1db9eec..47359791b0 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/v11/x/incentives/types" + "github.com/evmos/evmos/v12/x/incentives/types" ) func (suite *KeeperTestSuite) TestDistributeIncentives() { diff --git a/x/incentives/keeper/epoch_hooks.go b/x/incentives/keeper/epoch_hooks.go index 2ed59284da..dd4b27dcdd 100644 --- a/x/incentives/keeper/epoch_hooks.go +++ b/x/incentives/keeper/epoch_hooks.go @@ -19,7 +19,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - epochstypes "github.com/evmos/evmos/v11/x/epochs/types" + epochstypes "github.com/evmos/evmos/v12/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 c37af76a53..1ac14f4ea5 100644 --- a/x/incentives/keeper/evm_hooks.go +++ b/x/incentives/keeper/evm_hooks.go @@ -24,10 +24,10 @@ import ( "github.com/ethereum/go-ethereum/core" ethtypes "github.com/ethereum/go-ethereum/core/types" - evmostypes "github.com/evmos/evmos/v11/types" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + evmostypes "github.com/evmos/evmos/v12/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" - "github.com/evmos/evmos/v11/x/incentives/types" + "github.com/evmos/evmos/v12/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 a078ac3d70..0351fc7020 100644 --- a/x/incentives/keeper/evm_hooks_test.go +++ b/x/incentives/keeper/evm_hooks_test.go @@ -10,12 +10,12 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/evmos/evmos/v11/testutil" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - evmostypes "github.com/evmos/evmos/v11/types" - evm "github.com/evmos/evmos/v11/x/evm/types" - "github.com/evmos/evmos/v11/x/incentives/types" - vestingtypes "github.com/evmos/evmos/v11/x/vesting/types" + "github.com/evmos/evmos/v12/testutil" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + evmostypes "github.com/evmos/evmos/v12/types" + evm "github.com/evmos/evmos/v12/x/evm/types" + "github.com/evmos/evmos/v12/x/incentives/types" + vestingtypes "github.com/evmos/evmos/v12/x/vesting/types" ) func (suite *KeeperTestSuite) TestEvmHooksStoreTxGasUsed() { diff --git a/x/incentives/keeper/gas_meters.go b/x/incentives/keeper/gas_meters.go index f6138a9cc4..a5229ec13b 100644 --- a/x/incentives/keeper/gas_meters.go +++ b/x/incentives/keeper/gas_meters.go @@ -21,7 +21,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/ethereum/go-ethereum/common" - "github.com/evmos/evmos/v11/x/incentives/types" + "github.com/evmos/evmos/v12/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 6ac1175cb2..e444bd6092 100644 --- a/x/incentives/keeper/gas_meters_test.go +++ b/x/incentives/keeper/gas_meters_test.go @@ -4,9 +4,9 @@ import ( "fmt" "github.com/ethereum/go-ethereum/common" - utiltx "github.com/evmos/evmos/v11/testutil/tx" + utiltx "github.com/evmos/evmos/v12/testutil/tx" - "github.com/evmos/evmos/v11/x/incentives/types" + "github.com/evmos/evmos/v12/x/incentives/types" ) func (suite *KeeperTestSuite) TestGetIncentivesGasMeters() { diff --git a/x/incentives/keeper/grpc_query.go b/x/incentives/keeper/grpc_query.go index 623aef34dc..9c6a68d3dc 100644 --- a/x/incentives/keeper/grpc_query.go +++ b/x/incentives/keeper/grpc_query.go @@ -29,9 +29,9 @@ import ( errortypes "github.com/cosmos/cosmos-sdk/types/errors" "github.com/cosmos/cosmos-sdk/types/query" "github.com/ethereum/go-ethereum/common" - evmostypes "github.com/evmos/evmos/v11/types" + evmostypes "github.com/evmos/evmos/v12/types" - "github.com/evmos/evmos/v11/x/incentives/types" + "github.com/evmos/evmos/v12/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 062ce368ba..433ac79bd3 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/v11/x/incentives/types" + "github.com/evmos/evmos/v12/x/incentives/types" ) func (suite *KeeperTestSuite) TestIncentives() { diff --git a/x/incentives/keeper/incentives.go b/x/incentives/keeper/incentives.go index c8ee7020b8..7b7ec9a876 100644 --- a/x/incentives/keeper/incentives.go +++ b/x/incentives/keeper/incentives.go @@ -21,7 +21,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/ethereum/go-ethereum/common" - "github.com/evmos/evmos/v11/x/incentives/types" + "github.com/evmos/evmos/v12/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 9a379df900..952151d8e6 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/v11/x/incentives/types" + "github.com/evmos/evmos/v12/x/incentives/types" ) func (suite *KeeperTestSuite) TestGetAllIncentives() { diff --git a/x/incentives/keeper/integration_test.go b/x/incentives/keeper/integration_test.go index 548213b972..2fbdd95450 100644 --- a/x/incentives/keeper/integration_test.go +++ b/x/incentives/keeper/integration_test.go @@ -12,10 +12,10 @@ import ( "github.com/ethereum/go-ethereum/common" - evmostypes "github.com/evmos/evmos/v11/types" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + evmostypes "github.com/evmos/evmos/v12/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" - "github.com/evmos/evmos/v11/x/incentives/types" + "github.com/evmos/evmos/v12/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 fb76d10944..ecf660c3e0 100644 --- a/x/incentives/keeper/keeper.go +++ b/x/incentives/keeper/keeper.go @@ -24,7 +24,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/tendermint/tendermint/libs/log" - "github.com/evmos/evmos/v11/x/incentives/types" + "github.com/evmos/evmos/v12/x/incentives/types" ) // Keeper of this module maintains collections of incentives. diff --git a/x/incentives/keeper/migrations.go b/x/incentives/keeper/migrations.go index 6c2983ab7d..21e8927537 100644 --- a/x/incentives/keeper/migrations.go +++ b/x/incentives/keeper/migrations.go @@ -18,8 +18,8 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - v2 "github.com/evmos/evmos/v11/x/incentives/migrations/v2" - "github.com/evmos/evmos/v11/x/incentives/types" + v2 "github.com/evmos/evmos/v12/x/incentives/migrations/v2" + "github.com/evmos/evmos/v12/x/incentives/types" ) // Migrator is a struct for handling in-place store migrations. diff --git a/x/incentives/keeper/msg_server.go b/x/incentives/keeper/msg_server.go index 1f9c6a1093..5a72c61816 100644 --- a/x/incentives/keeper/msg_server.go +++ b/x/incentives/keeper/msg_server.go @@ -22,7 +22,7 @@ import ( errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/evmos/evmos/v11/x/incentives/types" + "github.com/evmos/evmos/v12/x/incentives/types" ) // UpdateParams implements the gRPC MsgServer interface. When an UpdateParams diff --git a/x/incentives/keeper/msg_server_test.go b/x/incentives/keeper/msg_server_test.go index 444fb749b9..c190ee7c30 100644 --- a/x/incentives/keeper/msg_server_test.go +++ b/x/incentives/keeper/msg_server_test.go @@ -3,7 +3,7 @@ package keeper_test import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/evmos/evmos/v11/x/incentives/types" + "github.com/evmos/evmos/v12/x/incentives/types" ) func (suite *KeeperTestSuite) TestUpdateParams() { diff --git a/x/incentives/keeper/params.go b/x/incentives/keeper/params.go index eb5660b1cd..a071aef874 100644 --- a/x/incentives/keeper/params.go +++ b/x/incentives/keeper/params.go @@ -19,7 +19,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/x/incentives/types" + "github.com/evmos/evmos/v12/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 afc87b660e..2e1c56c605 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/v11/x/incentives/types" +import "github.com/evmos/evmos/v12/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 641aa24175..80ba536e4c 100644 --- a/x/incentives/keeper/proposals.go +++ b/x/incentives/keeper/proposals.go @@ -22,7 +22,7 @@ import ( errortypes "github.com/cosmos/cosmos-sdk/types/errors" "github.com/ethereum/go-ethereum/common" - "github.com/evmos/evmos/v11/x/incentives/types" + "github.com/evmos/evmos/v12/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 3cf89e13e8..19067c7c4f 100644 --- a/x/incentives/keeper/proposals_test.go +++ b/x/incentives/keeper/proposals_test.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/x/incentives/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/x/incentives/types" ) func (suite KeeperTestSuite) TestRegisterIncentive() { //nolint:govet // we can copy locks here because it is a test diff --git a/x/incentives/keeper/setup_test.go b/x/incentives/keeper/setup_test.go index 23fa750f92..e0efca8070 100644 --- a/x/incentives/keeper/setup_test.go +++ b/x/incentives/keeper/setup_test.go @@ -14,10 +14,10 @@ import ( "github.com/stretchr/testify/suite" ethtypes "github.com/ethereum/go-ethereum/core/types" - evm "github.com/evmos/evmos/v11/x/evm/types" + evm "github.com/evmos/evmos/v12/x/evm/types" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/x/incentives/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/x/incentives/types" ) type KeeperTestSuite struct { diff --git a/x/incentives/keeper/utils_test.go b/x/incentives/keeper/utils_test.go index 83ec3661f6..a1b23bad06 100644 --- a/x/incentives/keeper/utils_test.go +++ b/x/incentives/keeper/utils_test.go @@ -17,18 +17,18 @@ import ( "github.com/ethereum/go-ethereum/common/hexutil" ethtypes "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/crypto" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/contracts" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - "github.com/evmos/evmos/v11/encoding" - "github.com/evmos/evmos/v11/server/config" - "github.com/evmos/evmos/v11/testutil" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - evmostypes "github.com/evmos/evmos/v11/types" - "github.com/evmos/evmos/v11/utils" - epochstypes "github.com/evmos/evmos/v11/x/epochs/types" - evm "github.com/evmos/evmos/v11/x/evm/types" - "github.com/evmos/evmos/v11/x/incentives/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/contracts" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/encoding" + "github.com/evmos/evmos/v12/server/config" + "github.com/evmos/evmos/v12/testutil" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + evmostypes "github.com/evmos/evmos/v12/types" + "github.com/evmos/evmos/v12/utils" + epochstypes "github.com/evmos/evmos/v12/x/epochs/types" + evm "github.com/evmos/evmos/v12/x/evm/types" + "github.com/evmos/evmos/v12/x/incentives/types" "github.com/stretchr/testify/require" ) diff --git a/x/incentives/migrations/v2/migrate.go b/x/incentives/migrations/v2/migrate.go index 8731241f59..ffc708a8fd 100644 --- a/x/incentives/migrations/v2/migrate.go +++ b/x/incentives/migrations/v2/migrate.go @@ -20,8 +20,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" - v2types "github.com/evmos/evmos/v11/x/incentives/migrations/v2/types" - "github.com/evmos/evmos/v11/x/incentives/types" + v2types "github.com/evmos/evmos/v12/x/incentives/migrations/v2/types" + "github.com/evmos/evmos/v12/x/incentives/types" ) // MigrateStore migrates the x/incentives module state from the consensus version 1 to diff --git a/x/incentives/migrations/v2/migrate_test.go b/x/incentives/migrations/v2/migrate_test.go index 9016a8ac9c..aae61aa37d 100644 --- a/x/incentives/migrations/v2/migrate_test.go +++ b/x/incentives/migrations/v2/migrate_test.go @@ -8,11 +8,11 @@ import ( "github.com/cosmos/cosmos-sdk/testutil" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/encoding" - v2 "github.com/evmos/evmos/v11/x/incentives/migrations/v2" - v2types "github.com/evmos/evmos/v11/x/incentives/migrations/v2/types" - "github.com/evmos/evmos/v11/x/incentives/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/encoding" + v2 "github.com/evmos/evmos/v12/x/incentives/migrations/v2" + v2types "github.com/evmos/evmos/v12/x/incentives/migrations/v2/types" + "github.com/evmos/evmos/v12/x/incentives/types" "github.com/stretchr/testify/require" ) diff --git a/x/incentives/migrations/v2/types/params.go b/x/incentives/migrations/v2/types/params.go index 2be51f51e3..b1e82c0e6c 100644 --- a/x/incentives/migrations/v2/types/params.go +++ b/x/incentives/migrations/v2/types/params.go @@ -22,9 +22,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - "github.com/evmos/evmos/v11/x/incentives/types" + "github.com/evmos/evmos/v12/x/incentives/types" - epochstypes "github.com/evmos/evmos/v11/x/epochs/types" + epochstypes "github.com/evmos/evmos/v12/x/epochs/types" ) var _ types.LegacyParams = &V2Params{} diff --git a/x/incentives/module.go b/x/incentives/module.go index 509b34b0af..1691f20bdc 100644 --- a/x/incentives/module.go +++ b/x/incentives/module.go @@ -34,9 +34,9 @@ import ( "github.com/spf13/cobra" abci "github.com/tendermint/tendermint/abci/types" - "github.com/evmos/evmos/v11/x/incentives/client/cli" - "github.com/evmos/evmos/v11/x/incentives/keeper" - "github.com/evmos/evmos/v11/x/incentives/types" + "github.com/evmos/evmos/v12/x/incentives/client/cli" + "github.com/evmos/evmos/v12/x/incentives/keeper" + "github.com/evmos/evmos/v12/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 245f3b23cc..82c4f9bb3d 100644 --- a/x/incentives/proposal_handler.go +++ b/x/incentives/proposal_handler.go @@ -26,8 +26,8 @@ import ( govv1beta1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" "github.com/ethereum/go-ethereum/common" - "github.com/evmos/evmos/v11/x/incentives/keeper" - "github.com/evmos/evmos/v11/x/incentives/types" + "github.com/evmos/evmos/v12/x/incentives/keeper" + "github.com/evmos/evmos/v12/x/incentives/types" ) // NewIncentivesProposalHandler creates a governance handler to manage new diff --git a/x/incentives/types/fuzz_test.go b/x/incentives/types/fuzz_test.go index c8644d03f7..8c9350b209 100644 --- a/x/incentives/types/fuzz_test.go +++ b/x/incentives/types/fuzz_test.go @@ -5,8 +5,8 @@ package types_test import ( "testing" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/x/incentives/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/x/incentives/types" ) func FuzzSplitGasMeterKey(f *testing.F) { diff --git a/x/incentives/types/gas_meter.go b/x/incentives/types/gas_meter.go index 3036e0dd24..044ff99e07 100644 --- a/x/incentives/types/gas_meter.go +++ b/x/incentives/types/gas_meter.go @@ -18,7 +18,7 @@ package types import ( "github.com/ethereum/go-ethereum/common" - evmostypes "github.com/evmos/evmos/v11/types" + evmostypes "github.com/evmos/evmos/v12/types" ) // NewGasMeter returns an instance of GasMeter diff --git a/x/incentives/types/gas_meter_test.go b/x/incentives/types/gas_meter_test.go index b3387dedc5..f3333a3efd 100644 --- a/x/incentives/types/gas_meter_test.go +++ b/x/incentives/types/gas_meter_test.go @@ -6,8 +6,8 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/stretchr/testify/suite" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/x/incentives/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/x/incentives/types" ) type GasMeterTestSuite struct { diff --git a/x/incentives/types/incentive.go b/x/incentives/types/incentive.go index e5081fac25..68bf46714a 100644 --- a/x/incentives/types/incentive.go +++ b/x/incentives/types/incentive.go @@ -21,7 +21,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/ethereum/go-ethereum/common" - evmostypes "github.com/evmos/evmos/v11/types" + evmostypes "github.com/evmos/evmos/v12/types" ) // NewIncentive returns an instance of Incentive diff --git a/x/incentives/types/incentive_test.go b/x/incentives/types/incentive_test.go index 6d3d699408..28315d1373 100644 --- a/x/incentives/types/incentive_test.go +++ b/x/incentives/types/incentive_test.go @@ -8,8 +8,8 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/stretchr/testify/suite" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/x/incentives/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/x/incentives/types" ) type IncentiveTestSuite struct { diff --git a/x/incentives/types/interfaces.go b/x/incentives/types/interfaces.go index da652c355c..b5053abc33 100644 --- a/x/incentives/types/interfaces.go +++ b/x/incentives/types/interfaces.go @@ -29,10 +29,10 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" govv1beta1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" - "github.com/evmos/evmos/v11/x/evm/statedb" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/x/evm/statedb" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" - inflationtypes "github.com/evmos/evmos/v11/x/inflation/types" + inflationtypes "github.com/evmos/evmos/v12/x/inflation/types" ) // AccountKeeper defines the expected interface needed to retrieve account info. diff --git a/x/incentives/types/keys_test.go b/x/incentives/types/keys_test.go index 5ff74935d3..f70d9df67c 100644 --- a/x/incentives/types/keys_test.go +++ b/x/incentives/types/keys_test.go @@ -3,8 +3,8 @@ package types_test import ( "testing" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/x/incentives/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/x/incentives/types" "github.com/stretchr/testify/require" ) diff --git a/x/incentives/types/params.go b/x/incentives/types/params.go index 7f89c6cda8..ca34f5f11a 100644 --- a/x/incentives/types/params.go +++ b/x/incentives/types/params.go @@ -21,7 +21,7 @@ import ( "fmt" sdk "github.com/cosmos/cosmos-sdk/types" - epochstypes "github.com/evmos/evmos/v11/x/epochs/types" + epochstypes "github.com/evmos/evmos/v12/x/epochs/types" ) // ParamsKey params store key diff --git a/x/incentives/types/params_test.go b/x/incentives/types/params_test.go index 6c1b4a97e3..8864ee84a4 100644 --- a/x/incentives/types/params_test.go +++ b/x/incentives/types/params_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/suite" sdk "github.com/cosmos/cosmos-sdk/types" - epochstypes "github.com/evmos/evmos/v11/x/epochs/types" + epochstypes "github.com/evmos/evmos/v12/x/epochs/types" ) type ParamsTestSuite struct { diff --git a/x/incentives/types/proposal.go b/x/incentives/types/proposal.go index 89baff9ca5..d91ef069fa 100644 --- a/x/incentives/types/proposal.go +++ b/x/incentives/types/proposal.go @@ -22,7 +22,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" govv1beta1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" - evmostypes "github.com/evmos/evmos/v11/types" + evmostypes "github.com/evmos/evmos/v12/types" ) // constants diff --git a/x/incentives/types/proposal_test.go b/x/incentives/types/proposal_test.go index 98986435b1..7c47b1496d 100644 --- a/x/incentives/types/proposal_test.go +++ b/x/incentives/types/proposal_test.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/suite" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/x/incentives/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/x/incentives/types" ) type ProposalTestSuite struct { diff --git a/x/inflation/client/cli/query.go b/x/inflation/client/cli/query.go index 073d6f298b..33b3f2383e 100644 --- a/x/inflation/client/cli/query.go +++ b/x/inflation/client/cli/query.go @@ -24,7 +24,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" - "github.com/evmos/evmos/v11/x/inflation/types" + "github.com/evmos/evmos/v12/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 0ed82c1278..d10875430f 100644 --- a/x/inflation/genesis.go +++ b/x/inflation/genesis.go @@ -19,8 +19,8 @@ package inflation import ( errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/x/inflation/keeper" - "github.com/evmos/evmos/v11/x/inflation/types" + "github.com/evmos/evmos/v12/x/inflation/keeper" + "github.com/evmos/evmos/v12/x/inflation/types" ) // InitGenesis import module genesis diff --git a/x/inflation/handler.go b/x/inflation/handler.go index 440b498ff4..4611b78fd5 100644 --- a/x/inflation/handler.go +++ b/x/inflation/handler.go @@ -20,7 +20,7 @@ import ( errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" errortypes "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/evmos/evmos/v11/x/inflation/types" + "github.com/evmos/evmos/v12/x/inflation/types" ) // NewHandler returns a handler for Inflation type messages. diff --git a/x/inflation/keeper/epoch_info.go b/x/inflation/keeper/epoch_info.go index 1b7400e1b2..7507a8a630 100644 --- a/x/inflation/keeper/epoch_info.go +++ b/x/inflation/keeper/epoch_info.go @@ -18,7 +18,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/x/inflation/types" + "github.com/evmos/evmos/v12/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 11eff8659c..2be6981138 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/v11/x/epochs/types" - "github.com/evmos/evmos/v11/x/inflation/types" + epochstypes "github.com/evmos/evmos/v12/x/epochs/types" + "github.com/evmos/evmos/v12/x/inflation/types" ) func (suite *KeeperTestSuite) TestSetGetEpochIdentifier() { diff --git a/x/inflation/keeper/grpc_query.go b/x/inflation/keeper/grpc_query.go index e91a0b0e09..d39f2ef270 100644 --- a/x/inflation/keeper/grpc_query.go +++ b/x/inflation/keeper/grpc_query.go @@ -20,7 +20,7 @@ import ( "context" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/x/inflation/types" + "github.com/evmos/evmos/v12/x/inflation/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/inflation/keeper/grpc_query_test.go b/x/inflation/keeper/grpc_query_test.go index 00593bae4d..c80ae6368e 100644 --- a/x/inflation/keeper/grpc_query_test.go +++ b/x/inflation/keeper/grpc_query_test.go @@ -6,8 +6,8 @@ import ( "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - evmostypes "github.com/evmos/evmos/v11/types" - "github.com/evmos/evmos/v11/x/inflation/types" + evmostypes "github.com/evmos/evmos/v12/types" + "github.com/evmos/evmos/v12/x/inflation/types" ) func (suite *KeeperTestSuite) TestPeriod() { //nolint:dupl diff --git a/x/inflation/keeper/hooks.go b/x/inflation/keeper/hooks.go index cb5c8c467f..9fa76b7d4e 100644 --- a/x/inflation/keeper/hooks.go +++ b/x/inflation/keeper/hooks.go @@ -22,8 +22,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/v11/x/epochs/types" - "github.com/evmos/evmos/v11/x/inflation/types" + epochstypes "github.com/evmos/evmos/v12/x/epochs/types" + "github.com/evmos/evmos/v12/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 3cb17191f6..f241d5172c 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/v11/x/epochs/types" - "github.com/evmos/evmos/v11/x/inflation/types" + epochstypes "github.com/evmos/evmos/v12/x/epochs/types" + "github.com/evmos/evmos/v12/x/inflation/types" ) func (suite *KeeperTestSuite) TestEpochIdentifierAfterEpochEnd() { diff --git a/x/inflation/keeper/inflation.go b/x/inflation/keeper/inflation.go index 8861c6d021..99781b645a 100644 --- a/x/inflation/keeper/inflation.go +++ b/x/inflation/keeper/inflation.go @@ -19,11 +19,11 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - evmostypes "github.com/evmos/evmos/v11/types" + evmostypes "github.com/evmos/evmos/v12/types" - utils "github.com/evmos/evmos/v11/utils" - incentivestypes "github.com/evmos/evmos/v11/x/incentives/types" - "github.com/evmos/evmos/v11/x/inflation/types" + utils "github.com/evmos/evmos/v12/utils" + incentivestypes "github.com/evmos/evmos/v12/x/incentives/types" + "github.com/evmos/evmos/v12/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 c75bd0ef6a..1509aa4bbd 100644 --- a/x/inflation/keeper/inflation_test.go +++ b/x/inflation/keeper/inflation_test.go @@ -6,9 +6,9 @@ import ( sdkmath "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - evmostypes "github.com/evmos/evmos/v11/types" - incentivestypes "github.com/evmos/evmos/v11/x/incentives/types" - "github.com/evmos/evmos/v11/x/inflation/types" + evmostypes "github.com/evmos/evmos/v12/types" + incentivestypes "github.com/evmos/evmos/v12/x/incentives/types" + "github.com/evmos/evmos/v12/x/inflation/types" ) func (suite *KeeperTestSuite) TestMintAndAllocateInflation() { diff --git a/x/inflation/keeper/integration_test.go b/x/inflation/keeper/integration_test.go index 2a4a672a6f..a48f1a4559 100644 --- a/x/inflation/keeper/integration_test.go +++ b/x/inflation/keeper/integration_test.go @@ -3,14 +3,14 @@ package keeper_test import ( "time" - "github.com/evmos/evmos/v11/x/inflation/types" + "github.com/evmos/evmos/v12/x/inflation/types" sdk "github.com/cosmos/cosmos-sdk/types" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" - epochstypes "github.com/evmos/evmos/v11/x/epochs/types" - incentivestypes "github.com/evmos/evmos/v11/x/incentives/types" + epochstypes "github.com/evmos/evmos/v12/x/epochs/types" + incentivestypes "github.com/evmos/evmos/v12/x/incentives/types" ) var ( diff --git a/x/inflation/keeper/keeper.go b/x/inflation/keeper/keeper.go index 4ad7ee31da..49e98050df 100644 --- a/x/inflation/keeper/keeper.go +++ b/x/inflation/keeper/keeper.go @@ -22,7 +22,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/tendermint/tendermint/libs/log" - "github.com/evmos/evmos/v11/x/inflation/types" + "github.com/evmos/evmos/v12/x/inflation/types" ) // Keeper of the inflation store diff --git a/x/inflation/keeper/migrations.go b/x/inflation/keeper/migrations.go index 5b0ffad426..d97c446506 100644 --- a/x/inflation/keeper/migrations.go +++ b/x/inflation/keeper/migrations.go @@ -18,9 +18,9 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - v2 "github.com/evmos/evmos/v11/x/inflation/migrations/v2" - v3 "github.com/evmos/evmos/v11/x/inflation/migrations/v3" - "github.com/evmos/evmos/v11/x/inflation/types" + v2 "github.com/evmos/evmos/v12/x/inflation/migrations/v2" + v3 "github.com/evmos/evmos/v12/x/inflation/migrations/v3" + "github.com/evmos/evmos/v12/x/inflation/types" ) // Migrator is a struct for handling in-place store migrations. diff --git a/x/inflation/keeper/migrations_test.go b/x/inflation/keeper/migrations_test.go index 8601548326..b1e2c7eda6 100644 --- a/x/inflation/keeper/migrations_test.go +++ b/x/inflation/keeper/migrations_test.go @@ -7,11 +7,11 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/encoding" - inflationkeeper "github.com/evmos/evmos/v11/x/inflation/keeper" - v2types "github.com/evmos/evmos/v11/x/inflation/migrations/v2/types" - "github.com/evmos/evmos/v11/x/inflation/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/encoding" + inflationkeeper "github.com/evmos/evmos/v12/x/inflation/keeper" + v2types "github.com/evmos/evmos/v12/x/inflation/migrations/v2/types" + "github.com/evmos/evmos/v12/x/inflation/types" ) type mockSubspace struct { diff --git a/x/inflation/keeper/msg_server.go b/x/inflation/keeper/msg_server.go index fd466aae92..df87f7ffe0 100644 --- a/x/inflation/keeper/msg_server.go +++ b/x/inflation/keeper/msg_server.go @@ -22,7 +22,7 @@ import ( errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/evmos/evmos/v11/x/inflation/types" + "github.com/evmos/evmos/v12/x/inflation/types" ) var _ types.MsgServer = &Keeper{} diff --git a/x/inflation/keeper/msg_server_test.go b/x/inflation/keeper/msg_server_test.go index 6ad7e0e4e7..24a1a46228 100644 --- a/x/inflation/keeper/msg_server_test.go +++ b/x/inflation/keeper/msg_server_test.go @@ -3,7 +3,7 @@ package keeper_test import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/evmos/evmos/v11/x/inflation/types" + "github.com/evmos/evmos/v12/x/inflation/types" ) func (suite *KeeperTestSuite) TestUpdateParams() { diff --git a/x/inflation/keeper/params.go b/x/inflation/keeper/params.go index 81a3f07e7e..c835379891 100644 --- a/x/inflation/keeper/params.go +++ b/x/inflation/keeper/params.go @@ -18,7 +18,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/x/inflation/types" + "github.com/evmos/evmos/v12/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 6edd714d3c..ec8790f3ce 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/v11/x/inflation/types" + "github.com/evmos/evmos/v12/x/inflation/types" ) func (suite *KeeperTestSuite) TestParams() { diff --git a/x/inflation/keeper/periods.go b/x/inflation/keeper/periods.go index a1261fd099..d373dbb6cb 100644 --- a/x/inflation/keeper/periods.go +++ b/x/inflation/keeper/periods.go @@ -18,7 +18,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/x/inflation/types" + "github.com/evmos/evmos/v12/x/inflation/types" ) // GetPeriod gets current period diff --git a/x/inflation/keeper/setup_test.go b/x/inflation/keeper/setup_test.go index 1a9bea4dd3..0535c61326 100644 --- a/x/inflation/keeper/setup_test.go +++ b/x/inflation/keeper/setup_test.go @@ -9,10 +9,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/suite" - evm "github.com/evmos/evmos/v11/x/evm/types" + evm "github.com/evmos/evmos/v12/x/evm/types" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/x/inflation/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/x/inflation/types" ) var denomMint = types.DefaultInflationDenom diff --git a/x/inflation/keeper/utils_test.go b/x/inflation/keeper/utils_test.go index 40f158b29c..065b3e6557 100644 --- a/x/inflation/keeper/utils_test.go +++ b/x/inflation/keeper/utils_test.go @@ -4,11 +4,11 @@ import ( "time" "github.com/cosmos/cosmos-sdk/baseapp" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/testutil" - epochstypes "github.com/evmos/evmos/v11/x/epochs/types" - evm "github.com/evmos/evmos/v11/x/evm/types" - "github.com/evmos/evmos/v11/x/inflation/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/testutil" + epochstypes "github.com/evmos/evmos/v12/x/epochs/types" + evm "github.com/evmos/evmos/v12/x/evm/types" + "github.com/evmos/evmos/v12/x/inflation/types" "github.com/stretchr/testify/require" ) diff --git a/x/inflation/migrations/v2/migrate.go b/x/inflation/migrations/v2/migrate.go index 00d9e83693..b976095c75 100644 --- a/x/inflation/migrations/v2/migrate.go +++ b/x/inflation/migrations/v2/migrate.go @@ -20,8 +20,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" - v2types "github.com/evmos/evmos/v11/x/inflation/migrations/v2/types" - "github.com/evmos/evmos/v11/x/inflation/types" + v2types "github.com/evmos/evmos/v12/x/inflation/migrations/v2/types" + "github.com/evmos/evmos/v12/x/inflation/types" ) // MigrateStore migrates the x/inflation module state from the consensus version 1 to diff --git a/x/inflation/migrations/v2/migrate_test.go b/x/inflation/migrations/v2/migrate_test.go index 761ea68a54..1f08e575f7 100644 --- a/x/inflation/migrations/v2/migrate_test.go +++ b/x/inflation/migrations/v2/migrate_test.go @@ -6,14 +6,14 @@ import ( storetypes "github.com/cosmos/cosmos-sdk/store/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - v2 "github.com/evmos/evmos/v11/x/inflation/migrations/v2" - "github.com/evmos/evmos/v11/x/inflation/types" + v2 "github.com/evmos/evmos/v12/x/inflation/migrations/v2" + "github.com/evmos/evmos/v12/x/inflation/types" "github.com/cosmos/cosmos-sdk/testutil" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/encoding" - v2types "github.com/evmos/evmos/v11/x/inflation/migrations/v2/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/encoding" + v2types "github.com/evmos/evmos/v12/x/inflation/migrations/v2/types" "github.com/stretchr/testify/require" ) diff --git a/x/inflation/migrations/v2/types/params.go b/x/inflation/migrations/v2/types/params.go index 6513134052..a1bfe4e07f 100644 --- a/x/inflation/migrations/v2/types/params.go +++ b/x/inflation/migrations/v2/types/params.go @@ -23,8 +23,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - evm "github.com/evmos/evmos/v11/x/evm/types" - "github.com/evmos/evmos/v11/x/inflation/types" + evm "github.com/evmos/evmos/v12/x/evm/types" + "github.com/evmos/evmos/v12/x/inflation/types" ) var _ types.LegacyParams = &V2Params{} diff --git a/x/inflation/migrations/v3/migrate_test.go b/x/inflation/migrations/v3/migrate_test.go index d2ef7b84e2..0903b2e1da 100644 --- a/x/inflation/migrations/v3/migrate_test.go +++ b/x/inflation/migrations/v3/migrate_test.go @@ -5,8 +5,8 @@ import ( "github.com/cosmos/cosmos-sdk/testutil" sdk "github.com/cosmos/cosmos-sdk/types" - v3 "github.com/evmos/evmos/v11/x/inflation/migrations/v3" - "github.com/evmos/evmos/v11/x/inflation/types" + v3 "github.com/evmos/evmos/v12/x/inflation/migrations/v3" + "github.com/evmos/evmos/v12/x/inflation/types" "github.com/stretchr/testify/require" ) diff --git a/x/inflation/module.go b/x/inflation/module.go index 9bb7ace0f9..dd81c75022 100644 --- a/x/inflation/module.go +++ b/x/inflation/module.go @@ -35,9 +35,9 @@ import ( "github.com/spf13/cobra" abci "github.com/tendermint/tendermint/abci/types" - "github.com/evmos/evmos/v11/x/inflation/client/cli" - "github.com/evmos/evmos/v11/x/inflation/keeper" - "github.com/evmos/evmos/v11/x/inflation/types" + "github.com/evmos/evmos/v12/x/inflation/client/cli" + "github.com/evmos/evmos/v12/x/inflation/keeper" + "github.com/evmos/evmos/v12/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 0770a874d1..4e95609fd5 100644 --- a/x/inflation/types/genesis.go +++ b/x/inflation/types/genesis.go @@ -19,7 +19,7 @@ package types import ( fmt "fmt" - epochstypes "github.com/evmos/evmos/v11/x/epochs/types" + epochstypes "github.com/evmos/evmos/v12/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 ff6f31abc8..bf4c677b44 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/v11/x/epochs/types" + epochstypes "github.com/evmos/evmos/v12/x/epochs/types" "github.com/stretchr/testify/suite" ) diff --git a/x/inflation/types/inflation_calculation.go b/x/inflation/types/inflation_calculation.go index 055fb1fef3..fef8ae3217 100644 --- a/x/inflation/types/inflation_calculation.go +++ b/x/inflation/types/inflation_calculation.go @@ -19,7 +19,7 @@ package types import ( sdk "github.com/cosmos/cosmos-sdk/types" - evmostypes "github.com/evmos/evmos/v11/types" + evmostypes "github.com/evmos/evmos/v12/types" ) // CalculateEpochProvisions returns mint provision per epoch diff --git a/x/inflation/types/params.go b/x/inflation/types/params.go index 05b12472ec..35b82e74b8 100644 --- a/x/inflation/types/params.go +++ b/x/inflation/types/params.go @@ -22,7 +22,7 @@ import ( "strings" sdk "github.com/cosmos/cosmos-sdk/types" - evm "github.com/evmos/evmos/v11/x/evm/types" + evm "github.com/evmos/evmos/v12/x/evm/types" ) var ParamsKey = []byte("Params") diff --git a/x/recovery/client/cli/query.go b/x/recovery/client/cli/query.go index e3e772a2ae..5e1d939421 100644 --- a/x/recovery/client/cli/query.go +++ b/x/recovery/client/cli/query.go @@ -23,7 +23,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/evmos/evmos/v11/x/recovery/types" + "github.com/evmos/evmos/v12/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 197aee1710..1c33e8654e 100644 --- a/x/recovery/genesis.go +++ b/x/recovery/genesis.go @@ -20,8 +20,8 @@ import ( errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/x/recovery/keeper" - "github.com/evmos/evmos/v11/x/recovery/types" + "github.com/evmos/evmos/v12/x/recovery/keeper" + "github.com/evmos/evmos/v12/x/recovery/types" ) // InitGenesis import module genesis diff --git a/x/recovery/genesis_test.go b/x/recovery/genesis_test.go index cd2581a88c..89395f0e9e 100644 --- a/x/recovery/genesis_test.go +++ b/x/recovery/genesis_test.go @@ -12,13 +12,13 @@ import ( tmversion "github.com/tendermint/tendermint/proto/tendermint/version" "github.com/tendermint/tendermint/version" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/utils" - feemarkettypes "github.com/evmos/evmos/v11/x/feemarket/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/utils" + feemarkettypes "github.com/evmos/evmos/v12/x/feemarket/types" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/x/recovery" - "github.com/evmos/evmos/v11/x/recovery/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/x/recovery" + "github.com/evmos/evmos/v12/x/recovery/types" ) type GenesisTestSuite struct { diff --git a/x/recovery/handler.go b/x/recovery/handler.go index 6f78013e27..4745db880a 100644 --- a/x/recovery/handler.go +++ b/x/recovery/handler.go @@ -20,7 +20,7 @@ import ( errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" errortypes "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/evmos/evmos/v11/x/recovery/types" + "github.com/evmos/evmos/v12/x/recovery/types" ) // NewHandler returns a handler for recovery type messages. diff --git a/x/recovery/ibc_middleware.go b/x/recovery/ibc_middleware.go index d0e0967218..2a757b91ee 100644 --- a/x/recovery/ibc_middleware.go +++ b/x/recovery/ibc_middleware.go @@ -25,8 +25,8 @@ import ( clienttypes "github.com/cosmos/ibc-go/v6/modules/core/02-client/types" - "github.com/evmos/evmos/v11/ibc" - "github.com/evmos/evmos/v11/x/recovery/keeper" + "github.com/evmos/evmos/v12/ibc" + "github.com/evmos/evmos/v12/x/recovery/keeper" ) var _ porttypes.Middleware = &IBCMiddleware{} diff --git a/x/recovery/keeper/grpc_query.go b/x/recovery/keeper/grpc_query.go index d5ec1832db..235e4c0600 100644 --- a/x/recovery/keeper/grpc_query.go +++ b/x/recovery/keeper/grpc_query.go @@ -21,7 +21,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/x/recovery/types" + "github.com/evmos/evmos/v12/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 12e147c229..de2b5b5cb6 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/v11/x/recovery/types" + "github.com/evmos/evmos/v12/x/recovery/types" ) func (suite *KeeperTestSuite) TestQueryParams() { diff --git a/x/recovery/keeper/ibc_callbacks.go b/x/recovery/keeper/ibc_callbacks.go index 5f59a34629..a50ba24169 100644 --- a/x/recovery/keeper/ibc_callbacks.go +++ b/x/recovery/keeper/ibc_callbacks.go @@ -32,9 +32,9 @@ import ( host "github.com/cosmos/ibc-go/v6/modules/core/24-host" "github.com/cosmos/ibc-go/v6/modules/core/exported" - "github.com/evmos/evmos/v11/ibc" - "github.com/evmos/evmos/v11/utils" - "github.com/evmos/evmos/v11/x/recovery/types" + "github.com/evmos/evmos/v12/ibc" + "github.com/evmos/evmos/v12/utils" + "github.com/evmos/evmos/v12/x/recovery/types" ) // OnRecvPacket performs an IBC receive callback. It returns the tokens that diff --git a/x/recovery/keeper/ibc_callbacks_integration_test.go b/x/recovery/keeper/ibc_callbacks_integration_test.go index fb94bef565..a687657553 100644 --- a/x/recovery/keeper/ibc_callbacks_integration_test.go +++ b/x/recovery/keeper/ibc_callbacks_integration_test.go @@ -6,12 +6,12 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" transfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" - "github.com/evmos/evmos/v11/app" - ibctesting "github.com/evmos/evmos/v11/ibc/testing" - "github.com/evmos/evmos/v11/testutil" - teststypes "github.com/evmos/evmos/v11/types/tests" - claimstypes "github.com/evmos/evmos/v11/x/claims/types" - "github.com/evmos/evmos/v11/x/recovery/types" + "github.com/evmos/evmos/v12/app" + ibctesting "github.com/evmos/evmos/v12/ibc/testing" + "github.com/evmos/evmos/v12/testutil" + teststypes "github.com/evmos/evmos/v12/types/tests" + claimstypes "github.com/evmos/evmos/v12/x/claims/types" + "github.com/evmos/evmos/v12/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 da3b6f40e2..2eedbc3b62 100644 --- a/x/recovery/keeper/ibc_callbacks_test.go +++ b/x/recovery/keeper/ibc_callbacks_test.go @@ -8,9 +8,9 @@ import ( "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1" sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - "github.com/evmos/evmos/v11/testutil" - utiltx "github.com/evmos/evmos/v11/testutil/tx" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/testutil" + utiltx "github.com/evmos/evmos/v12/testutil/tx" "github.com/stretchr/testify/mock" transfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" @@ -19,11 +19,11 @@ import ( ibcgotesting "github.com/cosmos/ibc-go/v6/testing" ibcmock "github.com/cosmos/ibc-go/v6/testing/mock" - claimstypes "github.com/evmos/evmos/v11/x/claims/types" - incentivestypes "github.com/evmos/evmos/v11/x/incentives/types" - "github.com/evmos/evmos/v11/x/recovery/keeper" - "github.com/evmos/evmos/v11/x/recovery/types" - vestingtypes "github.com/evmos/evmos/v11/x/vesting/types" + claimstypes "github.com/evmos/evmos/v12/x/claims/types" + incentivestypes "github.com/evmos/evmos/v12/x/incentives/types" + "github.com/evmos/evmos/v12/x/recovery/keeper" + "github.com/evmos/evmos/v12/x/recovery/types" + vestingtypes "github.com/evmos/evmos/v12/x/vesting/types" ) func (suite *KeeperTestSuite) TestOnRecvPacket() { diff --git a/x/recovery/keeper/keeper.go b/x/recovery/keeper/keeper.go index db1fb133e0..d132bd3471 100644 --- a/x/recovery/keeper/keeper.go +++ b/x/recovery/keeper/keeper.go @@ -30,7 +30,7 @@ import ( porttypes "github.com/cosmos/ibc-go/v6/modules/core/05-port/types" "github.com/cosmos/ibc-go/v6/modules/core/exported" - "github.com/evmos/evmos/v11/x/recovery/types" + "github.com/evmos/evmos/v12/x/recovery/types" ) var _ porttypes.ICS4Wrapper = Keeper{} diff --git a/x/recovery/keeper/migrations.go b/x/recovery/keeper/migrations.go index e28e63ce10..6f2f492b54 100644 --- a/x/recovery/keeper/migrations.go +++ b/x/recovery/keeper/migrations.go @@ -18,8 +18,8 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - v2 "github.com/evmos/evmos/v11/x/recovery/migrations/v2" - "github.com/evmos/evmos/v11/x/recovery/types" + v2 "github.com/evmos/evmos/v12/x/recovery/migrations/v2" + "github.com/evmos/evmos/v12/x/recovery/types" ) // Migrator is a struct for handling in-place store migrations. diff --git a/x/recovery/keeper/mock_test.go b/x/recovery/keeper/mock_test.go index 17d037168e..649aca5830 100644 --- a/x/recovery/keeper/mock_test.go +++ b/x/recovery/keeper/mock_test.go @@ -12,7 +12,7 @@ import ( transfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" - "github.com/evmos/evmos/v11/x/recovery/types" + "github.com/evmos/evmos/v12/x/recovery/types" ) var _ types.TransferKeeper = &MockTransferKeeper{} diff --git a/x/recovery/keeper/msg_server.go b/x/recovery/keeper/msg_server.go index 2638316d04..1b2be77762 100644 --- a/x/recovery/keeper/msg_server.go +++ b/x/recovery/keeper/msg_server.go @@ -23,7 +23,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/evmos/evmos/v11/x/recovery/types" + "github.com/evmos/evmos/v12/x/recovery/types" ) // UpdateParams implements the gRPC MsgServer interface. When an UpdateParams diff --git a/x/recovery/keeper/msg_server_test.go b/x/recovery/keeper/msg_server_test.go index 5458847a25..d85a2f5df7 100644 --- a/x/recovery/keeper/msg_server_test.go +++ b/x/recovery/keeper/msg_server_test.go @@ -3,7 +3,7 @@ package keeper_test import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/evmos/evmos/v11/x/recovery/types" + "github.com/evmos/evmos/v12/x/recovery/types" ) func (suite *KeeperTestSuite) TestUpdateParams() { diff --git a/x/recovery/keeper/params.go b/x/recovery/keeper/params.go index 16fdea5a58..696ae6b71d 100644 --- a/x/recovery/keeper/params.go +++ b/x/recovery/keeper/params.go @@ -19,7 +19,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/x/recovery/types" + "github.com/evmos/evmos/v12/x/recovery/types" ) // GetParams returns the total set of recovery parameters. diff --git a/x/recovery/keeper/setup_test.go b/x/recovery/keeper/setup_test.go index ccec6af49b..47f2c46f50 100644 --- a/x/recovery/keeper/setup_test.go +++ b/x/recovery/keeper/setup_test.go @@ -9,19 +9,19 @@ import ( "github.com/stretchr/testify/suite" - ibctesting "github.com/evmos/evmos/v11/ibc/testing" - "github.com/evmos/evmos/v11/testutil" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/utils" - feemarkettypes "github.com/evmos/evmos/v11/x/feemarket/types" + ibctesting "github.com/evmos/evmos/v12/ibc/testing" + "github.com/evmos/evmos/v12/testutil" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/utils" + feemarkettypes "github.com/evmos/evmos/v12/x/feemarket/types" "github.com/cosmos/cosmos-sdk/baseapp" sdk "github.com/cosmos/cosmos-sdk/types" ibcgotesting "github.com/cosmos/ibc-go/v6/testing" - "github.com/evmos/evmos/v11/app" - claimstypes "github.com/evmos/evmos/v11/x/claims/types" - "github.com/evmos/evmos/v11/x/recovery/types" + "github.com/evmos/evmos/v12/app" + claimstypes "github.com/evmos/evmos/v12/x/claims/types" + "github.com/evmos/evmos/v12/x/recovery/types" ) var ( diff --git a/x/recovery/keeper/utils_test.go b/x/recovery/keeper/utils_test.go index 61699567ce..7f08821e58 100644 --- a/x/recovery/keeper/utils_test.go +++ b/x/recovery/keeper/utils_test.go @@ -9,12 +9,12 @@ import ( clienttypes "github.com/cosmos/ibc-go/v6/modules/core/02-client/types" channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" ibcgotesting "github.com/cosmos/ibc-go/v6/testing" - "github.com/evmos/evmos/v11/app" - ibctesting "github.com/evmos/evmos/v11/ibc/testing" - "github.com/evmos/evmos/v11/utils" - claimstypes "github.com/evmos/evmos/v11/x/claims/types" - inflationtypes "github.com/evmos/evmos/v11/x/inflation/types" - "github.com/evmos/evmos/v11/x/recovery/types" + "github.com/evmos/evmos/v12/app" + ibctesting "github.com/evmos/evmos/v12/ibc/testing" + "github.com/evmos/evmos/v12/utils" + claimstypes "github.com/evmos/evmos/v12/x/claims/types" + inflationtypes "github.com/evmos/evmos/v12/x/inflation/types" + "github.com/evmos/evmos/v12/x/recovery/types" ) func CreatePacket(amount, denom, sender, receiver, srcPort, srcChannel, dstPort, dstChannel string, seq, timeout uint64) channeltypes.Packet { diff --git a/x/recovery/migrations/v2/migrate.go b/x/recovery/migrations/v2/migrate.go index 7038cac616..03ec2ab828 100644 --- a/x/recovery/migrations/v2/migrate.go +++ b/x/recovery/migrations/v2/migrate.go @@ -21,8 +21,8 @@ import ( storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" - v2types "github.com/evmos/evmos/v11/x/recovery/migrations/v2/types" - "github.com/evmos/evmos/v11/x/recovery/types" + v2types "github.com/evmos/evmos/v12/x/recovery/migrations/v2/types" + "github.com/evmos/evmos/v12/x/recovery/types" ) // MigrateStore migrates the x/recovery module state from the consensus version 1 to diff --git a/x/recovery/migrations/v2/migrate_test.go b/x/recovery/migrations/v2/migrate_test.go index 1d10f5ac56..8175e08919 100644 --- a/x/recovery/migrations/v2/migrate_test.go +++ b/x/recovery/migrations/v2/migrate_test.go @@ -8,11 +8,11 @@ import ( "github.com/cosmos/cosmos-sdk/testutil" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/encoding" - v2 "github.com/evmos/evmos/v11/x/recovery/migrations/v2" - v2types "github.com/evmos/evmos/v11/x/recovery/migrations/v2/types" - "github.com/evmos/evmos/v11/x/recovery/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/encoding" + v2 "github.com/evmos/evmos/v12/x/recovery/migrations/v2" + v2types "github.com/evmos/evmos/v12/x/recovery/migrations/v2/types" + "github.com/evmos/evmos/v12/x/recovery/types" "github.com/stretchr/testify/require" ) diff --git a/x/recovery/migrations/v2/types/params.go b/x/recovery/migrations/v2/types/params.go index 37298a96ed..2aee001abe 100644 --- a/x/recovery/migrations/v2/types/params.go +++ b/x/recovery/migrations/v2/types/params.go @@ -20,7 +20,7 @@ import ( "fmt" "time" - "github.com/evmos/evmos/v11/x/recovery/types" + "github.com/evmos/evmos/v12/x/recovery/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" ) diff --git a/x/recovery/module.go b/x/recovery/module.go index 542b2dcd00..0f23795d04 100644 --- a/x/recovery/module.go +++ b/x/recovery/module.go @@ -35,9 +35,9 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/evmos/evmos/v11/x/recovery/client/cli" - "github.com/evmos/evmos/v11/x/recovery/keeper" - "github.com/evmos/evmos/v11/x/recovery/types" + "github.com/evmos/evmos/v12/x/recovery/client/cli" + "github.com/evmos/evmos/v12/x/recovery/keeper" + "github.com/evmos/evmos/v12/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 19919c7fd7..cfdf766341 100644 --- a/x/recovery/types/interfaces.go +++ b/x/recovery/types/interfaces.go @@ -28,7 +28,7 @@ import ( transfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" - claimstypes "github.com/evmos/evmos/v11/x/claims/types" + claimstypes "github.com/evmos/evmos/v12/x/claims/types" ) // BankKeeper defines the banking keeper that must be fulfilled when diff --git a/x/revenue/v1/client/cli/query.go b/x/revenue/v1/client/cli/query.go index d55af84220..eced31d9e3 100644 --- a/x/revenue/v1/client/cli/query.go +++ b/x/revenue/v1/client/cli/query.go @@ -26,7 +26,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/version" - "github.com/evmos/evmos/v11/x/revenue/v1/types" + "github.com/evmos/evmos/v12/x/revenue/v1/types" ) // GetQueryCmd returns the cli query commands for this module diff --git a/x/revenue/v1/client/cli/tx.go b/x/revenue/v1/client/cli/tx.go index d43a8b69cd..7100ba62c1 100644 --- a/x/revenue/v1/client/cli/tx.go +++ b/x/revenue/v1/client/cli/tx.go @@ -27,9 +27,9 @@ import ( "github.com/cosmos/cosmos-sdk/client/tx" sdk "github.com/cosmos/cosmos-sdk/types" - evmostypes "github.com/evmos/evmos/v11/types" + evmostypes "github.com/evmos/evmos/v12/types" - "github.com/evmos/evmos/v11/x/revenue/v1/types" + "github.com/evmos/evmos/v12/x/revenue/v1/types" ) // NewTxCmd returns a root CLI command handler for certain modules/revenue diff --git a/x/revenue/v1/genesis.go b/x/revenue/v1/genesis.go index 80128b165a..04ff2d59fc 100644 --- a/x/revenue/v1/genesis.go +++ b/x/revenue/v1/genesis.go @@ -20,8 +20,8 @@ import ( errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/x/revenue/v1/keeper" - "github.com/evmos/evmos/v11/x/revenue/v1/types" + "github.com/evmos/evmos/v12/x/revenue/v1/keeper" + "github.com/evmos/evmos/v12/x/revenue/v1/types" ) // InitGenesis import module genesis diff --git a/x/revenue/v1/genesis_test.go b/x/revenue/v1/genesis_test.go index f44ca74aea..febdf144fb 100644 --- a/x/revenue/v1/genesis_test.go +++ b/x/revenue/v1/genesis_test.go @@ -12,13 +12,13 @@ import ( tmversion "github.com/tendermint/tendermint/proto/tendermint/version" "github.com/tendermint/tendermint/version" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/utils" - feemarkettypes "github.com/evmos/evmos/v11/x/feemarket/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/utils" + feemarkettypes "github.com/evmos/evmos/v12/x/feemarket/types" - "github.com/evmos/evmos/v11/app" - revenue "github.com/evmos/evmos/v11/x/revenue/v1" - "github.com/evmos/evmos/v11/x/revenue/v1/types" + "github.com/evmos/evmos/v12/app" + revenue "github.com/evmos/evmos/v12/x/revenue/v1" + "github.com/evmos/evmos/v12/x/revenue/v1/types" ) type GenesisTestSuite struct { diff --git a/x/revenue/v1/handler.go b/x/revenue/v1/handler.go index 3046141f26..f0993e1a61 100644 --- a/x/revenue/v1/handler.go +++ b/x/revenue/v1/handler.go @@ -21,7 +21,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" errortypes "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/evmos/evmos/v11/x/revenue/v1/types" + "github.com/evmos/evmos/v12/x/revenue/v1/types" ) // NewHandler defines the fees module handler instance diff --git a/x/revenue/v1/keeper/evm_hooks.go b/x/revenue/v1/keeper/evm_hooks.go index 9135474519..f8afcc8aa6 100644 --- a/x/revenue/v1/keeper/evm_hooks.go +++ b/x/revenue/v1/keeper/evm_hooks.go @@ -23,9 +23,9 @@ import ( "github.com/ethereum/go-ethereum/core" ethtypes "github.com/ethereum/go-ethereum/core/types" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" - "github.com/evmos/evmos/v11/x/revenue/v1/types" + "github.com/evmos/evmos/v12/x/revenue/v1/types" ) var _ evmtypes.EvmHooks = Hooks{} diff --git a/x/revenue/v1/keeper/grpc_query.go b/x/revenue/v1/keeper/grpc_query.go index 5fd9622374..886e413226 100644 --- a/x/revenue/v1/keeper/grpc_query.go +++ b/x/revenue/v1/keeper/grpc_query.go @@ -27,9 +27,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" "github.com/ethereum/go-ethereum/common" - evmostypes "github.com/evmos/evmos/v11/types" + evmostypes "github.com/evmos/evmos/v12/types" - "github.com/evmos/evmos/v11/x/revenue/v1/types" + "github.com/evmos/evmos/v12/x/revenue/v1/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/revenue/v1/keeper/grpc_query_test.go b/x/revenue/v1/keeper/grpc_query_test.go index 29c4c1b562..8eb57db784 100644 --- a/x/revenue/v1/keeper/grpc_query_test.go +++ b/x/revenue/v1/keeper/grpc_query_test.go @@ -6,8 +6,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/x/revenue/v1/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/x/revenue/v1/types" ) func (suite *KeeperTestSuite) TestRevenues() { diff --git a/x/revenue/v1/keeper/integration_test.go b/x/revenue/v1/keeper/integration_test.go index 392e3c9014..2851ce9509 100644 --- a/x/revenue/v1/keeper/integration_test.go +++ b/x/revenue/v1/keeper/integration_test.go @@ -11,11 +11,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" ethtypes "github.com/ethereum/go-ethereum/core/types" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - "github.com/evmos/evmos/v11/testutil" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" - "github.com/evmos/evmos/v11/x/revenue/v1/types" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/testutil" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" + "github.com/evmos/evmos/v12/x/revenue/v1/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" ) diff --git a/x/revenue/v1/keeper/keeper.go b/x/revenue/v1/keeper/keeper.go index f416f899d1..c7d470f1ac 100644 --- a/x/revenue/v1/keeper/keeper.go +++ b/x/revenue/v1/keeper/keeper.go @@ -24,7 +24,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/tendermint/tendermint/libs/log" - "github.com/evmos/evmos/v11/x/revenue/v1/types" + "github.com/evmos/evmos/v12/x/revenue/v1/types" ) // Keeper of this module maintains collections of revenues for contracts diff --git a/x/revenue/v1/keeper/migrations.go b/x/revenue/v1/keeper/migrations.go index 1219f005ea..524ace1077 100644 --- a/x/revenue/v1/keeper/migrations.go +++ b/x/revenue/v1/keeper/migrations.go @@ -18,8 +18,8 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - v2 "github.com/evmos/evmos/v11/x/revenue/v1/migrations/v2" - "github.com/evmos/evmos/v11/x/revenue/v1/types" + v2 "github.com/evmos/evmos/v12/x/revenue/v1/migrations/v2" + "github.com/evmos/evmos/v12/x/revenue/v1/types" ) // Migrator is a struct for handling in-place store migrations. diff --git a/x/revenue/v1/keeper/msg_server.go b/x/revenue/v1/keeper/msg_server.go index a40ca19525..da5e55222f 100644 --- a/x/revenue/v1/keeper/msg_server.go +++ b/x/revenue/v1/keeper/msg_server.go @@ -27,7 +27,7 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/crypto" - "github.com/evmos/evmos/v11/x/revenue/v1/types" + "github.com/evmos/evmos/v12/x/revenue/v1/types" ) var _ types.MsgServer = &Keeper{} diff --git a/x/revenue/v1/keeper/msg_server_test.go b/x/revenue/v1/keeper/msg_server_test.go index 6411fedd4c..c6b422cec3 100644 --- a/x/revenue/v1/keeper/msg_server_test.go +++ b/x/revenue/v1/keeper/msg_server_test.go @@ -11,9 +11,9 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/crypto" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/x/evm/statedb" - "github.com/evmos/evmos/v11/x/revenue/v1/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/x/evm/statedb" + "github.com/evmos/evmos/v12/x/revenue/v1/types" ) func (suite *KeeperTestSuite) TestRegisterRevenue() { diff --git a/x/revenue/v1/keeper/params.go b/x/revenue/v1/keeper/params.go index c7600dde0f..0d0ee9c60c 100644 --- a/x/revenue/v1/keeper/params.go +++ b/x/revenue/v1/keeper/params.go @@ -19,7 +19,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/x/revenue/v1/types" + "github.com/evmos/evmos/v12/x/revenue/v1/types" ) // GetParams returns the total set of revenue parameters. diff --git a/x/revenue/v1/keeper/params_test.go b/x/revenue/v1/keeper/params_test.go index e6875992de..981ad25c92 100644 --- a/x/revenue/v1/keeper/params_test.go +++ b/x/revenue/v1/keeper/params_test.go @@ -1,6 +1,6 @@ package keeper_test -import "github.com/evmos/evmos/v11/x/revenue/v1/types" +import "github.com/evmos/evmos/v12/x/revenue/v1/types" func (suite *KeeperTestSuite) TestParams() { params := suite.app.RevenueKeeper.GetParams(suite.ctx) diff --git a/x/revenue/v1/keeper/revenues.go b/x/revenue/v1/keeper/revenues.go index 47b0f42212..a85fa90738 100644 --- a/x/revenue/v1/keeper/revenues.go +++ b/x/revenue/v1/keeper/revenues.go @@ -21,7 +21,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/ethereum/go-ethereum/common" - "github.com/evmos/evmos/v11/x/revenue/v1/types" + "github.com/evmos/evmos/v12/x/revenue/v1/types" ) // GetRevenues returns all registered Revenues. diff --git a/x/revenue/v1/keeper/revenues_test.go b/x/revenue/v1/keeper/revenues_test.go index 01f7e257a4..1a9e02e362 100644 --- a/x/revenue/v1/keeper/revenues_test.go +++ b/x/revenue/v1/keeper/revenues_test.go @@ -7,8 +7,8 @@ import ( "github.com/ethereum/go-ethereum/common" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/x/revenue/v1/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/x/revenue/v1/types" ) func (suite *KeeperTestSuite) TestGetFees() { diff --git a/x/revenue/v1/keeper/setup_test.go b/x/revenue/v1/keeper/setup_test.go index 67e5fad59f..93d1e3b376 100644 --- a/x/revenue/v1/keeper/setup_test.go +++ b/x/revenue/v1/keeper/setup_test.go @@ -12,11 +12,11 @@ import ( stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" ethtypes "github.com/ethereum/go-ethereum/core/types" - "github.com/evmos/evmos/v11/app" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - evm "github.com/evmos/evmos/v11/x/evm/types" - feemarkettypes "github.com/evmos/evmos/v11/x/feemarket/types" - "github.com/evmos/evmos/v11/x/revenue/v1/types" + "github.com/evmos/evmos/v12/app" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + evm "github.com/evmos/evmos/v12/x/evm/types" + feemarkettypes "github.com/evmos/evmos/v12/x/feemarket/types" + "github.com/evmos/evmos/v12/x/revenue/v1/types" "github.com/stretchr/testify/suite" ) diff --git a/x/revenue/v1/keeper/utils_test.go b/x/revenue/v1/keeper/utils_test.go index 4760c790e9..800e6aeee1 100644 --- a/x/revenue/v1/keeper/utils_test.go +++ b/x/revenue/v1/keeper/utils_test.go @@ -12,12 +12,12 @@ import ( stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" "github.com/ethereum/go-ethereum/common" ethtypes "github.com/ethereum/go-ethereum/core/types" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - "github.com/evmos/evmos/v11/testutil" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/utils" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" - "github.com/evmos/evmos/v11/x/revenue/v1/types" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/testutil" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/utils" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" + "github.com/evmos/evmos/v12/x/revenue/v1/types" "github.com/stretchr/testify/require" abci "github.com/tendermint/tendermint/abci/types" ) diff --git a/x/revenue/v1/migrations/v2/migrate.go b/x/revenue/v1/migrations/v2/migrate.go index 2618525541..d12c5c2c13 100644 --- a/x/revenue/v1/migrations/v2/migrate.go +++ b/x/revenue/v1/migrations/v2/migrate.go @@ -20,8 +20,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" - v2types "github.com/evmos/evmos/v11/x/revenue/v1/migrations/v2/types" - "github.com/evmos/evmos/v11/x/revenue/v1/types" + v2types "github.com/evmos/evmos/v12/x/revenue/v1/migrations/v2/types" + "github.com/evmos/evmos/v12/x/revenue/v1/types" ) // MigrateStore migrates the x/revenue module state from the consensus version 1 to diff --git a/x/revenue/v1/migrations/v2/migrate_test.go b/x/revenue/v1/migrations/v2/migrate_test.go index 1a871f17f7..629ab915d9 100644 --- a/x/revenue/v1/migrations/v2/migrate_test.go +++ b/x/revenue/v1/migrations/v2/migrate_test.go @@ -6,14 +6,14 @@ import ( storetypes "github.com/cosmos/cosmos-sdk/store/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - "github.com/evmos/evmos/v11/encoding" - v2 "github.com/evmos/evmos/v11/x/revenue/v1/migrations/v2" - v2types "github.com/evmos/evmos/v11/x/revenue/v1/migrations/v2/types" - "github.com/evmos/evmos/v11/x/revenue/v1/types" + "github.com/evmos/evmos/v12/encoding" + v2 "github.com/evmos/evmos/v12/x/revenue/v1/migrations/v2" + v2types "github.com/evmos/evmos/v12/x/revenue/v1/migrations/v2/types" + "github.com/evmos/evmos/v12/x/revenue/v1/types" "github.com/cosmos/cosmos-sdk/testutil" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/app" + "github.com/evmos/evmos/v12/app" "github.com/stretchr/testify/require" ) diff --git a/x/revenue/v1/migrations/v2/types/genesis.pb.go b/x/revenue/v1/migrations/v2/types/genesis.pb.go index dff0ac8db6..e6622d10ba 100644 --- a/x/revenue/v1/migrations/v2/types/genesis.pb.go +++ b/x/revenue/v1/migrations/v2/types/genesis.pb.go @@ -11,7 +11,7 @@ import ( github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" _ "github.com/cosmos/gogoproto/gogoproto" - "github.com/evmos/evmos/v11/x/revenue/v1/types" + "github.com/evmos/evmos/v12/x/revenue/v1/types" proto "github.com/gogo/protobuf/proto" ) diff --git a/x/revenue/v1/migrations/v2/types/params.go b/x/revenue/v1/migrations/v2/types/params.go index bb7114cfd1..afbd337075 100644 --- a/x/revenue/v1/migrations/v2/types/params.go +++ b/x/revenue/v1/migrations/v2/types/params.go @@ -19,7 +19,7 @@ package types import ( "fmt" - "github.com/evmos/evmos/v11/x/revenue/v1/types" + "github.com/evmos/evmos/v12/x/revenue/v1/types" sdk "github.com/cosmos/cosmos-sdk/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" diff --git a/x/revenue/v1/module.go b/x/revenue/v1/module.go index 5a51ec3016..af56143557 100644 --- a/x/revenue/v1/module.go +++ b/x/revenue/v1/module.go @@ -36,9 +36,9 @@ import ( "github.com/spf13/cobra" abci "github.com/tendermint/tendermint/abci/types" - "github.com/evmos/evmos/v11/x/revenue/v1/client/cli" - "github.com/evmos/evmos/v11/x/revenue/v1/keeper" - "github.com/evmos/evmos/v11/x/revenue/v1/types" + "github.com/evmos/evmos/v12/x/revenue/v1/client/cli" + "github.com/evmos/evmos/v12/x/revenue/v1/keeper" + "github.com/evmos/evmos/v12/x/revenue/v1/types" ) // type check to ensure the interface is properly implemented diff --git a/x/revenue/v1/types/genesis_test.go b/x/revenue/v1/types/genesis_test.go index ab7ee2fcf3..f3554f91f6 100644 --- a/x/revenue/v1/types/genesis_test.go +++ b/x/revenue/v1/types/genesis_test.go @@ -4,8 +4,8 @@ import ( "testing" sdk "github.com/cosmos/cosmos-sdk/types" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/x/revenue/v1/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/x/revenue/v1/types" "github.com/stretchr/testify/suite" ) diff --git a/x/revenue/v1/types/interfaces.go b/x/revenue/v1/types/interfaces.go index fa602534ff..dce9b527e0 100644 --- a/x/revenue/v1/types/interfaces.go +++ b/x/revenue/v1/types/interfaces.go @@ -25,8 +25,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/evmos/evmos/v11/x/evm/statedb" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" + "github.com/evmos/evmos/v12/x/evm/statedb" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" ) // AccountKeeper defines the expected interface needed to retrieve account info. diff --git a/x/revenue/v1/types/msg.go b/x/revenue/v1/types/msg.go index b719c9a663..ef19d4cc9e 100644 --- a/x/revenue/v1/types/msg.go +++ b/x/revenue/v1/types/msg.go @@ -21,7 +21,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" errortypes "github.com/cosmos/cosmos-sdk/types/errors" "github.com/ethereum/go-ethereum/common" - evmostypes "github.com/evmos/evmos/v11/types" + evmostypes "github.com/evmos/evmos/v12/types" ) var ( diff --git a/x/revenue/v1/types/msg_test.go b/x/revenue/v1/types/msg_test.go index fe35121c4f..2cf5224b2b 100644 --- a/x/revenue/v1/types/msg_test.go +++ b/x/revenue/v1/types/msg_test.go @@ -10,8 +10,8 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/crypto" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/x/revenue/v1/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/x/revenue/v1/types" ) type MsgsTestSuite struct { diff --git a/x/revenue/v1/types/revenue.go b/x/revenue/v1/types/revenue.go index e7e453020a..ab617d288d 100644 --- a/x/revenue/v1/types/revenue.go +++ b/x/revenue/v1/types/revenue.go @@ -19,7 +19,7 @@ package types import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/ethereum/go-ethereum/common" - evmostypes "github.com/evmos/evmos/v11/types" + evmostypes "github.com/evmos/evmos/v12/types" ) // NewRevenue returns an instance of Revenue. If the provided withdrawer diff --git a/x/revenue/v1/types/revenue_test.go b/x/revenue/v1/types/revenue_test.go index 09e46a8390..de419ae09a 100644 --- a/x/revenue/v1/types/revenue_test.go +++ b/x/revenue/v1/types/revenue_test.go @@ -7,8 +7,8 @@ import ( "github.com/ethereum/go-ethereum/common" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/x/revenue/v1/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/x/revenue/v1/types" "github.com/stretchr/testify/suite" ) diff --git a/x/vesting/client/cli/query.go b/x/vesting/client/cli/query.go index 28148d32c5..c24274e7e8 100644 --- a/x/vesting/client/cli/query.go +++ b/x/vesting/client/cli/query.go @@ -24,7 +24,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/evmos/evmos/v11/x/vesting/types" + "github.com/evmos/evmos/v12/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 b00ea35323..183d598890 100644 --- a/x/vesting/client/cli/tx.go +++ b/x/vesting/client/cli/tx.go @@ -28,7 +28,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkvesting "github.com/cosmos/cosmos-sdk/x/auth/vesting/types" - "github.com/evmos/evmos/v11/x/vesting/types" + "github.com/evmos/evmos/v12/x/vesting/types" ) // Transaction command flags diff --git a/x/vesting/handler.go b/x/vesting/handler.go index f94680d563..bdf438ad85 100644 --- a/x/vesting/handler.go +++ b/x/vesting/handler.go @@ -21,7 +21,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" errortypes "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/evmos/evmos/v11/x/vesting/types" + "github.com/evmos/evmos/v12/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 75c65e3285..33310b9bbe 100644 --- a/x/vesting/keeper/grpc_query.go +++ b/x/vesting/keeper/grpc_query.go @@ -23,7 +23,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/evmos/evmos/v11/x/vesting/types" + "github.com/evmos/evmos/v12/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 20fde5cbd4..e92a266807 100644 --- a/x/vesting/keeper/grpc_query_test.go +++ b/x/vesting/keeper/grpc_query_test.go @@ -6,9 +6,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/evmos/evmos/v11/testutil" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/x/vesting/types" + "github.com/evmos/evmos/v12/testutil" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/x/vesting/types" ) func (suite *KeeperTestSuite) TestBalances() { diff --git a/x/vesting/keeper/integration_test.go b/x/vesting/keeper/integration_test.go index 596ab9f8f5..939402d93d 100644 --- a/x/vesting/keeper/integration_test.go +++ b/x/vesting/keeper/integration_test.go @@ -13,11 +13,11 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" sdkvesting "github.com/cosmos/cosmos-sdk/x/auth/vesting/types" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - "github.com/evmos/evmos/v11/testutil" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/utils" - "github.com/evmos/evmos/v11/x/vesting/types" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/testutil" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/utils" + "github.com/evmos/evmos/v12/x/vesting/types" ) // TestClawbackAccount is a struct to store all relevant information that is corresponding diff --git a/x/vesting/keeper/keeper.go b/x/vesting/keeper/keeper.go index fbe5c72624..4f0e5be4ed 100644 --- a/x/vesting/keeper/keeper.go +++ b/x/vesting/keeper/keeper.go @@ -24,7 +24,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/tendermint/tendermint/libs/log" - "github.com/evmos/evmos/v11/x/vesting/types" + "github.com/evmos/evmos/v12/x/vesting/types" ) // Keeper of this module maintains collections of vesting. diff --git a/x/vesting/keeper/msg_server.go b/x/vesting/keeper/msg_server.go index be3616f670..41560c2b08 100644 --- a/x/vesting/keeper/msg_server.go +++ b/x/vesting/keeper/msg_server.go @@ -21,7 +21,7 @@ import ( "strconv" "time" - evmostypes "github.com/evmos/evmos/v11/types" + evmostypes "github.com/evmos/evmos/v12/types" "github.com/armon/go-metrics" @@ -33,7 +33,7 @@ import ( vestingexported "github.com/cosmos/cosmos-sdk/x/auth/vesting/exported" sdkvesting "github.com/cosmos/cosmos-sdk/x/auth/vesting/types" - "github.com/evmos/evmos/v11/x/vesting/types" + "github.com/evmos/evmos/v12/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 fe36b2c46c..1bdcc02eac 100644 --- a/x/vesting/keeper/msg_server_test.go +++ b/x/vesting/keeper/msg_server_test.go @@ -5,16 +5,16 @@ import ( "time" vestingexported "github.com/cosmos/cosmos-sdk/x/auth/vesting/exported" - evmostypes "github.com/evmos/evmos/v11/types" + evmostypes "github.com/evmos/evmos/v12/types" sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" sdkvesting "github.com/cosmos/cosmos-sdk/x/auth/vesting/types" - "github.com/evmos/evmos/v11/testutil" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/x/vesting/types" + "github.com/evmos/evmos/v12/testutil" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/x/vesting/types" ) var ( diff --git a/x/vesting/keeper/setup_test.go b/x/vesting/keeper/setup_test.go index 1e148a7454..ab4a3a591b 100644 --- a/x/vesting/keeper/setup_test.go +++ b/x/vesting/keeper/setup_test.go @@ -15,10 +15,10 @@ import ( "github.com/stretchr/testify/suite" ethtypes "github.com/ethereum/go-ethereum/core/types" - evm "github.com/evmos/evmos/v11/x/evm/types" + evm "github.com/evmos/evmos/v12/x/evm/types" - "github.com/evmos/evmos/v11/app" - "github.com/evmos/evmos/v11/x/vesting/types" + "github.com/evmos/evmos/v12/app" + "github.com/evmos/evmos/v12/x/vesting/types" ) var ( diff --git a/x/vesting/keeper/utils_test.go b/x/vesting/keeper/utils_test.go index ada194c737..cc100569d8 100644 --- a/x/vesting/keeper/utils_test.go +++ b/x/vesting/keeper/utils_test.go @@ -19,19 +19,19 @@ import ( ethtypes "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/crypto" - "github.com/evmos/evmos/v11/app" - cosmosante "github.com/evmos/evmos/v11/app/ante/cosmos" - evmante "github.com/evmos/evmos/v11/app/ante/evm" - "github.com/evmos/evmos/v11/contracts" - "github.com/evmos/evmos/v11/crypto/ethsecp256k1" - "github.com/evmos/evmos/v11/encoding" - "github.com/evmos/evmos/v11/testutil" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - evmostypes "github.com/evmos/evmos/v11/types" - "github.com/evmos/evmos/v11/utils" - epochstypes "github.com/evmos/evmos/v11/x/epochs/types" - evmtypes "github.com/evmos/evmos/v11/x/evm/types" - "github.com/evmos/evmos/v11/x/vesting/types" + "github.com/evmos/evmos/v12/app" + cosmosante "github.com/evmos/evmos/v12/app/ante/cosmos" + evmante "github.com/evmos/evmos/v12/app/ante/evm" + "github.com/evmos/evmos/v12/contracts" + "github.com/evmos/evmos/v12/crypto/ethsecp256k1" + "github.com/evmos/evmos/v12/encoding" + "github.com/evmos/evmos/v12/testutil" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + evmostypes "github.com/evmos/evmos/v12/types" + "github.com/evmos/evmos/v12/utils" + epochstypes "github.com/evmos/evmos/v12/x/epochs/types" + evmtypes "github.com/evmos/evmos/v12/x/evm/types" + "github.com/evmos/evmos/v12/x/vesting/types" "github.com/stretchr/testify/require" ) diff --git a/x/vesting/module.go b/x/vesting/module.go index 1bf0c825eb..e0fca47a4e 100644 --- a/x/vesting/module.go +++ b/x/vesting/module.go @@ -34,9 +34,9 @@ import ( bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" - "github.com/evmos/evmos/v11/x/vesting/client/cli" - "github.com/evmos/evmos/v11/x/vesting/keeper" - "github.com/evmos/evmos/v11/x/vesting/types" + "github.com/evmos/evmos/v12/x/vesting/client/cli" + "github.com/evmos/evmos/v12/x/vesting/keeper" + "github.com/evmos/evmos/v12/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 d644ef8c89..4c6cbf6330 100644 --- a/x/vesting/types/clawback_vesting_account_test.go +++ b/x/vesting/types/clawback_vesting_account_test.go @@ -11,8 +11,8 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" sdkvesting "github.com/cosmos/cosmos-sdk/x/auth/vesting/types" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/x/vesting/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/x/vesting/types" ) var ( diff --git a/x/vesting/types/msg_test.go b/x/vesting/types/msg_test.go index 635dacd07b..436c8b016a 100644 --- a/x/vesting/types/msg_test.go +++ b/x/vesting/types/msg_test.go @@ -8,8 +8,8 @@ import ( sdkvesting "github.com/cosmos/cosmos-sdk/x/auth/vesting/types" "github.com/stretchr/testify/suite" - utiltx "github.com/evmos/evmos/v11/testutil/tx" - "github.com/evmos/evmos/v11/x/vesting/types" + utiltx "github.com/evmos/evmos/v12/testutil/tx" + "github.com/evmos/evmos/v12/x/vesting/types" ) type MsgsTestSuite struct {