Skip to content
This repository has been archived by the owner on Apr 4, 2024. It is now read-only.

v0.10.0-alpha2

Compare
Choose a tag to compare
@fedekunze fedekunze released this 27 Jan 22:35
· 7 commits to release/v0.10.x since this release
aa83039

v0.10.0-alpha2 - 2022-01-27

API Breaking

  • (ante) #866 NewAnteHandler constructor now receives a HandlerOptions field.
  • (evm) #849 PostTxProcessing hook now takes an Ethereum tx Receipt and a from Address as arguments.
  • (ante) #916 don't check min-gas-price for eth tx if london hardfork enabled and feemarket enabled.

State Machine Breaking

  • (deps) tharis#912 Bump Cosmos SDK version to v0.45.0
  • (evm) tharsis#840 Store empty topics as empty array rather than nil.
  • (feemarket) tharsis#822 Update EIP1559 base fee in BeginBlock.
  • (evm) tharsis#817 Use effectiveGasPrice in ante handler, add effectiveGasPrice to tx receipt.
  • (evm) tharsis#808 increase nonce in ante handler for contract creation transaction.
  • (evm) tharsis#851 fix contract address used in EVM, this issue is caused by tharsis#808.
  • (evm) Reject invalid MsgEthereumTx wrapping tx
  • (evm) Fix SelfDestruct opcode by deleting account code and state.
  • (feemarket) tharsis#855 consistent BaseFee check logic.
  • (evm) tharsis#729 Refactor EVM StateDB implementation.

Improvements

  • (types) tharsis#884 Introduce a new EthAccountI interface for EVM-compatible account types.
  • (types) tharsis#849 Add Type function to distinguish EOAs from Contract accounts.
  • (evm) tharsis#826 Improve allocation of bytes of tx.To address.
  • (evm) tharsis#827 Speed up creation of event logs by using the slice insertion idiom with indices.
  • (ante) tharsis#819 remove redundant ante handlers
  • (app) tharsis#873 Validate code hash in GenesisAccount
  • (evm) tharsis#901 Support multiple MsgEthereumTx in single tx.
  • (config) tharsis#908 Add api.enable flag for Cosmos SDK Rest server
  • (feemarket) tharsis#919 Initialize baseFee in default genesis state.

Bug Fixes

  • (evm) tharsis#884 Support multiple account types on the EVM StateDB.
  • (rpc) tharsis#831 Fix BaseFee value when height is specified.
  • (evm) tharsis#838 Fix splitting of trace.Memory into 32 chunks.
  • (rpc) tharsis#860 Fix eth_getLogs when specify blockHash without address/topics, and limit the response size.
  • (rpc) tharsis#865 Fix RPC Filter parameters being ignored
  • (evm) tharsis#871 Set correct nonce in EthCall and EstimateGas grpc query.
  • (rpc) tharsis#878 Workaround to make GetBlock RPC api report correct block gas used.
  • (rpc) tharsis#900 newPendingTransactions filter return ethereum tx hash.

Full Changelog: v0.9.0...v0.10.0-alpha2