2021-01-06 20:56:40 +00:00
|
|
|
package keeper
|
|
|
|
|
|
|
|
import (
|
2021-04-17 10:00:07 +00:00
|
|
|
"context"
|
2021-05-10 16:34:00 +00:00
|
|
|
"errors"
|
2021-04-17 10:00:07 +00:00
|
|
|
|
2021-04-18 15:54:18 +00:00
|
|
|
ethcmn "github.com/ethereum/go-ethereum/common"
|
2021-05-10 16:34:00 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/vm"
|
|
|
|
|
2021-04-18 15:54:18 +00:00
|
|
|
tmtypes "github.com/tendermint/tendermint/types"
|
2021-01-06 20:56:40 +00:00
|
|
|
|
2021-05-10 16:34:00 +00:00
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
|
|
|
|
|
2021-01-06 20:56:40 +00:00
|
|
|
"github.com/cosmos/ethermint/x/evm/types"
|
|
|
|
)
|
|
|
|
|
2021-04-18 15:54:18 +00:00
|
|
|
var _ types.MsgServer = &Keeper{}
|
|
|
|
|
|
|
|
func (k *Keeper) EthereumTx(goCtx context.Context, msg *types.MsgEthereumTx) (*types.MsgEthereumTxResponse, error) {
|
2021-04-17 10:00:07 +00:00
|
|
|
ctx := sdk.UnwrapSDKContext(goCtx)
|
|
|
|
|
2021-05-10 16:34:00 +00:00
|
|
|
ethMsg, err := msg.AsMessage()
|
2021-01-06 20:56:40 +00:00
|
|
|
if err != nil {
|
2021-05-10 16:34:00 +00:00
|
|
|
return nil, sdkerrors.Wrap(sdkerrors.ErrorInvalidSigner, err.Error())
|
2021-01-06 20:56:40 +00:00
|
|
|
}
|
|
|
|
|
2021-05-10 16:34:00 +00:00
|
|
|
config, found := k.GetChainConfig(ctx)
|
|
|
|
if !found {
|
|
|
|
return nil, types.ErrChainConfigNotFound
|
2021-01-06 20:56:40 +00:00
|
|
|
}
|
|
|
|
|
2021-05-10 16:34:00 +00:00
|
|
|
sender := ethMsg.From()
|
|
|
|
|
2021-04-17 10:00:07 +00:00
|
|
|
txHash := tmtypes.Tx(ctx.TxBytes()).Hash()
|
|
|
|
ethHash := ethcmn.BytesToHash(txHash)
|
2021-05-05 13:10:21 +00:00
|
|
|
blockHash, _ := k.GetBlockHashFromHeight(ctx, ctx.BlockHeight())
|
|
|
|
ethBlockHash := ethcmn.BytesToHash(blockHash)
|
2021-04-17 10:00:07 +00:00
|
|
|
|
2021-04-18 15:54:18 +00:00
|
|
|
st := &types.StateTransition{
|
2021-05-10 16:34:00 +00:00
|
|
|
Message: ethMsg,
|
|
|
|
Csdb: k.CommitStateDB.WithContext(ctx),
|
|
|
|
ChainID: msg.ChainID(),
|
|
|
|
TxHash: ðHash,
|
|
|
|
Simulate: ctx.IsCheckTx(),
|
2021-01-06 20:56:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// since the txCount is used by the stateDB, and a simulated tx is run only on the node it's submitted to,
|
|
|
|
// then this will cause the txCount/stateDB of the node that ran the simulated tx to be different than the
|
|
|
|
// other nodes, causing a consensus error
|
|
|
|
if !st.Simulate {
|
|
|
|
// Prepare db for logs
|
2021-05-05 13:10:21 +00:00
|
|
|
k.Prepare(ctx, ethHash, ethBlockHash, k.TxCount)
|
2021-01-06 20:56:40 +00:00
|
|
|
k.TxCount++
|
|
|
|
}
|
|
|
|
|
|
|
|
executionResult, err := st.TransitionDb(ctx, config)
|
|
|
|
if err != nil {
|
2021-05-10 16:34:00 +00:00
|
|
|
if errors.Is(err, vm.ErrExecutionReverted) && executionResult != nil {
|
2021-04-18 15:54:18 +00:00
|
|
|
// keep the execution result for revert reason
|
|
|
|
executionResult.Response.Reverted = true
|
|
|
|
|
|
|
|
if !st.Simulate {
|
|
|
|
k.SetTxReceiptToHash(ctx, ethHash, &types.TxReceipt{
|
|
|
|
Hash: ethHash.Bytes(),
|
|
|
|
From: sender.Bytes(),
|
|
|
|
Data: msg.Data,
|
|
|
|
BlockHeight: uint64(ctx.BlockHeight()),
|
|
|
|
BlockHash: blockHash,
|
|
|
|
Result: &types.TxResult{
|
|
|
|
ContractAddress: executionResult.Response.ContractAddress,
|
|
|
|
Bloom: executionResult.Response.Bloom,
|
|
|
|
TxLogs: executionResult.Response.TxLogs,
|
|
|
|
Ret: executionResult.Response.Ret,
|
|
|
|
Reverted: executionResult.Response.Reverted,
|
|
|
|
GasUsed: executionResult.GasInfo.GasConsumed,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
return executionResult.Response, nil
|
|
|
|
}
|
|
|
|
|
2021-01-06 20:56:40 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if !st.Simulate {
|
|
|
|
// update block bloom filter
|
|
|
|
k.Bloom.Or(k.Bloom, executionResult.Bloom)
|
|
|
|
|
|
|
|
// update transaction logs in KVStore
|
2021-04-18 15:54:18 +00:00
|
|
|
err = k.SetLogs(ctx, ethHash, executionResult.Logs)
|
2021-01-06 20:56:40 +00:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2021-04-18 15:54:18 +00:00
|
|
|
|
|
|
|
blockHash, _ := k.GetBlockHashFromHeight(ctx, ctx.BlockHeight())
|
|
|
|
k.SetTxReceiptToHash(ctx, ethHash, &types.TxReceipt{
|
|
|
|
Hash: ethHash.Bytes(),
|
|
|
|
From: sender.Bytes(),
|
|
|
|
Data: msg.Data,
|
|
|
|
Index: uint64(st.Csdb.TxIndex()),
|
|
|
|
BlockHeight: uint64(ctx.BlockHeight()),
|
|
|
|
BlockHash: blockHash,
|
|
|
|
Result: &types.TxResult{
|
|
|
|
ContractAddress: executionResult.Response.ContractAddress,
|
|
|
|
Bloom: executionResult.Response.Bloom,
|
|
|
|
TxLogs: executionResult.Response.TxLogs,
|
|
|
|
Ret: executionResult.Response.Ret,
|
|
|
|
Reverted: executionResult.Response.Reverted,
|
|
|
|
GasUsed: executionResult.GasInfo.GasConsumed,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
k.AddTxHashToBlock(ctx, ctx.BlockHeight(), ethHash)
|
|
|
|
|
|
|
|
for _, ethLog := range executionResult.Logs {
|
|
|
|
k.LogsCache[ethLog.Address] = append(k.LogsCache[ethLog.Address], ethLog)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// emit events
|
|
|
|
ctx.EventManager().EmitEvents(sdk.Events{
|
|
|
|
sdk.NewEvent(
|
|
|
|
types.EventTypeEthereumTx,
|
2021-05-10 16:34:00 +00:00
|
|
|
sdk.NewAttribute(sdk.AttributeKeyAmount, st.Message.Value().String()),
|
2021-04-18 15:54:18 +00:00
|
|
|
sdk.NewAttribute(types.AttributeKeyTxHash, ethcmn.BytesToHash(txHash).Hex()),
|
|
|
|
),
|
|
|
|
sdk.NewEvent(
|
|
|
|
sdk.EventTypeMessage,
|
|
|
|
sdk.NewAttribute(sdk.AttributeKeyModule, types.AttributeValueCategory),
|
|
|
|
sdk.NewAttribute(sdk.AttributeKeySender, sender.String()),
|
|
|
|
),
|
|
|
|
})
|
|
|
|
|
2021-05-10 16:34:00 +00:00
|
|
|
if len(msg.Data.To) > 0 {
|
|
|
|
ethAddr := ethcmn.BytesToAddress(msg.Data.To)
|
2021-01-06 20:56:40 +00:00
|
|
|
ctx.EventManager().EmitEvent(
|
|
|
|
sdk.NewEvent(
|
|
|
|
types.EventTypeEthereumTx,
|
2021-04-18 15:54:18 +00:00
|
|
|
sdk.NewAttribute(types.AttributeKeyRecipient, ethAddr.Hex()),
|
2021-01-06 20:56:40 +00:00
|
|
|
),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-04-17 10:00:07 +00:00
|
|
|
return executionResult.Response, nil
|
2021-01-06 20:56:40 +00:00
|
|
|
}
|