├── .bumpversion.cfg ├── .clang-format ├── .dockerignore ├── .editorconfig ├── .gitignore ├── .gitmodules ├── .travis.yml ├── .ycm_extra_conf.py ├── CHANGELOG.md ├── CMakeLists.txt ├── CODING_STYLE.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── aleth-bootnode ├── CMakeLists.txt ├── README.md └── main.cpp ├── aleth-key ├── CMakeLists.txt ├── KeyAux.h └── main.cpp ├── aleth-vm ├── CMakeLists.txt └── main.cpp ├── aleth ├── AccountManager.cpp ├── AccountManager.h ├── CMakeLists.txt ├── MinerAux.cpp ├── MinerAux.h └── main.cpp ├── appveyor.yml ├── circle.yml ├── cmake ├── EthCcache.cmake ├── EthCheckCXXCompilerFlag.cmake ├── EthCompilerSettings.cmake ├── EthDependencies.cmake ├── EthExecutableHelper.cmake ├── EthOptions.cmake ├── EthUtils.cmake ├── FindLevelDB.cmake ├── FindMiniupnpc.cmake ├── Hunter │ ├── config.cmake │ └── passwords.cmake ├── HunterGate.cmake ├── ProjectBinaryen.cmake ├── ProjectLibFF.cmake ├── ProjectMPIR.cmake ├── ProjectSecp256k1.cmake ├── UseMiniupnpc.cmake ├── scripts │ ├── configure.cmake │ ├── copydlls.cmake │ ├── helpers.cmake │ ├── jsonrpcstub.cmake │ ├── resource.hpp.in │ ├── resources.cmake │ └── runtest.cmake ├── secp256k1 │ └── CMakeLists.txt └── templates │ └── BuildInfo.h.in ├── codecov.yml ├── doc ├── Doxyfile ├── database_layout.rst ├── dependencies.rst ├── generating_tests.rst ├── gitbook │ ├── README.md │ ├── SUMMARY.md │ ├── aleth-key.md │ ├── book.json │ ├── cli_tools.md │ ├── cold_wallet_storage_device.md │ ├── getting_started.md │ ├── installation.md │ ├── interactive_console.md │ ├── mining.md │ ├── styles │ │ └── website.css │ ├── transaction_explorer.md │ └── whisper.md ├── index.rst ├── private_net_remix.rst ├── private_net_sync.rst ├── snapshot_sync.rst └── usingtesteth.rst ├── homebrew ├── INSTALL_RECEIPT.json ├── fix_homebrew_paths_in_standalone_zip.py ├── homebrew.mxcl.cpp-ethereum.plist └── prepare_receipt.sh ├── libaleth-interpreter ├── CMakeLists.txt ├── VM.cpp ├── VM.h ├── VMCalls.cpp ├── VMConfig.h ├── VMOpt.cpp └── interpreter.h ├── libdevcore ├── Address.cpp ├── Address.h ├── Assertions.h ├── Base64.cpp ├── Base64.h ├── CMakeLists.txt ├── Common.cpp ├── Common.h ├── CommonData.cpp ├── CommonData.h ├── CommonIO.cpp ├── CommonIO.h ├── CommonJS.cpp ├── CommonJS.h ├── DBFactory.cpp ├── DBFactory.h ├── Exceptions.h ├── FileSystem.cpp ├── FileSystem.h ├── FixedHash.cpp ├── FixedHash.h ├── Guards.cpp ├── Guards.h ├── JsonUtils.cpp ├── JsonUtils.h ├── LevelDB.cpp ├── LevelDB.h ├── Log.cpp ├── Log.h ├── LoggingProgramOptions.cpp ├── LoggingProgramOptions.h ├── LruCache.h ├── MemoryDB.cpp ├── MemoryDB.h ├── OverlayDB.cpp ├── OverlayDB.h ├── RLP.cpp ├── RLP.h ├── RangeMask.h ├── RocksDB.cpp ├── RocksDB.h ├── SHA3.cpp ├── SHA3.h ├── StateCacheDB.cpp ├── StateCacheDB.h ├── Terminal.h ├── TransientDirectory.cpp ├── TransientDirectory.h ├── TrieCommon.cpp ├── TrieCommon.h ├── TrieDB.h ├── TrieHash.cpp ├── TrieHash.h ├── UndefMacros.h ├── Worker.cpp ├── Worker.h ├── concurrent_queue.h ├── db.h ├── dbfwd.h └── vector_ref.h ├── libdevcrypto ├── AES.cpp ├── AES.h ├── Blake2.cpp ├── Blake2.h ├── CMakeLists.txt ├── Common.cpp ├── Common.h ├── CryptoPP.cpp ├── CryptoPP.h ├── Exceptions.h ├── Hash.cpp ├── Hash.h ├── LibSnark.cpp ├── LibSnark.h ├── SecretStore.cpp └── SecretStore.h ├── libethashseal ├── CMakeLists.txt ├── Ethash.cpp ├── Ethash.h ├── EthashCPUMiner.cpp ├── EthashCPUMiner.h ├── EthashProofOfWork.cpp ├── EthashProofOfWork.h ├── GenesisInfo.cpp ├── GenesisInfo.h └── genesis │ ├── mainNetwork.cpp │ ├── ropsten.cpp │ └── test │ ├── ByzantiumToConstantinopleFixAt5Test.cpp │ ├── EIP158ToByzantiumAt5Test.cpp │ ├── berlinTest.cpp │ ├── byzantiumNoProofTest.cpp │ ├── byzantiumTest.cpp │ ├── byzantiumTransitionTest.cpp │ ├── constantinopleFixTest.cpp │ ├── constantinopleNoProofTest.cpp │ ├── constantinopleTest.cpp │ ├── eip150Test.cpp │ ├── eip158Test.cpp │ ├── experimentalTransitionTest.cpp │ ├── frontierNoProofTest.cpp │ ├── frontierTest.cpp │ ├── frontierToHomesteadAt5Test.cpp │ ├── homesteadTest.cpp │ ├── homesteadToDaoAt5Test.cpp │ ├── homesteadToEIP150At5Test.cpp │ ├── istanbulTest.cpp │ ├── istanbulTransitionTest.cpp │ ├── mainNetworkNoProofTest.cpp │ ├── mainNetworkTest.cpp │ ├── muirGlacierTest.cpp │ └── transitionnetTest.cpp ├── libethcore ├── BasicAuthority.cpp ├── BasicAuthority.h ├── BlockHeader.cpp ├── BlockHeader.h ├── CMakeLists.txt ├── ChainOperationParams.cpp ├── ChainOperationParams.h ├── Common.cpp ├── Common.h ├── CommonJS.cpp ├── CommonJS.h ├── EVMSchedule.cpp ├── EVMSchedule.h ├── Exceptions.h ├── KeyManager.cpp ├── KeyManager.h ├── LogEntry.cpp ├── LogEntry.h ├── Precompiled.cpp ├── Precompiled.h ├── SealEngine.cpp ├── SealEngine.h ├── TransactionBase.cpp └── TransactionBase.h ├── libethereum ├── Account.cpp ├── Account.h ├── BasicGasPricer.cpp ├── BasicGasPricer.h ├── Block.cpp ├── Block.h ├── BlockChain.cpp ├── BlockChain.h ├── BlockChainImporter.cpp ├── BlockChainImporter.h ├── BlockChainSync.cpp ├── BlockChainSync.h ├── BlockDetails.cpp ├── BlockDetails.h ├── BlockQueue.cpp ├── BlockQueue.h ├── CMakeLists.txt ├── ChainParams.cpp ├── ChainParams.h ├── Client.cpp ├── Client.h ├── ClientBase.cpp ├── ClientBase.h ├── ClientTest.cpp ├── ClientTest.h ├── CodeSizeCache.h ├── CommonNet.cpp ├── CommonNet.h ├── DatabasePaths.cpp ├── DatabasePaths.h ├── EthereumCapability.cpp ├── EthereumCapability.h ├── EthereumPeer.cpp ├── EthereumPeer.h ├── Executive.cpp ├── Executive.h ├── ExtVM.cpp ├── ExtVM.h ├── GasPricer.cpp ├── GasPricer.h ├── GenericFarm.h ├── GenericMiner.cpp ├── GenericMiner.h ├── GenesisInfo.cpp ├── GenesisInfo.h ├── ImportPerformanceLogger.cpp ├── ImportPerformanceLogger.h ├── Interface.cpp ├── Interface.h ├── LastBlockHashesFace.h ├── LogFilter.cpp ├── LogFilter.h ├── SecureTrieDB.h ├── SnapshotImporter.cpp ├── SnapshotImporter.h ├── SnapshotStorage.cpp ├── SnapshotStorage.h ├── StandardTrace.cpp ├── StandardTrace.h ├── State.cpp ├── State.h ├── StateImporter.cpp ├── StateImporter.h ├── Transaction.cpp ├── Transaction.h ├── TransactionQueue.cpp ├── TransactionQueue.h ├── TransactionReceipt.cpp ├── TransactionReceipt.h ├── ValidationSchemes.cpp ├── ValidationSchemes.h ├── VerifiedBlock.h ├── WarpCapability.cpp └── WarpCapability.h ├── libevm ├── CMakeLists.txt ├── EVMC.cpp ├── EVMC.h ├── ExtVMFace.cpp ├── ExtVMFace.h ├── Instruction.cpp ├── Instruction.h ├── LegacyVM.cpp ├── LegacyVM.h ├── LegacyVMCalls.cpp ├── LegacyVMConfig.h ├── LegacyVMOpt.cpp ├── VMFace.h ├── VMFactory.cpp └── VMFactory.h ├── libp2p ├── All.h ├── CMakeLists.txt ├── Capability.h ├── CapabilityHost.cpp ├── CapabilityHost.h ├── Common.cpp ├── Common.h ├── ENR.cpp ├── ENR.h ├── EndpointTracker.cpp ├── EndpointTracker.h ├── Host.cpp ├── Host.h ├── Network.cpp ├── Network.h ├── NodeTable.cpp ├── NodeTable.h ├── Peer.cpp ├── Peer.h ├── RLPXFrameCoder.cpp ├── RLPXFrameCoder.h ├── RLPXPacket.h ├── RLPXSocket.h ├── RLPxHandshake.cpp ├── RLPxHandshake.h ├── Session.cpp ├── Session.h ├── UDP.cpp ├── UDP.h ├── UPnP.cpp └── UPnP.h ├── libweb3jsonrpc ├── AccountHolder.cpp ├── AccountHolder.h ├── AdminEth.cpp ├── AdminEth.h ├── AdminEthFace.h ├── AdminNet.cpp ├── AdminNet.h ├── AdminNetFace.h ├── CMakeLists.txt ├── Debug.cpp ├── Debug.h ├── DebugFace.h ├── Eth.cpp ├── Eth.h ├── EthFace.h ├── IpcServer.h ├── IpcServerBase.cpp ├── IpcServerBase.h ├── JsonHelper.cpp ├── JsonHelper.h ├── ModularServer.h ├── Net.cpp ├── Net.h ├── NetFace.h ├── Personal.cpp ├── Personal.h ├── PersonalFace.h ├── SessionManager.cpp ├── SessionManager.h ├── Test.cpp ├── Test.h ├── TestFace.h ├── UnixSocketServer.cpp ├── UnixSocketServer.h ├── Web3.cpp ├── Web3.h ├── Web3Face.h ├── WinPipeServer.cpp ├── WinPipeServer.h ├── admin_eth.json ├── admin_net.json ├── debug.json ├── eth.json ├── net.json ├── personal.json ├── test.json └── web3.json ├── libwebthree ├── CMakeLists.txt ├── WebThree.cpp └── WebThree.h ├── refilltests ├── rlp ├── CMakeLists.txt └── main.cpp ├── sanitizer-blacklist.txt ├── scripts ├── aleth.py ├── build.sh ├── cleanup_ccache.sh ├── docker-eth ├── docker │ ├── aleth.dockerfile │ ├── cpp-build-env.dockerfile │ ├── eth-centos │ │ └── Dockerfile │ ├── eth-debian │ │ └── Dockerfile │ ├── eth-fedora │ │ └── Dockerfile │ └── eth-oraclelinux │ │ └── Dockerfile ├── dopple.py ├── duplicates.sh ├── install_cmake.sh ├── install_solc_lllc.sh ├── plot_sync_perf.py ├── ppabuild.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 │ │ ├── LegacyTests.cpp │ │ ├── LegacyTests.h │ │ ├── RLPTests.cpp │ │ ├── StateTestFixtureBase.h │ │ ├── StateTests.cpp │ │ ├── StateTests.h │ │ ├── TransactionTests.cpp │ │ ├── TransactionTests.h │ │ ├── vm.cpp │ │ └── vm.h │ ├── libtesteth │ │ ├── AllTestNames.h.in │ │ ├── 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 │ ├── libdevcore │ ├── CommonJS.cpp │ ├── FixedHash.cpp │ ├── LruCache.cpp │ ├── RLP.cpp │ ├── RangeMask.cpp │ └── core.cpp │ ├── libdevcrypto │ ├── AES.cpp │ ├── LibSnark.cpp │ ├── MemTrie.cpp │ ├── MemTrie.h │ ├── SecretStore.cpp │ ├── crypto.cpp │ ├── hexPrefix.cpp │ └── trie.cpp │ ├── libethashseal │ └── EthashTest.cpp │ ├── libethcore │ ├── BlockHeader.cpp │ ├── CommonJS.cpp │ ├── KeyManager.cpp │ ├── PrecompiledTest.cpp │ ├── SealEngineTest.cpp │ └── difficulty.cpp │ ├── libethereum │ ├── Block.cpp │ ├── BlockChain.cpp │ ├── BlockChainInsert.cpp │ ├── BlockQueue.cpp │ ├── ClientBase.cpp │ ├── ClientTest.cpp │ ├── ExecutiveTest.cpp │ ├── ExtVMTest.cpp │ ├── GasPricer.cpp │ ├── Genesis.cpp │ ├── SnapshotImporterTest.cpp │ ├── StateUnitTests.cpp │ ├── Transaction.cpp │ ├── TransactionQueue.cpp │ └── ValidationSchemes.cpp │ ├── libevm │ └── VMTest.cpp │ ├── libp2p │ ├── ENRTest.cpp │ ├── EndpointTrackerTest.cpp │ ├── capability.cpp │ ├── eip-8.cpp │ ├── net.cpp │ ├── peer.cpp │ └── rlpx.cpp │ ├── libtesteth │ ├── blockchainTest.cpp │ ├── statetestTest.cpp │ └── testHelperTest.cpp │ ├── libweb3core │ ├── memorydb.cpp │ ├── overlaydb.cpp │ └── statecachedb.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 │ ├── shift-tests.asm │ ├── sub128.asm │ ├── sub256.asm │ ├── sub64.asm │ ├── tests.mk │ ├── thrash.sol │ └── top.sol └── utils └── json_spirit ├── JsonSpiritHeaders.h ├── json_spirit.h ├── json_spirit.vcproj ├── json_spirit_error_position.h ├── json_spirit_reader.cpp ├── json_spirit_reader.h ├── json_spirit_reader_template.h ├── json_spirit_stream_reader.h ├── json_spirit_utils.h ├── json_spirit_value.cpp ├── json_spirit_value.h ├── json_spirit_writer.cpp ├── json_spirit_writer.h └── json_spirit_writer_template.h /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/.clang-format -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/.travis.yml -------------------------------------------------------------------------------- /.ycm_extra_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/.ycm_extra_conf.py -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODING_STYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/CODING_STYLE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/README.md -------------------------------------------------------------------------------- /aleth-bootnode/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/aleth-bootnode/CMakeLists.txt -------------------------------------------------------------------------------- /aleth-bootnode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/aleth-bootnode/README.md -------------------------------------------------------------------------------- /aleth-bootnode/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/aleth-bootnode/main.cpp -------------------------------------------------------------------------------- /aleth-key/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/aleth-key/CMakeLists.txt -------------------------------------------------------------------------------- /aleth-key/KeyAux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/aleth-key/KeyAux.h -------------------------------------------------------------------------------- /aleth-key/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/aleth-key/main.cpp -------------------------------------------------------------------------------- /aleth-vm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/aleth-vm/CMakeLists.txt -------------------------------------------------------------------------------- /aleth-vm/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/aleth-vm/main.cpp -------------------------------------------------------------------------------- /aleth/AccountManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/aleth/AccountManager.cpp -------------------------------------------------------------------------------- /aleth/AccountManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/aleth/AccountManager.h -------------------------------------------------------------------------------- /aleth/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/aleth/CMakeLists.txt -------------------------------------------------------------------------------- /aleth/MinerAux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/aleth/MinerAux.cpp -------------------------------------------------------------------------------- /aleth/MinerAux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/aleth/MinerAux.h -------------------------------------------------------------------------------- /aleth/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/aleth/main.cpp -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/appveyor.yml -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/circle.yml -------------------------------------------------------------------------------- /cmake/EthCcache.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/cmake/EthCcache.cmake -------------------------------------------------------------------------------- /cmake/EthCheckCXXCompilerFlag.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/cmake/EthCheckCXXCompilerFlag.cmake -------------------------------------------------------------------------------- /cmake/EthCompilerSettings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/cmake/EthCompilerSettings.cmake -------------------------------------------------------------------------------- /cmake/EthDependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/cmake/EthDependencies.cmake -------------------------------------------------------------------------------- /cmake/EthExecutableHelper.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/cmake/EthExecutableHelper.cmake -------------------------------------------------------------------------------- /cmake/EthOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/cmake/EthOptions.cmake -------------------------------------------------------------------------------- /cmake/EthUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/cmake/EthUtils.cmake -------------------------------------------------------------------------------- /cmake/FindLevelDB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/cmake/FindLevelDB.cmake -------------------------------------------------------------------------------- /cmake/FindMiniupnpc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/cmake/FindMiniupnpc.cmake -------------------------------------------------------------------------------- /cmake/Hunter/config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/cmake/Hunter/config.cmake -------------------------------------------------------------------------------- /cmake/Hunter/passwords.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/cmake/Hunter/passwords.cmake -------------------------------------------------------------------------------- /cmake/HunterGate.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/cmake/HunterGate.cmake -------------------------------------------------------------------------------- /cmake/ProjectBinaryen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/cmake/ProjectBinaryen.cmake -------------------------------------------------------------------------------- /cmake/ProjectLibFF.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/cmake/ProjectLibFF.cmake -------------------------------------------------------------------------------- /cmake/ProjectMPIR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/cmake/ProjectMPIR.cmake -------------------------------------------------------------------------------- /cmake/ProjectSecp256k1.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/cmake/ProjectSecp256k1.cmake -------------------------------------------------------------------------------- /cmake/UseMiniupnpc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/cmake/UseMiniupnpc.cmake -------------------------------------------------------------------------------- /cmake/scripts/configure.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/cmake/scripts/configure.cmake -------------------------------------------------------------------------------- /cmake/scripts/copydlls.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/cmake/scripts/copydlls.cmake -------------------------------------------------------------------------------- /cmake/scripts/helpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/cmake/scripts/helpers.cmake -------------------------------------------------------------------------------- /cmake/scripts/jsonrpcstub.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/cmake/scripts/jsonrpcstub.cmake -------------------------------------------------------------------------------- /cmake/scripts/resource.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/cmake/scripts/resource.hpp.in -------------------------------------------------------------------------------- /cmake/scripts/resources.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/cmake/scripts/resources.cmake -------------------------------------------------------------------------------- /cmake/scripts/runtest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/cmake/scripts/runtest.cmake -------------------------------------------------------------------------------- /cmake/secp256k1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/cmake/secp256k1/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/templates/BuildInfo.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/cmake/templates/BuildInfo.h.in -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/codecov.yml -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /doc/database_layout.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/doc/database_layout.rst -------------------------------------------------------------------------------- /doc/dependencies.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/doc/dependencies.rst -------------------------------------------------------------------------------- /doc/generating_tests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/doc/generating_tests.rst -------------------------------------------------------------------------------- /doc/gitbook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/doc/gitbook/README.md -------------------------------------------------------------------------------- /doc/gitbook/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/doc/gitbook/SUMMARY.md -------------------------------------------------------------------------------- /doc/gitbook/aleth-key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/doc/gitbook/aleth-key.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/aleth/HEAD/doc/gitbook/cold_wallet_storage_device.md -------------------------------------------------------------------------------- /doc/gitbook/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/doc/gitbook/getting_started.md -------------------------------------------------------------------------------- /doc/gitbook/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/doc/gitbook/installation.md -------------------------------------------------------------------------------- /doc/gitbook/interactive_console.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/doc/gitbook/interactive_console.md -------------------------------------------------------------------------------- /doc/gitbook/mining.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/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/aleth/HEAD/doc/gitbook/transaction_explorer.md -------------------------------------------------------------------------------- /doc/gitbook/whisper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/doc/gitbook/whisper.md -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/private_net_remix.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/doc/private_net_remix.rst -------------------------------------------------------------------------------- /doc/private_net_sync.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/doc/private_net_sync.rst -------------------------------------------------------------------------------- /doc/snapshot_sync.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/doc/snapshot_sync.rst -------------------------------------------------------------------------------- /doc/usingtesteth.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/doc/usingtesteth.rst -------------------------------------------------------------------------------- /homebrew/INSTALL_RECEIPT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/homebrew/INSTALL_RECEIPT.json -------------------------------------------------------------------------------- /homebrew/fix_homebrew_paths_in_standalone_zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/homebrew/fix_homebrew_paths_in_standalone_zip.py -------------------------------------------------------------------------------- /homebrew/homebrew.mxcl.cpp-ethereum.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/homebrew/homebrew.mxcl.cpp-ethereum.plist -------------------------------------------------------------------------------- /homebrew/prepare_receipt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/homebrew/prepare_receipt.sh -------------------------------------------------------------------------------- /libaleth-interpreter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libaleth-interpreter/CMakeLists.txt -------------------------------------------------------------------------------- /libaleth-interpreter/VM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libaleth-interpreter/VM.cpp -------------------------------------------------------------------------------- /libaleth-interpreter/VM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libaleth-interpreter/VM.h -------------------------------------------------------------------------------- /libaleth-interpreter/VMCalls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libaleth-interpreter/VMCalls.cpp -------------------------------------------------------------------------------- /libaleth-interpreter/VMConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libaleth-interpreter/VMConfig.h -------------------------------------------------------------------------------- /libaleth-interpreter/VMOpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libaleth-interpreter/VMOpt.cpp -------------------------------------------------------------------------------- /libaleth-interpreter/interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libaleth-interpreter/interpreter.h -------------------------------------------------------------------------------- /libdevcore/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/Address.cpp -------------------------------------------------------------------------------- /libdevcore/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/Address.h -------------------------------------------------------------------------------- /libdevcore/Assertions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/Assertions.h -------------------------------------------------------------------------------- /libdevcore/Base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/Base64.cpp -------------------------------------------------------------------------------- /libdevcore/Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/Base64.h -------------------------------------------------------------------------------- /libdevcore/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/CMakeLists.txt -------------------------------------------------------------------------------- /libdevcore/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/Common.cpp -------------------------------------------------------------------------------- /libdevcore/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/Common.h -------------------------------------------------------------------------------- /libdevcore/CommonData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/CommonData.cpp -------------------------------------------------------------------------------- /libdevcore/CommonData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/CommonData.h -------------------------------------------------------------------------------- /libdevcore/CommonIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/CommonIO.cpp -------------------------------------------------------------------------------- /libdevcore/CommonIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/CommonIO.h -------------------------------------------------------------------------------- /libdevcore/CommonJS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/CommonJS.cpp -------------------------------------------------------------------------------- /libdevcore/CommonJS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/CommonJS.h -------------------------------------------------------------------------------- /libdevcore/DBFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/DBFactory.cpp -------------------------------------------------------------------------------- /libdevcore/DBFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/DBFactory.h -------------------------------------------------------------------------------- /libdevcore/Exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/Exceptions.h -------------------------------------------------------------------------------- /libdevcore/FileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/FileSystem.cpp -------------------------------------------------------------------------------- /libdevcore/FileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/FileSystem.h -------------------------------------------------------------------------------- /libdevcore/FixedHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/FixedHash.cpp -------------------------------------------------------------------------------- /libdevcore/FixedHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/FixedHash.h -------------------------------------------------------------------------------- /libdevcore/Guards.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/Guards.cpp -------------------------------------------------------------------------------- /libdevcore/Guards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/Guards.h -------------------------------------------------------------------------------- /libdevcore/JsonUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/JsonUtils.cpp -------------------------------------------------------------------------------- /libdevcore/JsonUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/JsonUtils.h -------------------------------------------------------------------------------- /libdevcore/LevelDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/LevelDB.cpp -------------------------------------------------------------------------------- /libdevcore/LevelDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/LevelDB.h -------------------------------------------------------------------------------- /libdevcore/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/Log.cpp -------------------------------------------------------------------------------- /libdevcore/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/Log.h -------------------------------------------------------------------------------- /libdevcore/LoggingProgramOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/LoggingProgramOptions.cpp -------------------------------------------------------------------------------- /libdevcore/LoggingProgramOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/LoggingProgramOptions.h -------------------------------------------------------------------------------- /libdevcore/LruCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/LruCache.h -------------------------------------------------------------------------------- /libdevcore/MemoryDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/MemoryDB.cpp -------------------------------------------------------------------------------- /libdevcore/MemoryDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/MemoryDB.h -------------------------------------------------------------------------------- /libdevcore/OverlayDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/OverlayDB.cpp -------------------------------------------------------------------------------- /libdevcore/OverlayDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/OverlayDB.h -------------------------------------------------------------------------------- /libdevcore/RLP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/RLP.cpp -------------------------------------------------------------------------------- /libdevcore/RLP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/RLP.h -------------------------------------------------------------------------------- /libdevcore/RangeMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/RangeMask.h -------------------------------------------------------------------------------- /libdevcore/RocksDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/RocksDB.cpp -------------------------------------------------------------------------------- /libdevcore/RocksDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/RocksDB.h -------------------------------------------------------------------------------- /libdevcore/SHA3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/SHA3.cpp -------------------------------------------------------------------------------- /libdevcore/SHA3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/SHA3.h -------------------------------------------------------------------------------- /libdevcore/StateCacheDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/StateCacheDB.cpp -------------------------------------------------------------------------------- /libdevcore/StateCacheDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/StateCacheDB.h -------------------------------------------------------------------------------- /libdevcore/Terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/Terminal.h -------------------------------------------------------------------------------- /libdevcore/TransientDirectory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/TransientDirectory.cpp -------------------------------------------------------------------------------- /libdevcore/TransientDirectory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/TransientDirectory.h -------------------------------------------------------------------------------- /libdevcore/TrieCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/TrieCommon.cpp -------------------------------------------------------------------------------- /libdevcore/TrieCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/TrieCommon.h -------------------------------------------------------------------------------- /libdevcore/TrieDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/TrieDB.h -------------------------------------------------------------------------------- /libdevcore/TrieHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/TrieHash.cpp -------------------------------------------------------------------------------- /libdevcore/TrieHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/TrieHash.h -------------------------------------------------------------------------------- /libdevcore/UndefMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/UndefMacros.h -------------------------------------------------------------------------------- /libdevcore/Worker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/Worker.cpp -------------------------------------------------------------------------------- /libdevcore/Worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/Worker.h -------------------------------------------------------------------------------- /libdevcore/concurrent_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/concurrent_queue.h -------------------------------------------------------------------------------- /libdevcore/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/db.h -------------------------------------------------------------------------------- /libdevcore/dbfwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/dbfwd.h -------------------------------------------------------------------------------- /libdevcore/vector_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcore/vector_ref.h -------------------------------------------------------------------------------- /libdevcrypto/AES.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcrypto/AES.cpp -------------------------------------------------------------------------------- /libdevcrypto/AES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcrypto/AES.h -------------------------------------------------------------------------------- /libdevcrypto/Blake2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcrypto/Blake2.cpp -------------------------------------------------------------------------------- /libdevcrypto/Blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcrypto/Blake2.h -------------------------------------------------------------------------------- /libdevcrypto/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcrypto/CMakeLists.txt -------------------------------------------------------------------------------- /libdevcrypto/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcrypto/Common.cpp -------------------------------------------------------------------------------- /libdevcrypto/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcrypto/Common.h -------------------------------------------------------------------------------- /libdevcrypto/CryptoPP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcrypto/CryptoPP.cpp -------------------------------------------------------------------------------- /libdevcrypto/CryptoPP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcrypto/CryptoPP.h -------------------------------------------------------------------------------- /libdevcrypto/Exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcrypto/Exceptions.h -------------------------------------------------------------------------------- /libdevcrypto/Hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcrypto/Hash.cpp -------------------------------------------------------------------------------- /libdevcrypto/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcrypto/Hash.h -------------------------------------------------------------------------------- /libdevcrypto/LibSnark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcrypto/LibSnark.cpp -------------------------------------------------------------------------------- /libdevcrypto/LibSnark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcrypto/LibSnark.h -------------------------------------------------------------------------------- /libdevcrypto/SecretStore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcrypto/SecretStore.cpp -------------------------------------------------------------------------------- /libdevcrypto/SecretStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libdevcrypto/SecretStore.h -------------------------------------------------------------------------------- /libethashseal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethashseal/CMakeLists.txt -------------------------------------------------------------------------------- /libethashseal/Ethash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethashseal/Ethash.cpp -------------------------------------------------------------------------------- /libethashseal/Ethash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethashseal/Ethash.h -------------------------------------------------------------------------------- /libethashseal/EthashCPUMiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethashseal/EthashCPUMiner.cpp -------------------------------------------------------------------------------- /libethashseal/EthashCPUMiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethashseal/EthashCPUMiner.h -------------------------------------------------------------------------------- /libethashseal/EthashProofOfWork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethashseal/EthashProofOfWork.cpp -------------------------------------------------------------------------------- /libethashseal/EthashProofOfWork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethashseal/EthashProofOfWork.h -------------------------------------------------------------------------------- /libethashseal/GenesisInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethashseal/GenesisInfo.cpp -------------------------------------------------------------------------------- /libethashseal/GenesisInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethashseal/GenesisInfo.h -------------------------------------------------------------------------------- /libethashseal/genesis/mainNetwork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethashseal/genesis/mainNetwork.cpp -------------------------------------------------------------------------------- /libethashseal/genesis/ropsten.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethashseal/genesis/ropsten.cpp -------------------------------------------------------------------------------- /libethashseal/genesis/test/ByzantiumToConstantinopleFixAt5Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethashseal/genesis/test/ByzantiumToConstantinopleFixAt5Test.cpp -------------------------------------------------------------------------------- /libethashseal/genesis/test/EIP158ToByzantiumAt5Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethashseal/genesis/test/EIP158ToByzantiumAt5Test.cpp -------------------------------------------------------------------------------- /libethashseal/genesis/test/berlinTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethashseal/genesis/test/berlinTest.cpp -------------------------------------------------------------------------------- /libethashseal/genesis/test/byzantiumNoProofTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethashseal/genesis/test/byzantiumNoProofTest.cpp -------------------------------------------------------------------------------- /libethashseal/genesis/test/byzantiumTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethashseal/genesis/test/byzantiumTest.cpp -------------------------------------------------------------------------------- /libethashseal/genesis/test/byzantiumTransitionTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethashseal/genesis/test/byzantiumTransitionTest.cpp -------------------------------------------------------------------------------- /libethashseal/genesis/test/constantinopleFixTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethashseal/genesis/test/constantinopleFixTest.cpp -------------------------------------------------------------------------------- /libethashseal/genesis/test/constantinopleNoProofTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethashseal/genesis/test/constantinopleNoProofTest.cpp -------------------------------------------------------------------------------- /libethashseal/genesis/test/constantinopleTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethashseal/genesis/test/constantinopleTest.cpp -------------------------------------------------------------------------------- /libethashseal/genesis/test/eip150Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethashseal/genesis/test/eip150Test.cpp -------------------------------------------------------------------------------- /libethashseal/genesis/test/eip158Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethashseal/genesis/test/eip158Test.cpp -------------------------------------------------------------------------------- /libethashseal/genesis/test/experimentalTransitionTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethashseal/genesis/test/experimentalTransitionTest.cpp -------------------------------------------------------------------------------- /libethashseal/genesis/test/frontierNoProofTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethashseal/genesis/test/frontierNoProofTest.cpp -------------------------------------------------------------------------------- /libethashseal/genesis/test/frontierTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethashseal/genesis/test/frontierTest.cpp -------------------------------------------------------------------------------- /libethashseal/genesis/test/frontierToHomesteadAt5Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethashseal/genesis/test/frontierToHomesteadAt5Test.cpp -------------------------------------------------------------------------------- /libethashseal/genesis/test/homesteadTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethashseal/genesis/test/homesteadTest.cpp -------------------------------------------------------------------------------- /libethashseal/genesis/test/homesteadToDaoAt5Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethashseal/genesis/test/homesteadToDaoAt5Test.cpp -------------------------------------------------------------------------------- /libethashseal/genesis/test/homesteadToEIP150At5Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethashseal/genesis/test/homesteadToEIP150At5Test.cpp -------------------------------------------------------------------------------- /libethashseal/genesis/test/istanbulTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethashseal/genesis/test/istanbulTest.cpp -------------------------------------------------------------------------------- /libethashseal/genesis/test/istanbulTransitionTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethashseal/genesis/test/istanbulTransitionTest.cpp -------------------------------------------------------------------------------- /libethashseal/genesis/test/mainNetworkNoProofTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethashseal/genesis/test/mainNetworkNoProofTest.cpp -------------------------------------------------------------------------------- /libethashseal/genesis/test/mainNetworkTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethashseal/genesis/test/mainNetworkTest.cpp -------------------------------------------------------------------------------- /libethashseal/genesis/test/muirGlacierTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethashseal/genesis/test/muirGlacierTest.cpp -------------------------------------------------------------------------------- /libethashseal/genesis/test/transitionnetTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethashseal/genesis/test/transitionnetTest.cpp -------------------------------------------------------------------------------- /libethcore/BasicAuthority.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethcore/BasicAuthority.cpp -------------------------------------------------------------------------------- /libethcore/BasicAuthority.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethcore/BasicAuthority.h -------------------------------------------------------------------------------- /libethcore/BlockHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethcore/BlockHeader.cpp -------------------------------------------------------------------------------- /libethcore/BlockHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethcore/BlockHeader.h -------------------------------------------------------------------------------- /libethcore/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethcore/CMakeLists.txt -------------------------------------------------------------------------------- /libethcore/ChainOperationParams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethcore/ChainOperationParams.cpp -------------------------------------------------------------------------------- /libethcore/ChainOperationParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethcore/ChainOperationParams.h -------------------------------------------------------------------------------- /libethcore/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethcore/Common.cpp -------------------------------------------------------------------------------- /libethcore/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethcore/Common.h -------------------------------------------------------------------------------- /libethcore/CommonJS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethcore/CommonJS.cpp -------------------------------------------------------------------------------- /libethcore/CommonJS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethcore/CommonJS.h -------------------------------------------------------------------------------- /libethcore/EVMSchedule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethcore/EVMSchedule.cpp -------------------------------------------------------------------------------- /libethcore/EVMSchedule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethcore/EVMSchedule.h -------------------------------------------------------------------------------- /libethcore/Exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethcore/Exceptions.h -------------------------------------------------------------------------------- /libethcore/KeyManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethcore/KeyManager.cpp -------------------------------------------------------------------------------- /libethcore/KeyManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethcore/KeyManager.h -------------------------------------------------------------------------------- /libethcore/LogEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethcore/LogEntry.cpp -------------------------------------------------------------------------------- /libethcore/LogEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethcore/LogEntry.h -------------------------------------------------------------------------------- /libethcore/Precompiled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethcore/Precompiled.cpp -------------------------------------------------------------------------------- /libethcore/Precompiled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethcore/Precompiled.h -------------------------------------------------------------------------------- /libethcore/SealEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethcore/SealEngine.cpp -------------------------------------------------------------------------------- /libethcore/SealEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethcore/SealEngine.h -------------------------------------------------------------------------------- /libethcore/TransactionBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethcore/TransactionBase.cpp -------------------------------------------------------------------------------- /libethcore/TransactionBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethcore/TransactionBase.h -------------------------------------------------------------------------------- /libethereum/Account.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/Account.cpp -------------------------------------------------------------------------------- /libethereum/Account.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/Account.h -------------------------------------------------------------------------------- /libethereum/BasicGasPricer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/BasicGasPricer.cpp -------------------------------------------------------------------------------- /libethereum/BasicGasPricer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/BasicGasPricer.h -------------------------------------------------------------------------------- /libethereum/Block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/Block.cpp -------------------------------------------------------------------------------- /libethereum/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/Block.h -------------------------------------------------------------------------------- /libethereum/BlockChain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/BlockChain.cpp -------------------------------------------------------------------------------- /libethereum/BlockChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/BlockChain.h -------------------------------------------------------------------------------- /libethereum/BlockChainImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/BlockChainImporter.cpp -------------------------------------------------------------------------------- /libethereum/BlockChainImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/BlockChainImporter.h -------------------------------------------------------------------------------- /libethereum/BlockChainSync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/BlockChainSync.cpp -------------------------------------------------------------------------------- /libethereum/BlockChainSync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/BlockChainSync.h -------------------------------------------------------------------------------- /libethereum/BlockDetails.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/BlockDetails.cpp -------------------------------------------------------------------------------- /libethereum/BlockDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/BlockDetails.h -------------------------------------------------------------------------------- /libethereum/BlockQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/BlockQueue.cpp -------------------------------------------------------------------------------- /libethereum/BlockQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/BlockQueue.h -------------------------------------------------------------------------------- /libethereum/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/CMakeLists.txt -------------------------------------------------------------------------------- /libethereum/ChainParams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/ChainParams.cpp -------------------------------------------------------------------------------- /libethereum/ChainParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/ChainParams.h -------------------------------------------------------------------------------- /libethereum/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/Client.cpp -------------------------------------------------------------------------------- /libethereum/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/Client.h -------------------------------------------------------------------------------- /libethereum/ClientBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/ClientBase.cpp -------------------------------------------------------------------------------- /libethereum/ClientBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/ClientBase.h -------------------------------------------------------------------------------- /libethereum/ClientTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/ClientTest.cpp -------------------------------------------------------------------------------- /libethereum/ClientTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/ClientTest.h -------------------------------------------------------------------------------- /libethereum/CodeSizeCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/CodeSizeCache.h -------------------------------------------------------------------------------- /libethereum/CommonNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/CommonNet.cpp -------------------------------------------------------------------------------- /libethereum/CommonNet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/CommonNet.h -------------------------------------------------------------------------------- /libethereum/DatabasePaths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/DatabasePaths.cpp -------------------------------------------------------------------------------- /libethereum/DatabasePaths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/DatabasePaths.h -------------------------------------------------------------------------------- /libethereum/EthereumCapability.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/EthereumCapability.cpp -------------------------------------------------------------------------------- /libethereum/EthereumCapability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/EthereumCapability.h -------------------------------------------------------------------------------- /libethereum/EthereumPeer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/EthereumPeer.cpp -------------------------------------------------------------------------------- /libethereum/EthereumPeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/EthereumPeer.h -------------------------------------------------------------------------------- /libethereum/Executive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/Executive.cpp -------------------------------------------------------------------------------- /libethereum/Executive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/Executive.h -------------------------------------------------------------------------------- /libethereum/ExtVM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/ExtVM.cpp -------------------------------------------------------------------------------- /libethereum/ExtVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/ExtVM.h -------------------------------------------------------------------------------- /libethereum/GasPricer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/GasPricer.cpp -------------------------------------------------------------------------------- /libethereum/GasPricer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/GasPricer.h -------------------------------------------------------------------------------- /libethereum/GenericFarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/GenericFarm.h -------------------------------------------------------------------------------- /libethereum/GenericMiner.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libethereum/GenericMiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/GenericMiner.h -------------------------------------------------------------------------------- /libethereum/GenesisInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/GenesisInfo.cpp -------------------------------------------------------------------------------- /libethereum/GenesisInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/GenesisInfo.h -------------------------------------------------------------------------------- /libethereum/ImportPerformanceLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/ImportPerformanceLogger.cpp -------------------------------------------------------------------------------- /libethereum/ImportPerformanceLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/ImportPerformanceLogger.h -------------------------------------------------------------------------------- /libethereum/Interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/Interface.cpp -------------------------------------------------------------------------------- /libethereum/Interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/Interface.h -------------------------------------------------------------------------------- /libethereum/LastBlockHashesFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/LastBlockHashesFace.h -------------------------------------------------------------------------------- /libethereum/LogFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/LogFilter.cpp -------------------------------------------------------------------------------- /libethereum/LogFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/LogFilter.h -------------------------------------------------------------------------------- /libethereum/SecureTrieDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/SecureTrieDB.h -------------------------------------------------------------------------------- /libethereum/SnapshotImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/SnapshotImporter.cpp -------------------------------------------------------------------------------- /libethereum/SnapshotImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/SnapshotImporter.h -------------------------------------------------------------------------------- /libethereum/SnapshotStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/SnapshotStorage.cpp -------------------------------------------------------------------------------- /libethereum/SnapshotStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/SnapshotStorage.h -------------------------------------------------------------------------------- /libethereum/StandardTrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/StandardTrace.cpp -------------------------------------------------------------------------------- /libethereum/StandardTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/StandardTrace.h -------------------------------------------------------------------------------- /libethereum/State.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/State.cpp -------------------------------------------------------------------------------- /libethereum/State.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/State.h -------------------------------------------------------------------------------- /libethereum/StateImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/StateImporter.cpp -------------------------------------------------------------------------------- /libethereum/StateImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/StateImporter.h -------------------------------------------------------------------------------- /libethereum/Transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/Transaction.cpp -------------------------------------------------------------------------------- /libethereum/Transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/Transaction.h -------------------------------------------------------------------------------- /libethereum/TransactionQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/TransactionQueue.cpp -------------------------------------------------------------------------------- /libethereum/TransactionQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/TransactionQueue.h -------------------------------------------------------------------------------- /libethereum/TransactionReceipt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/TransactionReceipt.cpp -------------------------------------------------------------------------------- /libethereum/TransactionReceipt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/TransactionReceipt.h -------------------------------------------------------------------------------- /libethereum/ValidationSchemes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/ValidationSchemes.cpp -------------------------------------------------------------------------------- /libethereum/ValidationSchemes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/ValidationSchemes.h -------------------------------------------------------------------------------- /libethereum/VerifiedBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/VerifiedBlock.h -------------------------------------------------------------------------------- /libethereum/WarpCapability.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/WarpCapability.cpp -------------------------------------------------------------------------------- /libethereum/WarpCapability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libethereum/WarpCapability.h -------------------------------------------------------------------------------- /libevm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libevm/CMakeLists.txt -------------------------------------------------------------------------------- /libevm/EVMC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libevm/EVMC.cpp -------------------------------------------------------------------------------- /libevm/EVMC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libevm/EVMC.h -------------------------------------------------------------------------------- /libevm/ExtVMFace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libevm/ExtVMFace.cpp -------------------------------------------------------------------------------- /libevm/ExtVMFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libevm/ExtVMFace.h -------------------------------------------------------------------------------- /libevm/Instruction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libevm/Instruction.cpp -------------------------------------------------------------------------------- /libevm/Instruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libevm/Instruction.h -------------------------------------------------------------------------------- /libevm/LegacyVM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libevm/LegacyVM.cpp -------------------------------------------------------------------------------- /libevm/LegacyVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libevm/LegacyVM.h -------------------------------------------------------------------------------- /libevm/LegacyVMCalls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libevm/LegacyVMCalls.cpp -------------------------------------------------------------------------------- /libevm/LegacyVMConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libevm/LegacyVMConfig.h -------------------------------------------------------------------------------- /libevm/LegacyVMOpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libevm/LegacyVMOpt.cpp -------------------------------------------------------------------------------- /libevm/VMFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libevm/VMFace.h -------------------------------------------------------------------------------- /libevm/VMFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libevm/VMFactory.cpp -------------------------------------------------------------------------------- /libevm/VMFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libevm/VMFactory.h -------------------------------------------------------------------------------- /libp2p/All.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libp2p/All.h -------------------------------------------------------------------------------- /libp2p/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libp2p/CMakeLists.txt -------------------------------------------------------------------------------- /libp2p/Capability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libp2p/Capability.h -------------------------------------------------------------------------------- /libp2p/CapabilityHost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libp2p/CapabilityHost.cpp -------------------------------------------------------------------------------- /libp2p/CapabilityHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libp2p/CapabilityHost.h -------------------------------------------------------------------------------- /libp2p/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libp2p/Common.cpp -------------------------------------------------------------------------------- /libp2p/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libp2p/Common.h -------------------------------------------------------------------------------- /libp2p/ENR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libp2p/ENR.cpp -------------------------------------------------------------------------------- /libp2p/ENR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libp2p/ENR.h -------------------------------------------------------------------------------- /libp2p/EndpointTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libp2p/EndpointTracker.cpp -------------------------------------------------------------------------------- /libp2p/EndpointTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libp2p/EndpointTracker.h -------------------------------------------------------------------------------- /libp2p/Host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libp2p/Host.cpp -------------------------------------------------------------------------------- /libp2p/Host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libp2p/Host.h -------------------------------------------------------------------------------- /libp2p/Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libp2p/Network.cpp -------------------------------------------------------------------------------- /libp2p/Network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libp2p/Network.h -------------------------------------------------------------------------------- /libp2p/NodeTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libp2p/NodeTable.cpp -------------------------------------------------------------------------------- /libp2p/NodeTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libp2p/NodeTable.h -------------------------------------------------------------------------------- /libp2p/Peer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libp2p/Peer.cpp -------------------------------------------------------------------------------- /libp2p/Peer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libp2p/Peer.h -------------------------------------------------------------------------------- /libp2p/RLPXFrameCoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libp2p/RLPXFrameCoder.cpp -------------------------------------------------------------------------------- /libp2p/RLPXFrameCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libp2p/RLPXFrameCoder.h -------------------------------------------------------------------------------- /libp2p/RLPXPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libp2p/RLPXPacket.h -------------------------------------------------------------------------------- /libp2p/RLPXSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libp2p/RLPXSocket.h -------------------------------------------------------------------------------- /libp2p/RLPxHandshake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libp2p/RLPxHandshake.cpp -------------------------------------------------------------------------------- /libp2p/RLPxHandshake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libp2p/RLPxHandshake.h -------------------------------------------------------------------------------- /libp2p/Session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libp2p/Session.cpp -------------------------------------------------------------------------------- /libp2p/Session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libp2p/Session.h -------------------------------------------------------------------------------- /libp2p/UDP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libp2p/UDP.cpp -------------------------------------------------------------------------------- /libp2p/UDP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libp2p/UDP.h -------------------------------------------------------------------------------- /libp2p/UPnP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libp2p/UPnP.cpp -------------------------------------------------------------------------------- /libp2p/UPnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libp2p/UPnP.h -------------------------------------------------------------------------------- /libweb3jsonrpc/AccountHolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/AccountHolder.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/AccountHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/AccountHolder.h -------------------------------------------------------------------------------- /libweb3jsonrpc/AdminEth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/AdminEth.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/AdminEth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/AdminEth.h -------------------------------------------------------------------------------- /libweb3jsonrpc/AdminEthFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/AdminEthFace.h -------------------------------------------------------------------------------- /libweb3jsonrpc/AdminNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/AdminNet.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/AdminNet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/AdminNet.h -------------------------------------------------------------------------------- /libweb3jsonrpc/AdminNetFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/AdminNetFace.h -------------------------------------------------------------------------------- /libweb3jsonrpc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/CMakeLists.txt -------------------------------------------------------------------------------- /libweb3jsonrpc/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/Debug.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/Debug.h -------------------------------------------------------------------------------- /libweb3jsonrpc/DebugFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/DebugFace.h -------------------------------------------------------------------------------- /libweb3jsonrpc/Eth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/Eth.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/Eth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/Eth.h -------------------------------------------------------------------------------- /libweb3jsonrpc/EthFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/EthFace.h -------------------------------------------------------------------------------- /libweb3jsonrpc/IpcServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/IpcServer.h -------------------------------------------------------------------------------- /libweb3jsonrpc/IpcServerBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/IpcServerBase.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/IpcServerBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/IpcServerBase.h -------------------------------------------------------------------------------- /libweb3jsonrpc/JsonHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/JsonHelper.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/JsonHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/JsonHelper.h -------------------------------------------------------------------------------- /libweb3jsonrpc/ModularServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/ModularServer.h -------------------------------------------------------------------------------- /libweb3jsonrpc/Net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/Net.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/Net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/Net.h -------------------------------------------------------------------------------- /libweb3jsonrpc/NetFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/NetFace.h -------------------------------------------------------------------------------- /libweb3jsonrpc/Personal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/Personal.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/Personal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/Personal.h -------------------------------------------------------------------------------- /libweb3jsonrpc/PersonalFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/PersonalFace.h -------------------------------------------------------------------------------- /libweb3jsonrpc/SessionManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/SessionManager.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/SessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/SessionManager.h -------------------------------------------------------------------------------- /libweb3jsonrpc/Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/Test.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/Test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/Test.h -------------------------------------------------------------------------------- /libweb3jsonrpc/TestFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/TestFace.h -------------------------------------------------------------------------------- /libweb3jsonrpc/UnixSocketServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/UnixSocketServer.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/UnixSocketServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/UnixSocketServer.h -------------------------------------------------------------------------------- /libweb3jsonrpc/Web3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/Web3.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/Web3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/Web3.h -------------------------------------------------------------------------------- /libweb3jsonrpc/Web3Face.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/Web3Face.h -------------------------------------------------------------------------------- /libweb3jsonrpc/WinPipeServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/WinPipeServer.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/WinPipeServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/WinPipeServer.h -------------------------------------------------------------------------------- /libweb3jsonrpc/admin_eth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/admin_eth.json -------------------------------------------------------------------------------- /libweb3jsonrpc/admin_net.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/admin_net.json -------------------------------------------------------------------------------- /libweb3jsonrpc/debug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/debug.json -------------------------------------------------------------------------------- /libweb3jsonrpc/eth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/eth.json -------------------------------------------------------------------------------- /libweb3jsonrpc/net.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/net.json -------------------------------------------------------------------------------- /libweb3jsonrpc/personal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/personal.json -------------------------------------------------------------------------------- /libweb3jsonrpc/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/test.json -------------------------------------------------------------------------------- /libweb3jsonrpc/web3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libweb3jsonrpc/web3.json -------------------------------------------------------------------------------- /libwebthree/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libwebthree/CMakeLists.txt -------------------------------------------------------------------------------- /libwebthree/WebThree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libwebthree/WebThree.cpp -------------------------------------------------------------------------------- /libwebthree/WebThree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/libwebthree/WebThree.h -------------------------------------------------------------------------------- /refilltests: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rlp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/rlp/CMakeLists.txt -------------------------------------------------------------------------------- /rlp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/rlp/main.cpp -------------------------------------------------------------------------------- /sanitizer-blacklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/sanitizer-blacklist.txt -------------------------------------------------------------------------------- /scripts/aleth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/scripts/aleth.py -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/cleanup_ccache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/scripts/cleanup_ccache.sh -------------------------------------------------------------------------------- /scripts/docker-eth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/scripts/docker-eth -------------------------------------------------------------------------------- /scripts/docker/aleth.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/scripts/docker/aleth.dockerfile -------------------------------------------------------------------------------- /scripts/docker/cpp-build-env.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/scripts/docker/cpp-build-env.dockerfile -------------------------------------------------------------------------------- /scripts/docker/eth-centos/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/scripts/docker/eth-centos/Dockerfile -------------------------------------------------------------------------------- /scripts/docker/eth-debian/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/scripts/docker/eth-debian/Dockerfile -------------------------------------------------------------------------------- /scripts/docker/eth-fedora/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/scripts/docker/eth-fedora/Dockerfile -------------------------------------------------------------------------------- /scripts/docker/eth-oraclelinux/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/scripts/docker/eth-oraclelinux/Dockerfile -------------------------------------------------------------------------------- /scripts/dopple.py: -------------------------------------------------------------------------------- 1 | dopple/dopple.py -------------------------------------------------------------------------------- /scripts/duplicates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/scripts/duplicates.sh -------------------------------------------------------------------------------- /scripts/install_cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/scripts/install_cmake.sh -------------------------------------------------------------------------------- /scripts/install_solc_lllc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/scripts/install_solc_lllc.sh -------------------------------------------------------------------------------- /scripts/plot_sync_perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/scripts/plot_sync_perf.py -------------------------------------------------------------------------------- /scripts/ppabuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/scripts/ppabuild.sh -------------------------------------------------------------------------------- /scripts/runalltests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/scripts/runalltests.sh -------------------------------------------------------------------------------- /scripts/sync_files_with_solidity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/scripts/sync_files_with_solidity.sh -------------------------------------------------------------------------------- /scripts/tests.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/scripts/tests.bat -------------------------------------------------------------------------------- /scripts/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/scripts/tests.sh -------------------------------------------------------------------------------- /scripts/upload-homebrew-formula.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/scripts/upload-homebrew-formula.sh -------------------------------------------------------------------------------- /snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/snapcraft.yaml -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/tools/fuzzTesting/BoostRandomCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/fuzzTesting/BoostRandomCode.cpp -------------------------------------------------------------------------------- /test/tools/fuzzTesting/BoostRandomCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/fuzzTesting/BoostRandomCode.h -------------------------------------------------------------------------------- /test/tools/fuzzTesting/RandomCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/fuzzTesting/RandomCode.h -------------------------------------------------------------------------------- /test/tools/fuzzTesting/createRandomTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/fuzzTesting/createRandomTest.cpp -------------------------------------------------------------------------------- /test/tools/fuzzTesting/fuzzHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/fuzzTesting/fuzzHelper.cpp -------------------------------------------------------------------------------- /test/tools/fuzzTesting/fuzzHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/fuzzTesting/fuzzHelper.h -------------------------------------------------------------------------------- /test/tools/jsontests/BlockChainTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/jsontests/BlockChainTests.cpp -------------------------------------------------------------------------------- /test/tools/jsontests/BlockChainTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/jsontests/BlockChainTests.h -------------------------------------------------------------------------------- /test/tools/jsontests/LegacyTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/jsontests/LegacyTests.cpp -------------------------------------------------------------------------------- /test/tools/jsontests/LegacyTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/jsontests/LegacyTests.h -------------------------------------------------------------------------------- /test/tools/jsontests/RLPTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/jsontests/RLPTests.cpp -------------------------------------------------------------------------------- /test/tools/jsontests/StateTestFixtureBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/jsontests/StateTestFixtureBase.h -------------------------------------------------------------------------------- /test/tools/jsontests/StateTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/jsontests/StateTests.cpp -------------------------------------------------------------------------------- /test/tools/jsontests/StateTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/jsontests/StateTests.h -------------------------------------------------------------------------------- /test/tools/jsontests/TransactionTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/jsontests/TransactionTests.cpp -------------------------------------------------------------------------------- /test/tools/jsontests/TransactionTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/jsontests/TransactionTests.h -------------------------------------------------------------------------------- /test/tools/jsontests/vm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/jsontests/vm.cpp -------------------------------------------------------------------------------- /test/tools/jsontests/vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/jsontests/vm.h -------------------------------------------------------------------------------- /test/tools/libtesteth/AllTestNames.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/libtesteth/AllTestNames.h.in -------------------------------------------------------------------------------- /test/tools/libtesteth/BlockChainHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/libtesteth/BlockChainHelper.cpp -------------------------------------------------------------------------------- /test/tools/libtesteth/BlockChainHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/libtesteth/BlockChainHelper.h -------------------------------------------------------------------------------- /test/tools/libtesteth/FillJsonFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/libtesteth/FillJsonFunctions.cpp -------------------------------------------------------------------------------- /test/tools/libtesteth/ImportTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/libtesteth/ImportTest.cpp -------------------------------------------------------------------------------- /test/tools/libtesteth/ImportTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/libtesteth/ImportTest.h -------------------------------------------------------------------------------- /test/tools/libtesteth/JsonSpiritHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/libtesteth/JsonSpiritHeaders.h -------------------------------------------------------------------------------- /test/tools/libtesteth/Options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/libtesteth/Options.cpp -------------------------------------------------------------------------------- /test/tools/libtesteth/Options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/libtesteth/Options.h -------------------------------------------------------------------------------- /test/tools/libtesteth/Stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/libtesteth/Stats.cpp -------------------------------------------------------------------------------- /test/tools/libtesteth/Stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/libtesteth/Stats.h -------------------------------------------------------------------------------- /test/tools/libtesteth/TestHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/libtesteth/TestHelper.cpp -------------------------------------------------------------------------------- /test/tools/libtesteth/TestHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/libtesteth/TestHelper.h -------------------------------------------------------------------------------- /test/tools/libtesteth/TestOutputHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/libtesteth/TestOutputHelper.cpp -------------------------------------------------------------------------------- /test/tools/libtesteth/TestOutputHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/libtesteth/TestOutputHelper.h -------------------------------------------------------------------------------- /test/tools/libtesteth/TestSuite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/libtesteth/TestSuite.cpp -------------------------------------------------------------------------------- /test/tools/libtesteth/TestSuite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/libtesteth/TestSuite.h -------------------------------------------------------------------------------- /test/tools/libtesteth/TestUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/libtesteth/TestUtils.cpp -------------------------------------------------------------------------------- /test/tools/libtesteth/TestUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/libtesteth/TestUtils.h -------------------------------------------------------------------------------- /test/tools/libtesteth/boostTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/libtesteth/boostTest.cpp -------------------------------------------------------------------------------- /test/tools/libtesteth/wast2wasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/libtesteth/wast2wasm.cpp -------------------------------------------------------------------------------- /test/tools/libtesteth/wast2wasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/libtesteth/wast2wasm.h -------------------------------------------------------------------------------- /test/tools/libtestutils/BlockChainLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/libtestutils/BlockChainLoader.cpp -------------------------------------------------------------------------------- /test/tools/libtestutils/BlockChainLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/libtestutils/BlockChainLoader.h -------------------------------------------------------------------------------- /test/tools/libtestutils/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/libtestutils/Common.cpp -------------------------------------------------------------------------------- /test/tools/libtestutils/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/libtestutils/Common.h -------------------------------------------------------------------------------- /test/tools/libtestutils/FixedClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/libtestutils/FixedClient.cpp -------------------------------------------------------------------------------- /test/tools/libtestutils/FixedClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/libtestutils/FixedClient.h -------------------------------------------------------------------------------- /test/tools/libtestutils/TestLastBlockHashes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/tools/libtestutils/TestLastBlockHashes.h -------------------------------------------------------------------------------- /test/unittests/libdevcore/CommonJS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libdevcore/CommonJS.cpp -------------------------------------------------------------------------------- /test/unittests/libdevcore/FixedHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libdevcore/FixedHash.cpp -------------------------------------------------------------------------------- /test/unittests/libdevcore/LruCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libdevcore/LruCache.cpp -------------------------------------------------------------------------------- /test/unittests/libdevcore/RLP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libdevcore/RLP.cpp -------------------------------------------------------------------------------- /test/unittests/libdevcore/RangeMask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libdevcore/RangeMask.cpp -------------------------------------------------------------------------------- /test/unittests/libdevcore/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libdevcore/core.cpp -------------------------------------------------------------------------------- /test/unittests/libdevcrypto/AES.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libdevcrypto/AES.cpp -------------------------------------------------------------------------------- /test/unittests/libdevcrypto/LibSnark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libdevcrypto/LibSnark.cpp -------------------------------------------------------------------------------- /test/unittests/libdevcrypto/MemTrie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libdevcrypto/MemTrie.cpp -------------------------------------------------------------------------------- /test/unittests/libdevcrypto/MemTrie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libdevcrypto/MemTrie.h -------------------------------------------------------------------------------- /test/unittests/libdevcrypto/SecretStore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libdevcrypto/SecretStore.cpp -------------------------------------------------------------------------------- /test/unittests/libdevcrypto/crypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libdevcrypto/crypto.cpp -------------------------------------------------------------------------------- /test/unittests/libdevcrypto/hexPrefix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libdevcrypto/hexPrefix.cpp -------------------------------------------------------------------------------- /test/unittests/libdevcrypto/trie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libdevcrypto/trie.cpp -------------------------------------------------------------------------------- /test/unittests/libethashseal/EthashTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libethashseal/EthashTest.cpp -------------------------------------------------------------------------------- /test/unittests/libethcore/BlockHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libethcore/BlockHeader.cpp -------------------------------------------------------------------------------- /test/unittests/libethcore/CommonJS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libethcore/CommonJS.cpp -------------------------------------------------------------------------------- /test/unittests/libethcore/KeyManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libethcore/KeyManager.cpp -------------------------------------------------------------------------------- /test/unittests/libethcore/PrecompiledTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libethcore/PrecompiledTest.cpp -------------------------------------------------------------------------------- /test/unittests/libethcore/SealEngineTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libethcore/SealEngineTest.cpp -------------------------------------------------------------------------------- /test/unittests/libethcore/difficulty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libethcore/difficulty.cpp -------------------------------------------------------------------------------- /test/unittests/libethereum/Block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libethereum/Block.cpp -------------------------------------------------------------------------------- /test/unittests/libethereum/BlockChain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libethereum/BlockChain.cpp -------------------------------------------------------------------------------- /test/unittests/libethereum/BlockChainInsert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libethereum/BlockChainInsert.cpp -------------------------------------------------------------------------------- /test/unittests/libethereum/BlockQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libethereum/BlockQueue.cpp -------------------------------------------------------------------------------- /test/unittests/libethereum/ClientBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libethereum/ClientBase.cpp -------------------------------------------------------------------------------- /test/unittests/libethereum/ClientTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libethereum/ClientTest.cpp -------------------------------------------------------------------------------- /test/unittests/libethereum/ExecutiveTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libethereum/ExecutiveTest.cpp -------------------------------------------------------------------------------- /test/unittests/libethereum/ExtVMTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libethereum/ExtVMTest.cpp -------------------------------------------------------------------------------- /test/unittests/libethereum/GasPricer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libethereum/GasPricer.cpp -------------------------------------------------------------------------------- /test/unittests/libethereum/Genesis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libethereum/Genesis.cpp -------------------------------------------------------------------------------- /test/unittests/libethereum/SnapshotImporterTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libethereum/SnapshotImporterTest.cpp -------------------------------------------------------------------------------- /test/unittests/libethereum/StateUnitTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libethereum/StateUnitTests.cpp -------------------------------------------------------------------------------- /test/unittests/libethereum/Transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libethereum/Transaction.cpp -------------------------------------------------------------------------------- /test/unittests/libethereum/TransactionQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libethereum/TransactionQueue.cpp -------------------------------------------------------------------------------- /test/unittests/libethereum/ValidationSchemes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libethereum/ValidationSchemes.cpp -------------------------------------------------------------------------------- /test/unittests/libevm/VMTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libevm/VMTest.cpp -------------------------------------------------------------------------------- /test/unittests/libp2p/ENRTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libp2p/ENRTest.cpp -------------------------------------------------------------------------------- /test/unittests/libp2p/EndpointTrackerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libp2p/EndpointTrackerTest.cpp -------------------------------------------------------------------------------- /test/unittests/libp2p/capability.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libp2p/capability.cpp -------------------------------------------------------------------------------- /test/unittests/libp2p/eip-8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libp2p/eip-8.cpp -------------------------------------------------------------------------------- /test/unittests/libp2p/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libp2p/net.cpp -------------------------------------------------------------------------------- /test/unittests/libp2p/peer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libp2p/peer.cpp -------------------------------------------------------------------------------- /test/unittests/libp2p/rlpx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libp2p/rlpx.cpp -------------------------------------------------------------------------------- /test/unittests/libtesteth/blockchainTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libtesteth/blockchainTest.cpp -------------------------------------------------------------------------------- /test/unittests/libtesteth/statetestTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libtesteth/statetestTest.cpp -------------------------------------------------------------------------------- /test/unittests/libtesteth/testHelperTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libtesteth/testHelperTest.cpp -------------------------------------------------------------------------------- /test/unittests/libweb3core/memorydb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libweb3core/memorydb.cpp -------------------------------------------------------------------------------- /test/unittests/libweb3core/overlaydb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libweb3core/overlaydb.cpp -------------------------------------------------------------------------------- /test/unittests/libweb3core/statecachedb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libweb3core/statecachedb.cpp -------------------------------------------------------------------------------- /test/unittests/libweb3jsonrpc/AccountHolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libweb3jsonrpc/AccountHolder.cpp -------------------------------------------------------------------------------- /test/unittests/libweb3jsonrpc/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libweb3jsonrpc/Client.cpp -------------------------------------------------------------------------------- /test/unittests/libweb3jsonrpc/JSON_test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libweb3jsonrpc/JSON_test.sol -------------------------------------------------------------------------------- /test/unittests/libweb3jsonrpc/WebThreeStubClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libweb3jsonrpc/WebThreeStubClient.h -------------------------------------------------------------------------------- /test/unittests/libweb3jsonrpc/jsonrpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/libweb3jsonrpc/jsonrpc.cpp -------------------------------------------------------------------------------- /test/unittests/performance/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/performance/README -------------------------------------------------------------------------------- /test/unittests/performance/add128.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/performance/add128.asm -------------------------------------------------------------------------------- /test/unittests/performance/add256.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/performance/add256.asm -------------------------------------------------------------------------------- /test/unittests/performance/add64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/performance/add64.asm -------------------------------------------------------------------------------- /test/unittests/performance/bop.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/performance/bop.sol -------------------------------------------------------------------------------- /test/unittests/performance/csv2gas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/performance/csv2gas.py -------------------------------------------------------------------------------- /test/unittests/performance/csv2nano.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/performance/csv2nano.py -------------------------------------------------------------------------------- /test/unittests/performance/csv2ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/performance/csv2ops.py -------------------------------------------------------------------------------- /test/unittests/performance/div128.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/performance/div128.asm -------------------------------------------------------------------------------- /test/unittests/performance/div256.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/performance/div256.asm -------------------------------------------------------------------------------- /test/unittests/performance/div64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/performance/div64.asm -------------------------------------------------------------------------------- /test/unittests/performance/exp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/performance/exp.asm -------------------------------------------------------------------------------- /test/unittests/performance/fun.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/performance/fun.sol -------------------------------------------------------------------------------- /test/unittests/performance/log2csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/performance/log2csv.py -------------------------------------------------------------------------------- /test/unittests/performance/loop.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/performance/loop.sol -------------------------------------------------------------------------------- /test/unittests/performance/mix.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/performance/mix.sol -------------------------------------------------------------------------------- /test/unittests/performance/mul128.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/performance/mul128.asm -------------------------------------------------------------------------------- /test/unittests/performance/mul256.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/performance/mul256.asm -------------------------------------------------------------------------------- /test/unittests/performance/mul64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/performance/mul64.asm -------------------------------------------------------------------------------- /test/unittests/performance/mul64c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/performance/mul64c.c -------------------------------------------------------------------------------- /test/unittests/performance/nop.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/performance/nop.asm -------------------------------------------------------------------------------- /test/unittests/performance/parity-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/performance/parity-tests.sh -------------------------------------------------------------------------------- /test/unittests/performance/pop.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/performance/pop.asm -------------------------------------------------------------------------------- /test/unittests/performance/pop.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/performance/pop.sol -------------------------------------------------------------------------------- /test/unittests/performance/popcpyc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/performance/popcpyc.c -------------------------------------------------------------------------------- /test/unittests/performance/popincc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/performance/popincc.c -------------------------------------------------------------------------------- /test/unittests/performance/poplnkc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/performance/poplnkc.c -------------------------------------------------------------------------------- /test/unittests/performance/rc5.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/performance/rc5.sol -------------------------------------------------------------------------------- /test/unittests/performance/rng.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/performance/rng.sol -------------------------------------------------------------------------------- /test/unittests/performance/shift-tests.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/performance/shift-tests.asm -------------------------------------------------------------------------------- /test/unittests/performance/sub128.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/performance/sub128.asm -------------------------------------------------------------------------------- /test/unittests/performance/sub256.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/performance/sub256.asm -------------------------------------------------------------------------------- /test/unittests/performance/sub64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/performance/sub64.asm -------------------------------------------------------------------------------- /test/unittests/performance/tests.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/performance/tests.mk -------------------------------------------------------------------------------- /test/unittests/performance/thrash.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/performance/thrash.sol -------------------------------------------------------------------------------- /test/unittests/performance/top.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/test/unittests/performance/top.sol -------------------------------------------------------------------------------- /utils/json_spirit/JsonSpiritHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/utils/json_spirit/JsonSpiritHeaders.h -------------------------------------------------------------------------------- /utils/json_spirit/json_spirit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/utils/json_spirit/json_spirit.h -------------------------------------------------------------------------------- /utils/json_spirit/json_spirit.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/utils/json_spirit/json_spirit.vcproj -------------------------------------------------------------------------------- /utils/json_spirit/json_spirit_error_position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/utils/json_spirit/json_spirit_error_position.h -------------------------------------------------------------------------------- /utils/json_spirit/json_spirit_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/utils/json_spirit/json_spirit_reader.cpp -------------------------------------------------------------------------------- /utils/json_spirit/json_spirit_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/utils/json_spirit/json_spirit_reader.h -------------------------------------------------------------------------------- /utils/json_spirit/json_spirit_reader_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/utils/json_spirit/json_spirit_reader_template.h -------------------------------------------------------------------------------- /utils/json_spirit/json_spirit_stream_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/utils/json_spirit/json_spirit_stream_reader.h -------------------------------------------------------------------------------- /utils/json_spirit/json_spirit_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/utils/json_spirit/json_spirit_utils.h -------------------------------------------------------------------------------- /utils/json_spirit/json_spirit_value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/utils/json_spirit/json_spirit_value.cpp -------------------------------------------------------------------------------- /utils/json_spirit/json_spirit_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/utils/json_spirit/json_spirit_value.h -------------------------------------------------------------------------------- /utils/json_spirit/json_spirit_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/utils/json_spirit/json_spirit_writer.cpp -------------------------------------------------------------------------------- /utils/json_spirit/json_spirit_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/utils/json_spirit/json_spirit_writer.h -------------------------------------------------------------------------------- /utils/json_spirit/json_spirit_writer_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/aleth/HEAD/utils/json_spirit/json_spirit_writer_template.h --------------------------------------------------------------------------------