30f34e6c59
* evm: move Keeper and Querier to /keeper package * keeper: update keeper_test.go * fix format * evm: use aliased types * add comments from review * changelog
118 lines
3.2 KiB
Go
118 lines
3.2 KiB
Go
package evm
|
|
|
|
import (
|
|
"fmt"
|
|
"math/big"
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
authutils "github.com/cosmos/cosmos-sdk/x/auth/client/utils"
|
|
emint "github.com/cosmos/ethermint/types"
|
|
"github.com/cosmos/ethermint/x/evm/types"
|
|
|
|
tmtypes "github.com/tendermint/tendermint/types"
|
|
)
|
|
|
|
// NewHandler returns a handler for Ethermint type messages.
|
|
func NewHandler(k Keeper) sdk.Handler {
|
|
return func(ctx sdk.Context, msg sdk.Msg) sdk.Result {
|
|
switch msg := msg.(type) {
|
|
case types.EthereumTxMsg:
|
|
return handleETHTxMsg(ctx, k, msg)
|
|
case *types.EmintMsg:
|
|
return handleEmintMsg(ctx, k, *msg)
|
|
default:
|
|
errMsg := fmt.Sprintf("Unrecognized ethermint Msg type: %v", msg.Type())
|
|
return sdk.ErrUnknownRequest(errMsg).Result()
|
|
}
|
|
}
|
|
}
|
|
|
|
// Handle an Ethereum specific tx
|
|
func handleETHTxMsg(ctx sdk.Context, k Keeper, msg types.EthereumTxMsg) sdk.Result {
|
|
if err := msg.ValidateBasic(); err != nil {
|
|
return err.Result()
|
|
}
|
|
|
|
// parse the chainID from a string to a base-10 integer
|
|
intChainID, ok := new(big.Int).SetString(ctx.ChainID(), 10)
|
|
if !ok {
|
|
return emint.ErrInvalidChainID(fmt.Sprintf("invalid chainID: %s", ctx.ChainID())).Result()
|
|
}
|
|
|
|
// Verify signature and retrieve sender address
|
|
sender, err := msg.VerifySig(intChainID)
|
|
if err != nil {
|
|
return emint.ErrInvalidSender(err.Error()).Result()
|
|
}
|
|
|
|
// Encode transaction by default Tx encoder
|
|
txEncoder := authutils.GetTxEncoder(types.ModuleCdc)
|
|
txBytes, err := txEncoder(msg)
|
|
if err != nil {
|
|
return sdk.ErrInternal(err.Error()).Result()
|
|
}
|
|
txHash := tmtypes.Tx(txBytes).Hash()
|
|
ethHash := common.BytesToHash(txHash)
|
|
|
|
st := types.StateTransition{
|
|
Sender: sender,
|
|
AccountNonce: msg.Data.AccountNonce,
|
|
Price: msg.Data.Price,
|
|
GasLimit: msg.Data.GasLimit,
|
|
Recipient: msg.Data.Recipient,
|
|
Amount: msg.Data.Amount,
|
|
Payload: msg.Data.Payload,
|
|
Csdb: k.CommitStateDB.WithContext(ctx),
|
|
ChainID: intChainID,
|
|
THash: ðHash,
|
|
Simulate: ctx.IsCheckTx(),
|
|
}
|
|
// Prepare db for logs
|
|
k.CommitStateDB.Prepare(ethHash, common.Hash{}, k.TxCount.Get())
|
|
k.TxCount.Increment()
|
|
|
|
bloom, res := st.TransitionCSDB(ctx)
|
|
if res.IsOK() {
|
|
k.Bloom.Or(k.Bloom, bloom)
|
|
}
|
|
return res
|
|
}
|
|
|
|
func handleEmintMsg(ctx sdk.Context, k Keeper, msg types.EmintMsg) sdk.Result {
|
|
if err := msg.ValidateBasic(); err != nil {
|
|
return err.Result()
|
|
}
|
|
|
|
// parse the chainID from a string to a base-10 integer
|
|
intChainID, ok := new(big.Int).SetString(ctx.ChainID(), 10)
|
|
if !ok {
|
|
return emint.ErrInvalidChainID(fmt.Sprintf("invalid chainID: %s", ctx.ChainID())).Result()
|
|
}
|
|
|
|
st := types.StateTransition{
|
|
Sender: common.BytesToAddress(msg.From.Bytes()),
|
|
AccountNonce: msg.AccountNonce,
|
|
Price: msg.Price.BigInt(),
|
|
GasLimit: msg.GasLimit,
|
|
Amount: msg.Amount.BigInt(),
|
|
Payload: msg.Payload,
|
|
Csdb: k.CommitStateDB.WithContext(ctx),
|
|
ChainID: intChainID,
|
|
Simulate: ctx.IsCheckTx(),
|
|
}
|
|
|
|
if msg.Recipient != nil {
|
|
to := common.BytesToAddress(msg.Recipient.Bytes())
|
|
st.Recipient = &to
|
|
}
|
|
|
|
// Prepare db for logs
|
|
k.CommitStateDB.Prepare(common.Hash{}, common.Hash{}, k.TxCount.Get()) // Cannot provide tx hash
|
|
k.TxCount.Increment()
|
|
|
|
_, res := st.TransitionCSDB(ctx)
|
|
return res
|
|
}
|