├── .clang-format ├── .editorconfig ├── .gitignore ├── .gitmodules ├── .travis.yml ├── .ycm_extra_conf.py ├── CMakeLists.txt ├── CODING_STYLE.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── appveyor.yml ├── circle.yml ├── cmake ├── EthBuildInfo.cmake ├── EthCcache.cmake ├── EthCheckCXXCompilerFlag.cmake ├── EthCompilerSettings.cmake ├── EthDependencies.cmake ├── EthExecutableHelper.cmake ├── EthOptions.cmake ├── EthPolicy.cmake ├── EthUtils.cmake ├── FindLevelDB.cmake ├── FindMiniupnpc.cmake ├── Hunter │ └── config.cmake ├── HunterGate.cmake ├── ProjectLibFF.cmake ├── ProjectMPIR.cmake ├── ProjectSecp256k1.cmake ├── UseMiniupnpc.cmake ├── scripts │ ├── buildinfo.cmake │ ├── configure.cmake │ ├── copydlls.cmake │ ├── helpers.cmake │ ├── install_deps.cmake │ ├── jsonrpcstub.cmake │ ├── resource.hpp.in │ ├── resources.cmake │ └── runtest.cmake ├── secp256k1 │ └── CMakeLists.txt ├── templates │ └── BuildInfo.h.in └── toolchain.cmake ├── codecov.yml ├── doc ├── Doxyfile ├── database_layout.rst ├── dependencies.rst ├── generating_tests.rst ├── gitbook │ ├── README.md │ ├── SUMMARY.md │ ├── book.json │ ├── cli_tools.md │ ├── cold_wallet_storage_device.md │ ├── ethkey.md │ ├── getting_started.md │ ├── installation.md │ ├── interactive_console.md │ ├── mining.md │ ├── styles │ │ └── website.css │ ├── transaction_explorer.md │ └── whisper.md ├── index.rst ├── snapshot_sync.rst └── usingtesteth.rst ├── eth ├── ethkey ├── ethvm ├── homebrew ├── INSTALL_RECEIPT.json ├── fix_homebrew_paths_in_standalone_zip.py ├── homebrew.mxcl.cpp-ethereum.plist └── prepare_receipt.sh ├── libdevcore ├── libdevcrypto ├── libethash ├── libethashseal ├── libethcore ├── libethereum ├── libevm ├── libp2p ├── libweb3jsonrpc ├── libwebthree ├── refilltests ├── rlp ├── sanitizer-blacklist.txt ├── scripts ├── Dockerfile ├── build.sh ├── cleanup_ccache.sh ├── docker-eth ├── docker │ ├── cpp-build-env.dockerfile │ ├── eth-centos │ │ └── Dockerfile │ ├── eth-debian │ │ └── Dockerfile │ ├── eth-fedora │ │ └── Dockerfile │ ├── eth-oraclelinux │ │ └── Dockerfile │ └── eth.dockerfile ├── duplicates.sh ├── install_cmake.sh ├── install_deps.bat ├── install_deps.sh ├── install_solc_lllc.sh ├── jsonrpcproxy.py ├── ppabuild.sh ├── prepare_ccache.sh ├── release.bat ├── release.sh ├── runalltests.sh ├── sync_files_with_solidity.sh ├── tests.bat ├── tests.sh └── upload-homebrew-formula.sh ├── snapcraft.yaml ├── test ├── CMakeLists.txt ├── tools │ ├── fuzzTesting │ │ ├── BoostRandomCode.cpp │ │ ├── BoostRandomCode.h │ │ ├── RandomCode.h │ │ ├── createRandomTest.cpp │ │ ├── fuzzHelper.cpp │ │ └── fuzzHelper.h │ ├── jsontests │ │ ├── BlockChainTests.cpp │ │ ├── BlockChainTests.h │ │ ├── StateTests.cpp │ │ ├── StateTests.h │ │ ├── TransactionTests.cpp │ │ ├── TransactionTests.h │ │ ├── vm.cpp │ │ └── vm.h │ ├── libtesteth │ │ ├── BlockChainHelper.cpp │ │ ├── BlockChainHelper.h │ │ ├── FillJsonFunctions.cpp │ │ ├── ImportTest.cpp │ │ ├── ImportTest.h │ │ ├── JsonSpiritHeaders.h │ │ ├── Options.cpp │ │ ├── Options.h │ │ ├── Stats.cpp │ │ ├── Stats.h │ │ ├── TestHelper.cpp │ │ ├── TestHelper.h │ │ ├── TestOutputHelper.cpp │ │ ├── TestOutputHelper.h │ │ ├── TestSuite.cpp │ │ ├── TestSuite.h │ │ ├── TestUtils.cpp │ │ ├── TestUtils.h │ │ ├── boostTest.cpp │ │ ├── wast2wasm.cpp │ │ └── wast2wasm.h │ └── libtestutils │ │ ├── BlockChainLoader.cpp │ │ ├── BlockChainLoader.h │ │ ├── Common.cpp │ │ ├── Common.h │ │ ├── FixedClient.cpp │ │ ├── FixedClient.h │ │ └── TestLastBlockHashes.h └── unittests │ ├── external-dependencies │ └── boost.cpp │ ├── libdevcore │ ├── CommonJS.cpp │ ├── FixedHash.cpp │ ├── RangeMask.cpp │ ├── core.cpp │ └── rlp.cpp │ ├── libdevcrypto │ ├── AES.cpp │ ├── LibSnark.cpp │ ├── MemTrie.cpp │ ├── MemTrie.h │ ├── SecretStore.cpp │ ├── crypto.cpp │ ├── hexPrefix.cpp │ └── trie.cpp │ ├── libethashseal │ └── EthashTest.cpp │ ├── libethcore │ ├── PrecompiledTest.cpp │ ├── SealEngineTest.cpp │ ├── commonjs.cpp │ ├── dagger.cpp │ ├── difficulty.cpp │ └── keymanager.cpp │ ├── libethereum │ ├── Block.cpp │ ├── BlockChain.cpp │ ├── BlockChainInsert.cpp │ ├── BlockQueue.cpp │ ├── ClientBase.cpp │ ├── EthereumPeerTest.cpp │ ├── ExtVMTest.cpp │ ├── GasPricer.cpp │ ├── Genesis.cpp │ ├── SnapshotImporterTest.cpp │ ├── StateUnitTests.cpp │ ├── Transaction.cpp │ └── TransactionQueue.cpp │ ├── libp2p │ ├── capability.cpp │ ├── eip-8.cpp │ ├── net.cpp │ ├── peer.cpp │ └── rlpx.cpp │ ├── libtesteth │ ├── blockchainTest.cpp │ └── testHelperTest.cpp │ ├── libweb3core │ ├── memorydb.cpp │ └── overlaydb.cpp │ ├── libweb3jsonrpc │ ├── AccountHolder.cpp │ ├── Client.cpp │ ├── JSON_test.sol │ ├── WebThreeStubClient.h │ └── jsonrpc.cpp │ └── performance │ ├── README │ ├── add128.asm │ ├── add256.asm │ ├── add64.asm │ ├── bop.sol │ ├── csv2gas.py │ ├── csv2nano.py │ ├── csv2ops.py │ ├── div128.asm │ ├── div256.asm │ ├── div64.asm │ ├── exp.asm │ ├── fun.sol │ ├── log2csv.py │ ├── loop.sol │ ├── mix.sol │ ├── mul128.asm │ ├── mul256.asm │ ├── mul64.asm │ ├── mul64c.c │ ├── nop.asm │ ├── parity-tests.sh │ ├── pop.asm │ ├── pop.sol │ ├── popcpyc.c │ ├── popincc.c │ ├── poplnkc.c │ ├── rc5.sol │ ├── rng.sol │ ├── sub128.asm │ ├── sub256.asm │ ├── sub64.asm │ ├── tests.mk │ ├── thrash.sol │ └── top.sol └── utils /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/.travis.yml -------------------------------------------------------------------------------- /.ycm_extra_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/.ycm_extra_conf.py -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cpp-ethereum/CMakeLists.txt -------------------------------------------------------------------------------- /CODING_STYLE.md: -------------------------------------------------------------------------------- 1 | cpp-ethereum/CODING_STYLE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/appveyor.yml -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/circle.yml -------------------------------------------------------------------------------- /cmake/EthBuildInfo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/cmake/EthBuildInfo.cmake -------------------------------------------------------------------------------- /cmake/EthCcache.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/cmake/EthCcache.cmake -------------------------------------------------------------------------------- /cmake/EthCheckCXXCompilerFlag.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/cmake/EthCheckCXXCompilerFlag.cmake -------------------------------------------------------------------------------- /cmake/EthCompilerSettings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/cmake/EthCompilerSettings.cmake -------------------------------------------------------------------------------- /cmake/EthDependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/cmake/EthDependencies.cmake -------------------------------------------------------------------------------- /cmake/EthExecutableHelper.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/cmake/EthExecutableHelper.cmake -------------------------------------------------------------------------------- /cmake/EthOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/cmake/EthOptions.cmake -------------------------------------------------------------------------------- /cmake/EthPolicy.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/cmake/EthPolicy.cmake -------------------------------------------------------------------------------- /cmake/EthUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/cmake/EthUtils.cmake -------------------------------------------------------------------------------- /cmake/FindLevelDB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/cmake/FindLevelDB.cmake -------------------------------------------------------------------------------- /cmake/FindMiniupnpc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/cmake/FindMiniupnpc.cmake -------------------------------------------------------------------------------- /cmake/Hunter/config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/cmake/Hunter/config.cmake -------------------------------------------------------------------------------- /cmake/HunterGate.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/cmake/HunterGate.cmake -------------------------------------------------------------------------------- /cmake/ProjectLibFF.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/cmake/ProjectLibFF.cmake -------------------------------------------------------------------------------- /cmake/ProjectMPIR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/cmake/ProjectMPIR.cmake -------------------------------------------------------------------------------- /cmake/ProjectSecp256k1.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/cmake/ProjectSecp256k1.cmake -------------------------------------------------------------------------------- /cmake/UseMiniupnpc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/cmake/UseMiniupnpc.cmake -------------------------------------------------------------------------------- /cmake/scripts/buildinfo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/cmake/scripts/buildinfo.cmake -------------------------------------------------------------------------------- /cmake/scripts/configure.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/cmake/scripts/configure.cmake -------------------------------------------------------------------------------- /cmake/scripts/copydlls.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/cmake/scripts/copydlls.cmake -------------------------------------------------------------------------------- /cmake/scripts/helpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/cmake/scripts/helpers.cmake -------------------------------------------------------------------------------- /cmake/scripts/install_deps.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/cmake/scripts/install_deps.cmake -------------------------------------------------------------------------------- /cmake/scripts/jsonrpcstub.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/cmake/scripts/jsonrpcstub.cmake -------------------------------------------------------------------------------- /cmake/scripts/resource.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/cmake/scripts/resource.hpp.in -------------------------------------------------------------------------------- /cmake/scripts/resources.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/cmake/scripts/resources.cmake -------------------------------------------------------------------------------- /cmake/scripts/runtest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/cmake/scripts/runtest.cmake -------------------------------------------------------------------------------- /cmake/secp256k1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/cmake/secp256k1/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/templates/BuildInfo.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/cmake/templates/BuildInfo.h.in -------------------------------------------------------------------------------- /cmake/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/cmake/toolchain.cmake -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/codecov.yml -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /doc/database_layout.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/doc/database_layout.rst -------------------------------------------------------------------------------- /doc/dependencies.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/doc/dependencies.rst -------------------------------------------------------------------------------- /doc/generating_tests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/doc/generating_tests.rst -------------------------------------------------------------------------------- /doc/gitbook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/doc/gitbook/README.md -------------------------------------------------------------------------------- /doc/gitbook/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/doc/gitbook/SUMMARY.md -------------------------------------------------------------------------------- /doc/gitbook/book.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /doc/gitbook/cli_tools.md: -------------------------------------------------------------------------------- 1 | # CLI Tools 2 | 3 | -------------------------------------------------------------------------------- /doc/gitbook/cold_wallet_storage_device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/doc/gitbook/cold_wallet_storage_device.md -------------------------------------------------------------------------------- /doc/gitbook/ethkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/doc/gitbook/ethkey.md -------------------------------------------------------------------------------- /doc/gitbook/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/doc/gitbook/getting_started.md -------------------------------------------------------------------------------- /doc/gitbook/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/doc/gitbook/installation.md -------------------------------------------------------------------------------- /doc/gitbook/interactive_console.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/doc/gitbook/interactive_console.md -------------------------------------------------------------------------------- /doc/gitbook/mining.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/doc/gitbook/mining.md -------------------------------------------------------------------------------- /doc/gitbook/styles/website.css: -------------------------------------------------------------------------------- 1 | /* CSS for website */ 2 | -------------------------------------------------------------------------------- /doc/gitbook/transaction_explorer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/doc/gitbook/transaction_explorer.md -------------------------------------------------------------------------------- /doc/gitbook/whisper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/doc/gitbook/whisper.md -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/snapshot_sync.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/doc/snapshot_sync.rst -------------------------------------------------------------------------------- /doc/usingtesteth.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/doc/usingtesteth.rst -------------------------------------------------------------------------------- /eth: -------------------------------------------------------------------------------- 1 | cpp-ethereum/eth -------------------------------------------------------------------------------- /ethkey: -------------------------------------------------------------------------------- 1 | cpp-ethereum/ethkey -------------------------------------------------------------------------------- /ethvm: -------------------------------------------------------------------------------- 1 | cpp-ethereum/ethvm -------------------------------------------------------------------------------- /homebrew/INSTALL_RECEIPT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/homebrew/INSTALL_RECEIPT.json -------------------------------------------------------------------------------- /homebrew/fix_homebrew_paths_in_standalone_zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/homebrew/fix_homebrew_paths_in_standalone_zip.py -------------------------------------------------------------------------------- /homebrew/homebrew.mxcl.cpp-ethereum.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/homebrew/homebrew.mxcl.cpp-ethereum.plist -------------------------------------------------------------------------------- /homebrew/prepare_receipt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/homebrew/prepare_receipt.sh -------------------------------------------------------------------------------- /libdevcore: -------------------------------------------------------------------------------- 1 | cpp-ethereum/libdevcore/ -------------------------------------------------------------------------------- /libdevcrypto: -------------------------------------------------------------------------------- 1 | cpp-ethereum/libdevcrypto/ -------------------------------------------------------------------------------- /libethash: -------------------------------------------------------------------------------- 1 | cpp-ethereum/libethash -------------------------------------------------------------------------------- /libethashseal: -------------------------------------------------------------------------------- 1 | cpp-ethereum/libethashseal/ -------------------------------------------------------------------------------- /libethcore: -------------------------------------------------------------------------------- 1 | ./cpp-ethereum/libethcore -------------------------------------------------------------------------------- /libethereum: -------------------------------------------------------------------------------- 1 | cpp-ethereum/libethereum/ -------------------------------------------------------------------------------- /libevm: -------------------------------------------------------------------------------- 1 | cpp-ethereum/libevm/ -------------------------------------------------------------------------------- /libp2p: -------------------------------------------------------------------------------- 1 | cpp-ethereum/libp2p/ -------------------------------------------------------------------------------- /libweb3jsonrpc: -------------------------------------------------------------------------------- 1 | cpp-ethereum/libweb3jsonrpc/ -------------------------------------------------------------------------------- /libwebthree: -------------------------------------------------------------------------------- 1 | cpp-ethereum/libwebthree/ -------------------------------------------------------------------------------- /refilltests: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rlp: -------------------------------------------------------------------------------- 1 | cpp-ethereum/rlp/ -------------------------------------------------------------------------------- /sanitizer-blacklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/sanitizer-blacklist.txt -------------------------------------------------------------------------------- /scripts/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/scripts/Dockerfile -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/cleanup_ccache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/scripts/cleanup_ccache.sh -------------------------------------------------------------------------------- /scripts/docker-eth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/scripts/docker-eth -------------------------------------------------------------------------------- /scripts/docker/cpp-build-env.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/scripts/docker/cpp-build-env.dockerfile -------------------------------------------------------------------------------- /scripts/docker/eth-centos/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/scripts/docker/eth-centos/Dockerfile -------------------------------------------------------------------------------- /scripts/docker/eth-debian/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/scripts/docker/eth-debian/Dockerfile -------------------------------------------------------------------------------- /scripts/docker/eth-fedora/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/scripts/docker/eth-fedora/Dockerfile -------------------------------------------------------------------------------- /scripts/docker/eth-oraclelinux/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/scripts/docker/eth-oraclelinux/Dockerfile -------------------------------------------------------------------------------- /scripts/docker/eth.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/scripts/docker/eth.dockerfile -------------------------------------------------------------------------------- /scripts/duplicates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/scripts/duplicates.sh -------------------------------------------------------------------------------- /scripts/install_cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/scripts/install_cmake.sh -------------------------------------------------------------------------------- /scripts/install_deps.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/scripts/install_deps.bat -------------------------------------------------------------------------------- /scripts/install_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/scripts/install_deps.sh -------------------------------------------------------------------------------- /scripts/install_solc_lllc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/scripts/install_solc_lllc.sh -------------------------------------------------------------------------------- /scripts/jsonrpcproxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/scripts/jsonrpcproxy.py -------------------------------------------------------------------------------- /scripts/ppabuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/scripts/ppabuild.sh -------------------------------------------------------------------------------- /scripts/prepare_ccache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/scripts/prepare_ccache.sh -------------------------------------------------------------------------------- /scripts/release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/scripts/release.bat -------------------------------------------------------------------------------- /scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/scripts/release.sh -------------------------------------------------------------------------------- /scripts/runalltests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/scripts/runalltests.sh -------------------------------------------------------------------------------- /scripts/sync_files_with_solidity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/scripts/sync_files_with_solidity.sh -------------------------------------------------------------------------------- /scripts/tests.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/scripts/tests.bat -------------------------------------------------------------------------------- /scripts/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/scripts/tests.sh -------------------------------------------------------------------------------- /scripts/upload-homebrew-formula.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/scripts/upload-homebrew-formula.sh -------------------------------------------------------------------------------- /snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/snapcraft.yaml -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/tools/fuzzTesting/BoostRandomCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/fuzzTesting/BoostRandomCode.cpp -------------------------------------------------------------------------------- /test/tools/fuzzTesting/BoostRandomCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/fuzzTesting/BoostRandomCode.h -------------------------------------------------------------------------------- /test/tools/fuzzTesting/RandomCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/fuzzTesting/RandomCode.h -------------------------------------------------------------------------------- /test/tools/fuzzTesting/createRandomTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/fuzzTesting/createRandomTest.cpp -------------------------------------------------------------------------------- /test/tools/fuzzTesting/fuzzHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/fuzzTesting/fuzzHelper.cpp -------------------------------------------------------------------------------- /test/tools/fuzzTesting/fuzzHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/fuzzTesting/fuzzHelper.h -------------------------------------------------------------------------------- /test/tools/jsontests/BlockChainTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/jsontests/BlockChainTests.cpp -------------------------------------------------------------------------------- /test/tools/jsontests/BlockChainTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/jsontests/BlockChainTests.h -------------------------------------------------------------------------------- /test/tools/jsontests/StateTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/jsontests/StateTests.cpp -------------------------------------------------------------------------------- /test/tools/jsontests/StateTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/jsontests/StateTests.h -------------------------------------------------------------------------------- /test/tools/jsontests/TransactionTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/jsontests/TransactionTests.cpp -------------------------------------------------------------------------------- /test/tools/jsontests/TransactionTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/jsontests/TransactionTests.h -------------------------------------------------------------------------------- /test/tools/jsontests/vm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/jsontests/vm.cpp -------------------------------------------------------------------------------- /test/tools/jsontests/vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/jsontests/vm.h -------------------------------------------------------------------------------- /test/tools/libtesteth/BlockChainHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/libtesteth/BlockChainHelper.cpp -------------------------------------------------------------------------------- /test/tools/libtesteth/BlockChainHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/libtesteth/BlockChainHelper.h -------------------------------------------------------------------------------- /test/tools/libtesteth/FillJsonFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/libtesteth/FillJsonFunctions.cpp -------------------------------------------------------------------------------- /test/tools/libtesteth/ImportTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/libtesteth/ImportTest.cpp -------------------------------------------------------------------------------- /test/tools/libtesteth/ImportTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/libtesteth/ImportTest.h -------------------------------------------------------------------------------- /test/tools/libtesteth/JsonSpiritHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/libtesteth/JsonSpiritHeaders.h -------------------------------------------------------------------------------- /test/tools/libtesteth/Options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/libtesteth/Options.cpp -------------------------------------------------------------------------------- /test/tools/libtesteth/Options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/libtesteth/Options.h -------------------------------------------------------------------------------- /test/tools/libtesteth/Stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/libtesteth/Stats.cpp -------------------------------------------------------------------------------- /test/tools/libtesteth/Stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/libtesteth/Stats.h -------------------------------------------------------------------------------- /test/tools/libtesteth/TestHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/libtesteth/TestHelper.cpp -------------------------------------------------------------------------------- /test/tools/libtesteth/TestHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/libtesteth/TestHelper.h -------------------------------------------------------------------------------- /test/tools/libtesteth/TestOutputHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/libtesteth/TestOutputHelper.cpp -------------------------------------------------------------------------------- /test/tools/libtesteth/TestOutputHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/libtesteth/TestOutputHelper.h -------------------------------------------------------------------------------- /test/tools/libtesteth/TestSuite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/libtesteth/TestSuite.cpp -------------------------------------------------------------------------------- /test/tools/libtesteth/TestSuite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/libtesteth/TestSuite.h -------------------------------------------------------------------------------- /test/tools/libtesteth/TestUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/libtesteth/TestUtils.cpp -------------------------------------------------------------------------------- /test/tools/libtesteth/TestUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/libtesteth/TestUtils.h -------------------------------------------------------------------------------- /test/tools/libtesteth/boostTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/libtesteth/boostTest.cpp -------------------------------------------------------------------------------- /test/tools/libtesteth/wast2wasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/libtesteth/wast2wasm.cpp -------------------------------------------------------------------------------- /test/tools/libtesteth/wast2wasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/libtesteth/wast2wasm.h -------------------------------------------------------------------------------- /test/tools/libtestutils/BlockChainLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/libtestutils/BlockChainLoader.cpp -------------------------------------------------------------------------------- /test/tools/libtestutils/BlockChainLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/libtestutils/BlockChainLoader.h -------------------------------------------------------------------------------- /test/tools/libtestutils/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/libtestutils/Common.cpp -------------------------------------------------------------------------------- /test/tools/libtestutils/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/libtestutils/Common.h -------------------------------------------------------------------------------- /test/tools/libtestutils/FixedClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/libtestutils/FixedClient.cpp -------------------------------------------------------------------------------- /test/tools/libtestutils/FixedClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/libtestutils/FixedClient.h -------------------------------------------------------------------------------- /test/tools/libtestutils/TestLastBlockHashes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/tools/libtestutils/TestLastBlockHashes.h -------------------------------------------------------------------------------- /test/unittests/external-dependencies/boost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/external-dependencies/boost.cpp -------------------------------------------------------------------------------- /test/unittests/libdevcore/CommonJS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libdevcore/CommonJS.cpp -------------------------------------------------------------------------------- /test/unittests/libdevcore/FixedHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libdevcore/FixedHash.cpp -------------------------------------------------------------------------------- /test/unittests/libdevcore/RangeMask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libdevcore/RangeMask.cpp -------------------------------------------------------------------------------- /test/unittests/libdevcore/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libdevcore/core.cpp -------------------------------------------------------------------------------- /test/unittests/libdevcore/rlp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libdevcore/rlp.cpp -------------------------------------------------------------------------------- /test/unittests/libdevcrypto/AES.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libdevcrypto/AES.cpp -------------------------------------------------------------------------------- /test/unittests/libdevcrypto/LibSnark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libdevcrypto/LibSnark.cpp -------------------------------------------------------------------------------- /test/unittests/libdevcrypto/MemTrie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libdevcrypto/MemTrie.cpp -------------------------------------------------------------------------------- /test/unittests/libdevcrypto/MemTrie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libdevcrypto/MemTrie.h -------------------------------------------------------------------------------- /test/unittests/libdevcrypto/SecretStore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libdevcrypto/SecretStore.cpp -------------------------------------------------------------------------------- /test/unittests/libdevcrypto/crypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libdevcrypto/crypto.cpp -------------------------------------------------------------------------------- /test/unittests/libdevcrypto/hexPrefix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libdevcrypto/hexPrefix.cpp -------------------------------------------------------------------------------- /test/unittests/libdevcrypto/trie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libdevcrypto/trie.cpp -------------------------------------------------------------------------------- /test/unittests/libethashseal/EthashTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libethashseal/EthashTest.cpp -------------------------------------------------------------------------------- /test/unittests/libethcore/PrecompiledTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libethcore/PrecompiledTest.cpp -------------------------------------------------------------------------------- /test/unittests/libethcore/SealEngineTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libethcore/SealEngineTest.cpp -------------------------------------------------------------------------------- /test/unittests/libethcore/commonjs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libethcore/commonjs.cpp -------------------------------------------------------------------------------- /test/unittests/libethcore/dagger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libethcore/dagger.cpp -------------------------------------------------------------------------------- /test/unittests/libethcore/difficulty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libethcore/difficulty.cpp -------------------------------------------------------------------------------- /test/unittests/libethcore/keymanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libethcore/keymanager.cpp -------------------------------------------------------------------------------- /test/unittests/libethereum/Block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libethereum/Block.cpp -------------------------------------------------------------------------------- /test/unittests/libethereum/BlockChain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libethereum/BlockChain.cpp -------------------------------------------------------------------------------- /test/unittests/libethereum/BlockChainInsert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libethereum/BlockChainInsert.cpp -------------------------------------------------------------------------------- /test/unittests/libethereum/BlockQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libethereum/BlockQueue.cpp -------------------------------------------------------------------------------- /test/unittests/libethereum/ClientBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libethereum/ClientBase.cpp -------------------------------------------------------------------------------- /test/unittests/libethereum/EthereumPeerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libethereum/EthereumPeerTest.cpp -------------------------------------------------------------------------------- /test/unittests/libethereum/ExtVMTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libethereum/ExtVMTest.cpp -------------------------------------------------------------------------------- /test/unittests/libethereum/GasPricer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libethereum/GasPricer.cpp -------------------------------------------------------------------------------- /test/unittests/libethereum/Genesis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libethereum/Genesis.cpp -------------------------------------------------------------------------------- /test/unittests/libethereum/SnapshotImporterTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libethereum/SnapshotImporterTest.cpp -------------------------------------------------------------------------------- /test/unittests/libethereum/StateUnitTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libethereum/StateUnitTests.cpp -------------------------------------------------------------------------------- /test/unittests/libethereum/Transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libethereum/Transaction.cpp -------------------------------------------------------------------------------- /test/unittests/libethereum/TransactionQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libethereum/TransactionQueue.cpp -------------------------------------------------------------------------------- /test/unittests/libp2p/capability.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libp2p/capability.cpp -------------------------------------------------------------------------------- /test/unittests/libp2p/eip-8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libp2p/eip-8.cpp -------------------------------------------------------------------------------- /test/unittests/libp2p/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libp2p/net.cpp -------------------------------------------------------------------------------- /test/unittests/libp2p/peer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libp2p/peer.cpp -------------------------------------------------------------------------------- /test/unittests/libp2p/rlpx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libp2p/rlpx.cpp -------------------------------------------------------------------------------- /test/unittests/libtesteth/blockchainTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libtesteth/blockchainTest.cpp -------------------------------------------------------------------------------- /test/unittests/libtesteth/testHelperTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libtesteth/testHelperTest.cpp -------------------------------------------------------------------------------- /test/unittests/libweb3core/memorydb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libweb3core/memorydb.cpp -------------------------------------------------------------------------------- /test/unittests/libweb3core/overlaydb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libweb3core/overlaydb.cpp -------------------------------------------------------------------------------- /test/unittests/libweb3jsonrpc/AccountHolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libweb3jsonrpc/AccountHolder.cpp -------------------------------------------------------------------------------- /test/unittests/libweb3jsonrpc/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libweb3jsonrpc/Client.cpp -------------------------------------------------------------------------------- /test/unittests/libweb3jsonrpc/JSON_test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libweb3jsonrpc/JSON_test.sol -------------------------------------------------------------------------------- /test/unittests/libweb3jsonrpc/WebThreeStubClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libweb3jsonrpc/WebThreeStubClient.h -------------------------------------------------------------------------------- /test/unittests/libweb3jsonrpc/jsonrpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/libweb3jsonrpc/jsonrpc.cpp -------------------------------------------------------------------------------- /test/unittests/performance/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/performance/README -------------------------------------------------------------------------------- /test/unittests/performance/add128.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/performance/add128.asm -------------------------------------------------------------------------------- /test/unittests/performance/add256.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/performance/add256.asm -------------------------------------------------------------------------------- /test/unittests/performance/add64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/performance/add64.asm -------------------------------------------------------------------------------- /test/unittests/performance/bop.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/performance/bop.sol -------------------------------------------------------------------------------- /test/unittests/performance/csv2gas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/performance/csv2gas.py -------------------------------------------------------------------------------- /test/unittests/performance/csv2nano.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/performance/csv2nano.py -------------------------------------------------------------------------------- /test/unittests/performance/csv2ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/performance/csv2ops.py -------------------------------------------------------------------------------- /test/unittests/performance/div128.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/performance/div128.asm -------------------------------------------------------------------------------- /test/unittests/performance/div256.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/performance/div256.asm -------------------------------------------------------------------------------- /test/unittests/performance/div64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/performance/div64.asm -------------------------------------------------------------------------------- /test/unittests/performance/exp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/performance/exp.asm -------------------------------------------------------------------------------- /test/unittests/performance/fun.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/performance/fun.sol -------------------------------------------------------------------------------- /test/unittests/performance/log2csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/performance/log2csv.py -------------------------------------------------------------------------------- /test/unittests/performance/loop.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/performance/loop.sol -------------------------------------------------------------------------------- /test/unittests/performance/mix.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/performance/mix.sol -------------------------------------------------------------------------------- /test/unittests/performance/mul128.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/performance/mul128.asm -------------------------------------------------------------------------------- /test/unittests/performance/mul256.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/performance/mul256.asm -------------------------------------------------------------------------------- /test/unittests/performance/mul64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/performance/mul64.asm -------------------------------------------------------------------------------- /test/unittests/performance/mul64c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/performance/mul64c.c -------------------------------------------------------------------------------- /test/unittests/performance/nop.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/performance/nop.asm -------------------------------------------------------------------------------- /test/unittests/performance/parity-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/performance/parity-tests.sh -------------------------------------------------------------------------------- /test/unittests/performance/pop.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/performance/pop.asm -------------------------------------------------------------------------------- /test/unittests/performance/pop.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/performance/pop.sol -------------------------------------------------------------------------------- /test/unittests/performance/popcpyc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/performance/popcpyc.c -------------------------------------------------------------------------------- /test/unittests/performance/popincc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/performance/popincc.c -------------------------------------------------------------------------------- /test/unittests/performance/poplnkc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/performance/poplnkc.c -------------------------------------------------------------------------------- /test/unittests/performance/rc5.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/performance/rc5.sol -------------------------------------------------------------------------------- /test/unittests/performance/rng.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/performance/rng.sol -------------------------------------------------------------------------------- /test/unittests/performance/sub128.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/performance/sub128.asm -------------------------------------------------------------------------------- /test/unittests/performance/sub256.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/performance/sub256.asm -------------------------------------------------------------------------------- /test/unittests/performance/sub64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/performance/sub64.asm -------------------------------------------------------------------------------- /test/unittests/performance/tests.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/performance/tests.mk -------------------------------------------------------------------------------- /test/unittests/performance/thrash.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/performance/thrash.sol -------------------------------------------------------------------------------- /test/unittests/performance/top.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/testeth/HEAD/test/unittests/performance/top.sol -------------------------------------------------------------------------------- /utils: -------------------------------------------------------------------------------- 1 | cpp-ethereum/utils/ --------------------------------------------------------------------------------