package types import ( "math/big" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core" ethtypes "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/core/vm" sdk "github.com/cosmos/cosmos-sdk/types" emint "github.com/cosmos/ethermint/types" ) // StateTransition defines data to transitionDB in evm type StateTransition struct { Payload []byte Recipient *common.Address AccountNonce uint64 GasLimit uint64 Price *big.Int Amount *big.Int ChainID *big.Int Csdb *CommitStateDB THash *common.Hash Sender common.Address Simulate bool } // TransitionCSDB performs an evm state transition from a transaction func (st StateTransition) TransitionCSDB(ctx sdk.Context) (*big.Int, sdk.Result) { contractCreation := st.Recipient == nil cost, err := core.IntrinsicGas(st.Payload, contractCreation, true) if err != nil { return nil, sdk.ErrOutOfGas("invalid intrinsic gas for transaction").Result() } // This gas limit the the transaction gas limit with intrinsic gas subtracted gasLimit := st.GasLimit - ctx.GasMeter().GasConsumed() csdb := st.Csdb.WithContext(ctx) if st.Simulate { // gasLimit is set here because stdTxs incur gaskv charges in the ante handler, but for eth_call // the cost needs to be the same as an Ethereum transaction sent through the web3 API consumedGas := ctx.GasMeter().GasConsumed() gasLimit = st.GasLimit - cost if consumedGas < cost { // If Cosmos standard tx ante handler cost is less than EVM intrinsic cost // gas must be consumed to match to accurately simulate an Ethereum transaction ctx.GasMeter().ConsumeGas(cost-consumedGas, "Intrinsic gas match") } csdb = st.Csdb.Copy() } // This gas meter is set up to consume gas from gaskv during evm execution and be ignored currentGasMeter := ctx.GasMeter() evmGasMeter := sdk.NewInfiniteGasMeter() csdb.WithContext(ctx.WithGasMeter(evmGasMeter)) // Clear cache of accounts to handle changes outside of the EVM csdb.UpdateAccounts() // Create context for evm context := vm.Context{ CanTransfer: core.CanTransfer, Transfer: core.Transfer, Origin: st.Sender, Coinbase: common.Address{}, BlockNumber: big.NewInt(ctx.BlockHeight()), Time: big.NewInt(ctx.BlockHeader().Time.Unix()), Difficulty: big.NewInt(0x30000), // unused GasLimit: gasLimit, GasPrice: ctx.MinGasPrices().AmountOf(emint.DenomDefault).Int, } vmenv := vm.NewEVM(context, csdb, GenerateChainConfig(st.ChainID), vm.Config{}) var ( ret []byte leftOverGas uint64 addr common.Address vmerr error senderRef = vm.AccountRef(st.Sender) ) // Get nonce of account outside of the EVM currentNonce := st.Csdb.GetNonce(st.Sender) // Set nonce of sender account before evm state transition for usage in generating Create address st.Csdb.SetNonce(st.Sender, st.AccountNonce) if contractCreation { ret, addr, leftOverGas, vmerr = vmenv.Create(senderRef, st.Payload, gasLimit, st.Amount) } else { // Increment the nonce for the next transaction (just for evm state transition) csdb.SetNonce(st.Sender, csdb.GetNonce(st.Sender)+1) ret, leftOverGas, vmerr = vmenv.Call(senderRef, *st.Recipient, st.Payload, gasLimit, st.Amount) } // Resets nonce to value pre state transition st.Csdb.SetNonce(st.Sender, currentNonce) // Generate bloom filter to be saved in tx receipt data bloomInt := big.NewInt(0) var bloomFilter ethtypes.Bloom if st.THash != nil && !st.Simulate { logs := csdb.GetLogs(*st.THash) bloomInt = ethtypes.LogsBloom(logs) bloomFilter = ethtypes.BytesToBloom(bloomInt.Bytes()) } // Encode all necessary data into slice of bytes to return in sdk result returnData := EncodeReturnData(addr, bloomFilter, ret) // handle errors if vmerr != nil { res := emint.ErrVMExecution(vmerr.Error()).Result() if vmerr == vm.ErrOutOfGas || vmerr == vm.ErrCodeStoreOutOfGas { res = sdk.ErrOutOfGas("EVM execution went out of gas").Result() } res.Data = returnData // Consume gas before returning ctx.GasMeter().ConsumeGas(gasLimit-leftOverGas, "EVM execution consumption") return nil, res } // TODO: Refund unused gas here, if intended in future if !st.Simulate { // Finalise state if not a simulated transaction st.Csdb.Finalise(true) // Change to depend on config } // Consume gas from evm execution // Out of gas check does not need to be done here since it is done within the EVM execution ctx.WithGasMeter(currentGasMeter).GasMeter().ConsumeGas(gasLimit-leftOverGas, "EVM execution consumption") return bloomInt, sdk.Result{Data: returnData, GasUsed: st.GasLimit - leftOverGas} }