nimbus-eth1/tests/all_tests.nim
andri lim 26a8759c34
implementation of EIP-4844: Shard Blob Transactions (#1440)
* EIP-4844: add pointEvaluation precompiled contract

* EIP-4844: validate transaction and block header

* EIP-4844: implement DataHash Op Code

* EIP-4844: txPool support excessDataGas calculation

* EIP-4844: make sure tx produce correct txHash

* EIP-4844: node should not automatically broadcast blob tx to it's peers

* EIP-4844: add test cases

* EIP-4844: add EIP-4844 support to t8n tool

* EIP-4844: update nim-eth to branch eip-4844

* fix t8n transaction decoding

* add t8n test data

* EIP-4844: fix blobHash opcode

* disable blobHash test when evmc_enable
2023-06-24 20:56:44 +07:00

53 lines
1.6 KiB
Nim

# Nimbus
# Copyright (c) 2018-2019 Status Research & Development GmbH
# Licensed under either of
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
# * MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
# at your option. This file may not be copied, modified, or distributed except according to those terms.
import ../test_macro
{. warning[UnusedImport]:off .}
cliBuilder:
import ./test_code_stream,
./test_accounts_cache,
./test_aristo,
./test_custom_network,
./test_sync_snap,
./test_rocksdb_timing,
./test_jwt_auth,
./test_gas_meter,
./test_memory,
./test_stack,
./test_genesis,
./test_precompiles,
./test_generalstate_json,
./test_tracer_json,
./test_persistblock_json,
./test_rpc,
./test_filters,
./test_op_arith,
./test_op_bit,
./test_op_env,
./test_op_memory,
./test_op_misc,
./test_op_custom,
./test_state_db,
./test_difficulty,
./test_transaction_json,
./test_blockchain_json,
./test_forkid,
../stateless/test_witness_keys,
../stateless/test_block_witness,
../stateless/test_witness_json,
./test_misc,
./test_graphql,
./test_clique,
./test_pow,
./test_configuration,
./test_keyed_queue_rlp,
./test_txpool,
./test_merge,
./test_eip4844