├── .gitignore ├── CMakeLists.txt ├── CodingStandards.txt ├── LICENSE ├── README.md ├── accounttool ├── accountCheck.js ├── accountManager.js ├── codeUtils.js ├── config.js ├── package.json ├── readMe.md ├── readme.txt ├── sendRawTransaction.js ├── sendTransaction.js ├── sha3.js ├── signTransaction.js ├── transactionManager.js ├── transactionObject.js └── utils.js ├── appveyor.yml ├── cmake ├── CMakeParseArguments.cmake ├── EthBuildInfo.cmake ├── EthCompilerSettings.cmake ├── EthDependencies.cmake ├── EthExecutableHelper.cmake ├── EthOptions.cmake ├── EthPolicy.cmake ├── EthUtils.cmake ├── FindCURL.cmake ├── FindCpuid.cmake ├── FindDev.cmake ├── FindEth.cmake ├── FindGmp.cmake ├── FindLevelDB.cmake ├── FindMHD.cmake ├── FindMiniupnpc.cmake ├── FindPackageHandleStandardArgs.cmake ├── FindPackageMessage.cmake ├── FindRocksDB.cmake ├── FindSSH2.cmake ├── FindUtils.cmake ├── FindWeb3.cmake ├── FindWindowsSDK.cmake ├── Findjson_rpc_cpp.cmake ├── ProjectBoost.cmake ├── ProjectCryptopp.cmake ├── ProjectJsonCpp.cmake ├── ProjectJsonRpcCpp.cmake ├── ProjectSecp256k1.cmake ├── UseCpuid.cmake ├── UseDev.cmake ├── UseEth.cmake ├── UseGmp.cmake ├── UseMhd.cmake ├── UseMiniupnpc.cmake ├── UseOpenSSL.cmake ├── UseSSH2.cmake ├── UseUtils.cmake ├── UseWeb3.cmake ├── UseZLIB.cmake ├── scripts │ ├── buildinfo.cmake │ ├── configure.cmake │ ├── copydlls.cmake │ ├── helpers.cmake │ ├── install_deps.cmake │ ├── jsonrpcstub.cmake │ ├── resource.hpp.in │ ├── resources.cmake │ └── runtest.cmake ├── secp256k1 │ └── CMakeLists.txt └── templates │ └── BuildInfo.h.in ├── config.json ├── deps ├── LICENSE ├── README.md ├── appveyor.yml ├── build_cryptopp.bat ├── build_curl.bat ├── build_jsoncpp.bat ├── build_jsonrpccpp.bat ├── build_leveldb.bat ├── build_microhttpd.bat ├── build_miniupnpc.bat ├── bundle_cryptopp.bat ├── bundle_curl.bat ├── bundle_jsoncpp.bat ├── bundle_jsonrpccpp.bat ├── bundle_leveldb.bat ├── bundle_microhttpd.bat ├── bundle_miniupnpc.bat ├── cryptopp.cmake ├── install_cryptopp.bat ├── install_curl.bat ├── install_deps.cmake ├── install_jsoncpp.bat ├── install_jsonrpccpp.bat ├── install_leveldb.bat ├── install_microhttpd.bat ├── install_miniupnpc.bat ├── jsoncpp.cmake ├── jsonrpc.cmake ├── main.bat └── scripts │ ├── build_boost.cmake │ ├── build_llvm.cmake │ ├── build_opencl-icd-loader.cmake │ └── helpers.cmake ├── doc ├── BCOS_FANS.jpeg ├── BCOS_Whitepaper.pdf ├── manual │ ├── images │ │ ├── i10.1.jpg │ │ ├── i2.1.png │ │ ├── i3.1.png │ │ ├── i3.2.png │ │ ├── i4.1.png │ │ ├── i5.1.png │ │ ├── i6.1.png │ │ ├── i6.2.png │ │ ├── i6.3.png │ │ ├── i6.4.png │ │ ├── i6.5.png │ │ ├── i7.1.png │ │ ├── i7.2.png │ │ ├── i7.3.png │ │ ├── i7.4.png │ │ ├── i7.5.png │ │ ├── i7.6.png │ │ ├── i7.7.png │ │ ├── i8.png │ │ └── i9.1.png │ └── manual.md └── 区块链平台调研与分析报告.pdf ├── docker ├── Dockerfile-alpine ├── Dockerfile-centos ├── Dockerfile-ubuntu ├── README.md ├── nodeConfig │ ├── node-0 │ │ ├── config.json │ │ ├── genesis.json │ │ ├── log.conf │ │ ├── network.rlp │ │ ├── network.rlp.pub │ │ └── node.json │ └── node-1 │ │ ├── config.json │ │ ├── genesis.json │ │ ├── log.conf │ │ ├── network.rlp │ │ ├── network.rlp.pub │ │ └── node.json └── scripts │ ├── genConfig.sh │ ├── install-docker.sh │ └── start_bcos_docker.sh ├── eth ├── AccountManager.cpp ├── AccountManager.h ├── CMakeLists.txt ├── Farm.h ├── GenesisInfo.h ├── farm.json ├── genesisInfoForWe.cpp ├── genesisInfoForWe.h ├── initProcess.h └── main.cpp ├── evmjit ├── .clang-format ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── LICENSE.md ├── README.md ├── appveyor.yml ├── circle.yml ├── cmake │ └── llvm.cmake ├── docker │ ├── Dockerfile │ └── test.sh ├── docs │ └── Doxyfile ├── examples │ ├── CMakeLists.txt │ ├── capi.c │ └── examplevm.c ├── include │ ├── evm.h │ └── evmjit.h ├── libevmjit │ ├── Arith256.cpp │ ├── Arith256.h │ ├── Array.cpp │ ├── Array.h │ ├── BasicBlock.cpp │ ├── BasicBlock.h │ ├── BuildInfo.h.in │ ├── CMakeLists.txt │ ├── Cache.cpp │ ├── Cache.h │ ├── Common.h │ ├── Compiler.cpp │ ├── Compiler.h │ ├── CompilerHelper.cpp │ ├── CompilerHelper.h │ ├── Endianness.cpp │ ├── Endianness.h │ ├── ExecStats.cpp │ ├── ExecStats.h │ ├── Ext.cpp │ ├── Ext.h │ ├── GasMeter.cpp │ ├── GasMeter.h │ ├── Instruction.cpp │ ├── Instruction.h │ ├── JIT.cpp │ ├── JIT.h │ ├── Memory.cpp │ ├── Memory.h │ ├── Optimizer.cpp │ ├── Optimizer.h │ ├── RuntimeManager.cpp │ ├── RuntimeManager.h │ ├── Type.cpp │ ├── Type.h │ ├── Utils.cpp │ ├── Utils.h │ └── preprocessor │ │ ├── llvm_includes_end.h │ │ └── llvm_includes_start.h ├── scripts │ ├── build.sh │ └── travis_update_docs.sh ├── tests │ ├── CMakeLists.txt │ └── test-evmjit-standalone.c └── wercker.yml ├── genesis.json ├── homebrew ├── INSTALL_RECEIPT.json ├── fix_homebrew_paths_in_standalone_zip.py ├── homebrew.mxcl.cpp-ethereum.plist └── prepare_receipt.sh ├── libcontract ├── BaseContract.cpp ├── BaseContract.h ├── CMakeLists.txt ├── ContractDefine.h ├── FileInfoManagerContract.cpp ├── FileInfoManagerContract.h ├── FileServerManagerContract.cpp └── FileServerManagerContract.h ├── libdevcore ├── Assertions.h ├── Base58.cpp ├── Base58.h ├── Base64.cpp ├── Base64.h ├── CMakeLists.txt ├── Common.cpp ├── Common.h ├── CommonData.cpp ├── CommonData.h ├── CommonIO.cpp ├── CommonIO.h ├── CommonJS.cpp ├── CommonJS.h ├── Exceptions.h ├── FileSystem.cpp ├── FileSystem.h ├── FixedHash.cpp ├── FixedHash.h ├── Guards.cpp ├── Guards.h ├── Hash.cpp ├── Hash.h ├── Log.cpp ├── Log.h ├── MemoryDB.cpp ├── MemoryDB.h ├── OverlayDB.cpp ├── OverlayDB.h ├── RLP.cpp ├── RLP.h ├── RangeMask.cpp ├── RangeMask.h ├── SHA3.cpp ├── SHA3.h ├── Terminal.h ├── TransientDirectory.cpp ├── TransientDirectory.h ├── TrieCommon.cpp ├── TrieCommon.h ├── TrieDB.cpp ├── TrieDB.h ├── TrieHash.cpp ├── TrieHash.h ├── UndefMacros.h ├── Worker.cpp ├── Worker.h ├── boost_multiprecision_number_compare_bug_workaround.hpp ├── concurrent_queue.h ├── db.h ├── debugbreak.h ├── easylog.h ├── easylogging++.cpp ├── easylogging++.h ├── picosha2.h └── vector_ref.h ├── libdevcrypto ├── AES.cpp ├── AES.h ├── CMakeLists.txt ├── Common.cpp ├── Common.h ├── CryptoPP.cpp ├── CryptoPP.h ├── ECDHE.cpp ├── ECDHE.h ├── Exceptions.h ├── Rsa.cpp ├── Rsa.h ├── SecretStore.cpp ├── SecretStore.h ├── WordList.cpp └── WordList.h ├── libethcore ├── ABI.cpp ├── ABI.h ├── BasicAuthority.cpp ├── BasicAuthority.h ├── BlockHeader.cpp ├── BlockHeader.h ├── CMakeLists.txt ├── ChainOperationParams.cpp ├── ChainOperationParams.h ├── Common.cpp ├── Common.h ├── CommonJS.cpp ├── CommonJS.h ├── Exceptions.h ├── ICAP.cpp ├── ICAP.h ├── KeyManager.cpp ├── KeyManager.h ├── Precompiled.cpp ├── Precompiled.h ├── SealEngine.cpp ├── SealEngine.h ├── Transaction.cpp └── Transaction.h ├── libethereum ├── Account.cpp ├── Account.h ├── All.h ├── BasicGasPricer.cpp ├── BasicGasPricer.h ├── Block.cpp ├── Block.h ├── BlockChain.cpp ├── BlockChain.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 ├── Defaults.cpp ├── Defaults.h ├── EthereumHost.cpp ├── EthereumHost.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 ├── Interface.cpp ├── Interface.h ├── LogFilter.cpp ├── LogFilter.h ├── MiningClient.cpp ├── MiningClient.h ├── NodeConnParamsManager.cpp ├── NodeConnParamsManager.h ├── NodeConnParamsManagerApi.cpp ├── NodeConnParamsManagerApi.h ├── NonceCheck.cpp ├── NonceCheck.h ├── State.cpp ├── State.h ├── SystemContract.cpp ├── SystemContract.h ├── SystemContractApi.cpp ├── SystemContractApi.h ├── Transaction.cpp ├── Transaction.h ├── TransactionQueue.cpp ├── TransactionQueue.h ├── TransactionReceipt.cpp ├── TransactionReceipt.h ├── Utility.cpp ├── Utility.h └── VerifiedBlock.h ├── libevm ├── All.h ├── CMakeLists.txt ├── CoverTool.cpp ├── CoverTool.h ├── ExtVMFace.cpp ├── ExtVMFace.h ├── JitVM.cpp ├── JitVM.h ├── SmartVM.cpp ├── SmartVM.h ├── VM.cpp ├── VM.h ├── VMCalls.cpp ├── VMConfig.h ├── VMExtends.cpp ├── VMExtends.h ├── VMFace.h ├── VMFactory.cpp ├── VMFactory.h ├── VMOpt.cpp └── VMValidate.cpp ├── libevmcore ├── CMakeLists.txt ├── EVMSchedule.cpp ├── EVMSchedule.h ├── Exceptions.h ├── Instruction.cpp └── Instruction.h ├── libodbc ├── CMakeLists.txt ├── LMysql.cpp ├── LMysql.h ├── LOracle.cpp ├── LOracle.h ├── LvlDbInterface.cpp ├── LvlDbInterface.h └── include │ ├── SQLAPI.h │ ├── db2API.h │ ├── db2_linux │ ├── sql.h │ ├── sqlca.h │ ├── sqlcli.h │ ├── sqlcli1.h │ ├── sqlext.h │ └── sqlsystm.h │ ├── ibAPI.h │ ├── ibase │ ├── ib_util.h │ ├── ibase.h │ └── iberror.h │ ├── infAPI.h │ ├── informix │ ├── infxcli.h │ ├── infxsql.h │ └── sqlext.h │ ├── myAPI.h │ ├── mysql │ ├── errmsg.h │ ├── my_alloc.h │ ├── my_list.h │ ├── mysql.h │ ├── mysql_com.h │ ├── mysql_time.h │ ├── mysql_version.h │ └── typelib.h │ ├── odbcAPI.h │ ├── odbc_linux │ ├── iodbcext.h │ ├── iodbcinst.h │ ├── iodbcunix.h │ ├── isql.h │ ├── isqlext.h │ ├── isqltypes.h │ ├── odbcinst.h │ ├── sql.h │ ├── sqlext.h │ ├── sqltypes.h │ └── sqlucode.h │ ├── ora7API.h │ ├── oraAPI.h │ ├── ora_linux │ ├── nzerror.h │ ├── nzt.h │ ├── occi.h │ ├── occiAQ.h │ ├── occiCommon.h │ ├── occiControl.h │ ├── occiData.h │ ├── occiObjects.h │ ├── oci.h │ ├── oci1.h │ ├── oci8dp.h │ ├── ociap.h │ ├── ociapr.h │ ├── ocidef.h │ ├── ocidem.h │ ├── ocidfn.h │ ├── ociextp.h │ ├── ocikpr.h │ ├── ocixmldb.h │ ├── odci.h │ ├── oratypes.h │ ├── ori.h │ ├── orid.h │ ├── orl.h │ ├── oro.h │ ├── ort.h │ └── xa.h │ ├── pgAPI.h │ ├── pgsql │ ├── libpq-fe.h │ ├── libpq-fs.h │ └── postgres_ext.h │ ├── samisc.h │ ├── sbAPI.h │ ├── sl3API.h │ ├── sqlbase │ └── sql.h │ ├── sqlite │ └── sqlite3.h │ ├── ss6API.h │ ├── ssNcliAPI.h │ ├── ssOleDbAPI.h │ ├── ss_linux │ ├── msodbcsql.h │ ├── sql.h │ ├── sqlext.h │ ├── sqltypes.h │ ├── sqlucode.h │ ├── unixodbc_conf.h │ ├── uodbc_extras.h │ └── uodbc_stats.h │ ├── sybAPI.h │ └── sybase │ ├── bkpublic.h │ ├── csconfig.h │ ├── cspublic.h │ ├── cstypes.h │ ├── ctpublic.h │ ├── sqlca.h │ └── sqlda.h ├── libp2p ├── All.h ├── CMakeLists.txt ├── Capability.cpp ├── Capability.h ├── Common.cpp ├── Common.h ├── HandshakeCAData.cpp ├── HandshakeCAData.h ├── HandshakeWBCAData.cpp ├── HandshakeWBCAData.h ├── Host.cpp ├── Host.h ├── HostCapability.cpp ├── HostCapability.h ├── Network.cpp ├── Network.h ├── NodeTable.cpp ├── NodeTable.h ├── Peer.cpp ├── Peer.h ├── RLPXFrameCoder.cpp ├── RLPXFrameCoder.h ├── RLPXFrameReader.cpp ├── RLPXFrameReader.h ├── RLPXFrameWriter.cpp ├── RLPXFrameWriter.h ├── RLPXPacket.h ├── RLPXSocket.h ├── RLPXSocketIO.cpp ├── RLPXSocketIO.h ├── RLPxHandshake.cpp ├── RLPxHandshake.h ├── Session.cpp ├── Session.h ├── SessionCAData.cpp ├── SessionCAData.h ├── SessionWBCAData.cpp ├── SessionWBCAData.h ├── UDP.cpp ├── UDP.h ├── UPnP.cpp └── UPnP.h ├── libpaillier ├── CMakeLists.txt ├── bn.c ├── bn.h ├── common.c ├── common.h ├── macro.h ├── paillier.c ├── paillier.h └── typedef.h ├── libpbftseal ├── CMakeLists.txt ├── Common.cpp ├── Common.h ├── PBFT.cpp ├── PBFT.h ├── PBFTClient.cpp ├── PBFTClient.h ├── PBFTHost.cpp ├── PBFTHost.h ├── PBFTPeer.cpp └── PBFTPeer.h ├── libraftseal ├── CMakeLists.txt ├── Common.h ├── Raft.cpp ├── Raft.h ├── RaftClient.cpp ├── RaftClient.h ├── RaftHost.cpp ├── RaftHost.h ├── RaftPeer.cpp ├── RaftPeer.h ├── RaftSealEngine.cpp └── RaftSealEngine.h ├── libsinglepoint ├── CMakeLists.txt ├── SinglePoint.cpp ├── SinglePoint.h ├── SinglePointClient.cpp └── SinglePointClient.h ├── libweb3jsonrpc ├── AccountHolder.cpp ├── AccountHolder.h ├── AdminEth.cpp ├── AdminEth.h ├── AdminEthFace.h ├── AdminNet.cpp ├── AdminNet.h ├── AdminNetFace.h ├── AdminUtils.cpp ├── AdminUtils.h ├── AdminUtilsFace.h ├── Bzz.cpp ├── Bzz.h ├── BzzFace.h ├── CMakeLists.txt ├── DBFace.h ├── Debug.cpp ├── Debug.h ├── DebugFace.h ├── Eth.cpp ├── Eth.h ├── EthFace.h ├── IpcServer.h ├── IpcServerBase.cpp ├── IpcServerBase.h ├── JsonHelper.cpp ├── JsonHelper.h ├── LevelDB.cpp ├── LevelDB.h ├── MemoryDB.cpp ├── MemoryDB.h ├── ModularServer.h ├── Net.cpp ├── Net.h ├── NetFace.h ├── Personal.cpp ├── Personal.h ├── PersonalFace.h ├── SafeHttpServer.cpp ├── SafeHttpServer.h ├── SessionManager.cpp ├── SessionManager.h ├── Test.cpp ├── Test.h ├── TestFace.h ├── UnixSocketServer.cpp ├── UnixSocketServer.h ├── Web3.cpp ├── Web3.h ├── Web3Face.h ├── Whisper.cpp ├── Whisper.h ├── WhisperFace.h ├── WinPipeServer.cpp ├── WinPipeServer.h ├── admin_eth.json ├── admin_net.json ├── admin_utils.json ├── bzz.json ├── db.json ├── debug.json ├── dfs │ ├── DfsBase.h │ ├── DfsCommon.cpp │ ├── DfsCommon.h │ ├── DfsCommonClient.cpp │ ├── DfsCommonClient.h │ ├── DfsConst.h │ ├── DfsContractCaller.cpp │ ├── DfsContractCaller.h │ ├── DfsDeleteFileHandler.cpp │ ├── DfsDeleteFileHandler.h │ ├── DfsDownloadClient.cpp │ ├── DfsDownloadClient.h │ ├── DfsDownloadHandler.cpp │ ├── DfsDownloadHandler.h │ ├── DfsFileInfoScanner.cpp │ ├── DfsFileInfoScanner.h │ ├── DfsFileOperationManager.cpp │ ├── DfsFileOperationManager.h │ ├── DfsFileRecorder.cpp │ ├── DfsFileRecorder.h │ ├── DfsFileServer.cpp │ ├── DfsFileServer.h │ ├── DfsHttpClient.cpp │ ├── DfsHttpClient.h │ ├── DfsJsonUtils.cpp │ ├── DfsJsonUtils.h │ ├── DfsMd5.cpp │ ├── DfsMd5.h │ ├── DfsModifyFileHandler.cpp │ ├── DfsModifyFileHandler.h │ ├── DfsUploadHandler.cpp │ ├── DfsUploadHandler.h │ ├── IUrlHandler.cpp │ ├── IUrlHandler.h │ └── json_format.txt ├── eth.json ├── net.json ├── personal.json ├── test.json ├── web3.json └── whisper.json ├── libwebthree ├── CMakeLists.txt ├── IPFS.cpp ├── IPFS.h ├── Support.cpp ├── Support.h ├── Swarm.cpp ├── Swarm.h ├── SystemManager.cpp ├── SystemManager.h ├── WebThree.cpp ├── WebThree.h └── libexecstream │ ├── README │ ├── exec-stream.cpp │ ├── exec-stream.h │ ├── posix │ ├── exec-stream-helpers.cpp │ ├── exec-stream-helpers.h │ └── exec-stream-impl.cpp │ └── win │ ├── exec-stream-helpers.cpp │ ├── exec-stream-helpers.h │ └── exec-stream-impl.cpp ├── libwhisper ├── BloomFilter.h ├── CMakeLists.txt ├── Common.cpp ├── Common.h ├── Interface.cpp ├── Interface.h ├── Message.cpp ├── Message.h ├── WhisperDB.cpp ├── WhisperDB.h ├── WhisperHost.cpp ├── WhisperHost.h ├── WhisperPeer.cpp └── WhisperPeer.h ├── log.conf ├── refilltests ├── sample ├── config.json.template ├── genesis.json.template ├── init.js ├── log.conf.template ├── node0.sample ├── node1.sample ├── run.sh └── start.sh.template ├── sanitizer-blacklist.txt ├── scripts ├── duplicates.sh ├── install_cmake.sh └── install_deps.sh ├── start.sh ├── systemcontractv2 ├── .babelrc ├── Authority.sol ├── AuthorityFilter.sol ├── Base.sol ├── CAAction.sol ├── ConfigAction.sol ├── FileInfoManager.sol ├── FileServerManager.sol ├── Group.sol ├── LibFile.sol ├── LibFileServer.sol ├── LibInt.sol ├── LibPaillier.sol ├── LibString.sol ├── NodeAction.sol ├── OwnerNamed.sol ├── StringTool.sol ├── SystemProxy.sol ├── TransactionFilterBase.sol ├── TransactionFilterChain.sol ├── ca1.json ├── codeUtils.js ├── compile.js ├── config.js ├── deploy.js ├── init_deploy.js ├── monitor.js ├── node1.json ├── node2.json ├── node3.json ├── node4.json ├── output │ ├── Authority.abi │ ├── Authority.bin │ ├── AuthorityFilter.abi │ ├── AuthorityFilter.address │ ├── AuthorityFilter.bin │ ├── Base.abi │ ├── Base.bin │ ├── CAAction.abi │ ├── CAAction.address │ ├── CAAction.bin │ ├── ConfigAction.abi │ ├── ConfigAction.address │ ├── ConfigAction.bin │ ├── FileInfoManager.abi │ ├── FileInfoManager.address │ ├── FileInfoManager.bin │ ├── FileServerManager.abi │ ├── FileServerManager.address │ ├── FileServerManager.bin │ ├── Group.abi │ ├── Group.address │ ├── Group.bin │ ├── LibFile.abi │ ├── LibFile.bin │ ├── LibFileServer.abi │ ├── LibFileServer.bin │ ├── LibInt.abi │ ├── LibInt.bin │ ├── LibString.abi │ ├── LibString.bin │ ├── NodeAction.abi │ ├── NodeAction.address │ ├── NodeAction.bin │ ├── OwnerNamed.abi │ ├── OwnerNamed.bin │ ├── StringTool.abi │ ├── StringTool.bin │ ├── SystemProxy.abi │ ├── SystemProxy.address │ ├── SystemProxy.bin │ ├── TransactionFilterBase.abi │ ├── TransactionFilterBase.bin │ ├── TransactionFilterChain.abi │ ├── TransactionFilterChain.address │ └── TransactionFilterChain.bin ├── package.json ├── post.js ├── readme.txt ├── sha3.js ├── tool.js └── web3sync.js ├── tool ├── .babelrc ├── HelloWorld.sol ├── LibInt.sol ├── LibPaillier.sol ├── LibString.sol ├── Ok.sol ├── TestPaillier.sol ├── Testout.sol ├── ViewChangeCheck.js ├── accountCheck.js ├── accountManager.js ├── codeUtils.js ├── config.js ├── demoHelloWorld.js ├── demoOk.js ├── demoTestPaillie.js ├── demoTestout.js ├── deploy.js ├── java │ ├── DfsSDK │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── com.zeroc.IceBuilderPlugin.prefs │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── lib │ │ │ ├── asm-5.0.3.jar │ │ │ ├── asm-analysis-5.0.3.jar │ │ │ ├── asm-commons-5.0.3.jar │ │ │ ├── asm-tree-5.0.3.jar │ │ │ ├── asm-util-5.0.3.jar │ │ │ ├── bcprov-jdk15on-1.60.jar │ │ │ ├── commons-codec-1.9.jar │ │ │ ├── commons-io-2.5.jar │ │ │ ├── commons-logging-1.2.jar │ │ │ ├── fastjson-1.2.25.jar │ │ │ ├── httpclient-4.5.2.jar │ │ │ ├── httpcore-4.4.4.jar │ │ │ ├── httpmime-4.3.1.jar │ │ │ ├── jackson-annotations-2.9.10.jar │ │ │ ├── jackson-core-2.9.10.jar │ │ │ ├── jackson-databind-2.9.10.6.jar │ │ │ ├── javapoet-1.7.0.jar │ │ │ ├── jffi-1.2.14-native.jar │ │ │ ├── jffi-1.2.14.jar │ │ │ ├── jnr-constants-0.9.6.jar │ │ │ ├── jnr-enxio-0.14.jar │ │ │ ├── jnr-ffi-2.1.2.jar │ │ │ ├── jnr-posix-3.0.33.jar │ │ │ ├── jnr-unixsocket-0.15.jar │ │ │ ├── jnr-x86asm-1.0.2.jar │ │ │ ├── rxjava-1.2.4.jar │ │ │ ├── scrypt-1.4.0.jar │ │ │ ├── web3j-2.1.0-extension.jar │ │ │ └── web3j-2.1.0_main.jar │ │ └── src │ │ │ └── com │ │ │ └── dfs │ │ │ ├── entity │ │ │ ├── DataJson.java │ │ │ ├── DfsConst.java │ │ │ ├── QueryResultJson.java │ │ │ └── RetEnum.java │ │ │ ├── fileserver │ │ │ ├── DfsEngine.java │ │ │ └── IDfsListener.java │ │ │ ├── http │ │ │ └── FileHttpClient.java │ │ │ ├── message │ │ │ ├── CommonResponseData.java │ │ │ ├── CommonRespsoneJson.java │ │ │ ├── FileInfo.java │ │ │ ├── FileOpResponse.java │ │ │ └── FileServer.java │ │ │ ├── utils │ │ │ ├── DfsMD5.java │ │ │ ├── DfsMutexLock.java │ │ │ └── DfsTimer.java │ │ │ └── web3j │ │ │ ├── FileInfoManager.java │ │ │ └── FileServerManager.java │ ├── DfsSample │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── com.zeroc.IceBuilderPlugin.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── lib │ │ │ ├── DfsSDK.jar │ │ │ ├── asm-5.0.3.jar │ │ │ ├── asm-analysis-5.0.3.jar │ │ │ ├── asm-commons-5.0.3.jar │ │ │ ├── asm-tree-5.0.3.jar │ │ │ ├── asm-util-5.0.3.jar │ │ │ ├── bcprov-jdk15on-1.60.jar │ │ │ ├── commons-codec-1.9.jar │ │ │ ├── commons-io-2.5.jar │ │ │ ├── commons-logging-1.2.jar │ │ │ ├── fastjson-1.2.25.jar │ │ │ ├── httpclient-4.5.2.jar │ │ │ ├── httpcore-4.4.4.jar │ │ │ ├── httpmime-4.3.1.jar │ │ │ ├── jackson-annotations-2.9.10.jar │ │ │ ├── jackson-core-2.9.10.jar │ │ │ ├── jackson-databind-2.9.10.6.jar │ │ │ ├── javapoet-1.7.0.jar │ │ │ ├── jffi-1.2.14-native.jar │ │ │ ├── jffi-1.2.14.jar │ │ │ ├── jnr-constants-0.9.6.jar │ │ │ ├── jnr-enxio-0.14.jar │ │ │ ├── jnr-ffi-2.1.2.jar │ │ │ ├── jnr-posix-3.0.33.jar │ │ │ ├── jnr-unixsocket-0.15.jar │ │ │ ├── jnr-x86asm-1.0.2.jar │ │ │ ├── rxjava-1.2.4.jar │ │ │ ├── scrypt-1.4.0.jar │ │ │ ├── web3j-2.1.0-extension.jar │ │ │ └── web3j-2.1.0_main.jar │ │ └── src │ │ │ └── com │ │ │ ├── dfs │ │ │ └── unittest │ │ │ │ ├── DfsEngineTest.java │ │ │ │ └── DfsTestListener.java │ │ │ └── sample │ │ │ ├── HelloDfs.java │ │ │ └── HelloListener.java │ ├── Paillier │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── javascript │ │ │ ├── asn1hex.js │ │ │ ├── base64.js │ │ │ ├── jsbn.js │ │ │ ├── paillierKey.js │ │ │ ├── rng.js │ │ │ ├── rsa.js │ │ │ └── test.html │ │ ├── lib │ │ │ └── bcprov-jdk15on-1.60.jar │ │ ├── paillier │ │ │ ├── asn1hex.js │ │ │ ├── base64.js │ │ │ ├── biginteger.js │ │ │ ├── paillierKey.js │ │ │ ├── seedrandom.js │ │ │ └── test.html │ │ └── src │ │ │ └── paillier │ │ │ ├── CommonUtils.java │ │ │ ├── PaillierCipher.java │ │ │ ├── PaillierKeyPair.java │ │ │ └── PaillierTest.java │ ├── output │ │ ├── DfsSDK.jar │ │ ├── web3j-2.1.0-extension.jar │ │ └── web3j-2.1.0_main.jar │ ├── third-jars │ │ ├── asm-5.0.3.jar │ │ ├── asm-analysis-5.0.3.jar │ │ ├── asm-commons-5.0.3.jar │ │ ├── asm-tree-5.0.3.jar │ │ ├── asm-util-5.0.3.jar │ │ ├── bcprov-jdk15on-1.60.jar │ │ ├── commons-codec-1.9.jar │ │ ├── commons-io-2.5.jar │ │ ├── commons-logging-1.2.jar │ │ ├── fastjson-1.2.25.jar │ │ ├── httpclient-4.5.2.jar │ │ ├── httpcore-4.4.4.jar │ │ ├── httpmime-4.3.1.jar │ │ ├── jackson-annotations-2.9.10.jar │ │ ├── jackson-core-2.9.10.jar │ │ ├── jackson-databind-2.9.10.6.jar │ │ ├── javapoet-1.7.0.jar │ │ ├── jffi-1.2.14-native.jar │ │ ├── jffi-1.2.14.jar │ │ ├── jnr-constants-0.9.6.jar │ │ ├── jnr-enxio-0.14.jar │ │ ├── jnr-ffi-2.1.2.jar │ │ ├── jnr-posix-3.0.33.jar │ │ ├── jnr-unixsocket-0.15.jar │ │ ├── jnr-x86asm-1.0.2.jar │ │ ├── rxjava-1.2.4.jar │ │ └── scrypt-1.4.0.jar │ └── web3j-2.1.0-extension │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ └── com.zeroc.IceBuilderPlugin.prefs │ │ ├── lib │ │ ├── asm-5.0.3.jar │ │ ├── asm-analysis-5.0.3.jar │ │ ├── asm-commons-5.0.3.jar │ │ ├── asm-tree-5.0.3.jar │ │ ├── asm-util-5.0.3.jar │ │ ├── bcprov-jdk15on-1.54.jar │ │ ├── commons-codec-1.9.jar │ │ ├── commons-io-2.5.jar │ │ ├── commons-logging-1.2.jar │ │ ├── fastjson-1.2.25.jar │ │ ├── httpclient-4.5.2.jar │ │ ├── httpcore-4.4.4.jar │ │ ├── httpmime-4.3.1.jar │ │ ├── jackson-annotations-2.9.10.jar │ │ ├── jackson-core-2.9.10.jar │ │ ├── jackson-databind-2.9.10.6.jar │ │ ├── javapoet-1.7.0.jar │ │ ├── jffi-1.2.14-native.jar │ │ ├── jffi-1.2.14.jar │ │ ├── jnr-constants-0.9.6.jar │ │ ├── jnr-enxio-0.14.jar │ │ ├── jnr-ffi-2.1.2.jar │ │ ├── jnr-posix-3.0.33.jar │ │ ├── jnr-unixsocket-0.15.jar │ │ ├── jnr-x86asm-1.0.2.jar │ │ ├── rxjava-1.2.4.jar │ │ ├── scrypt-1.4.0.jar │ │ └── web3j-2.1.0_main.jar │ │ └── src │ │ └── org │ │ └── bcos │ │ └── web3j │ │ └── tx │ │ ├── BcosRawTxManager.java │ │ └── BcosTxEncoder.java ├── monitor.js ├── output │ ├── HelloWorld.abi │ └── HelloWorld.bin ├── package.json ├── post.js ├── readme.txt ├── sendRawTransaction.js ├── sendTransaction.js ├── sha3.js ├── signTransaction.js ├── solc-static-linux ├── solc-static-linux.1 ├── transactionManager.js ├── transactionObject.js ├── utils.js └── web3sync.js └── utils ├── CMakeLists.txt ├── json_spirit ├── CMakeLists.txt ├── 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 └── libscrypt ├── CMakeLists.txt ├── LICENSE ├── b64.c ├── b64.h ├── crypto-mcf.c ├── crypto-scrypt-saltgen.c ├── crypto_scrypt-check.c ├── crypto_scrypt-hash.c ├── crypto_scrypt-hexconvert.c ├── crypto_scrypt-hexconvert.h ├── crypto_scrypt-nosse.c ├── libscrypt.h ├── libscrypt.version ├── sha256.c ├── sha256.h ├── slowequals.c ├── slowequals.h └── sysendian.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CodingStandards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/CodingStandards.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/README.md -------------------------------------------------------------------------------- /accounttool/accountCheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/accounttool/accountCheck.js -------------------------------------------------------------------------------- /accounttool/accountManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/accounttool/accountManager.js -------------------------------------------------------------------------------- /accounttool/codeUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/accounttool/codeUtils.js -------------------------------------------------------------------------------- /accounttool/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/accounttool/config.js -------------------------------------------------------------------------------- /accounttool/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/accounttool/package.json -------------------------------------------------------------------------------- /accounttool/readMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/accounttool/readMe.md -------------------------------------------------------------------------------- /accounttool/readme.txt: -------------------------------------------------------------------------------- 1 | npm install 2 | -------------------------------------------------------------------------------- /accounttool/sendRawTransaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/accounttool/sendRawTransaction.js -------------------------------------------------------------------------------- /accounttool/sendTransaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/accounttool/sendTransaction.js -------------------------------------------------------------------------------- /accounttool/sha3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/accounttool/sha3.js -------------------------------------------------------------------------------- /accounttool/signTransaction.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /accounttool/transactionManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/accounttool/transactionManager.js -------------------------------------------------------------------------------- /accounttool/transactionObject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/accounttool/transactionObject.js -------------------------------------------------------------------------------- /accounttool/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/accounttool/utils.js -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/appveyor.yml -------------------------------------------------------------------------------- /cmake/CMakeParseArguments.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/CMakeParseArguments.cmake -------------------------------------------------------------------------------- /cmake/EthBuildInfo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/EthBuildInfo.cmake -------------------------------------------------------------------------------- /cmake/EthCompilerSettings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/EthCompilerSettings.cmake -------------------------------------------------------------------------------- /cmake/EthDependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/EthDependencies.cmake -------------------------------------------------------------------------------- /cmake/EthExecutableHelper.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/EthExecutableHelper.cmake -------------------------------------------------------------------------------- /cmake/EthOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/EthOptions.cmake -------------------------------------------------------------------------------- /cmake/EthPolicy.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/EthPolicy.cmake -------------------------------------------------------------------------------- /cmake/EthUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/EthUtils.cmake -------------------------------------------------------------------------------- /cmake/FindCURL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/FindCURL.cmake -------------------------------------------------------------------------------- /cmake/FindCpuid.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/FindCpuid.cmake -------------------------------------------------------------------------------- /cmake/FindDev.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/FindDev.cmake -------------------------------------------------------------------------------- /cmake/FindEth.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/FindEth.cmake -------------------------------------------------------------------------------- /cmake/FindGmp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/FindGmp.cmake -------------------------------------------------------------------------------- /cmake/FindLevelDB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/FindLevelDB.cmake -------------------------------------------------------------------------------- /cmake/FindMHD.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/FindMHD.cmake -------------------------------------------------------------------------------- /cmake/FindMiniupnpc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/FindMiniupnpc.cmake -------------------------------------------------------------------------------- /cmake/FindPackageHandleStandardArgs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/FindPackageHandleStandardArgs.cmake -------------------------------------------------------------------------------- /cmake/FindPackageMessage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/FindPackageMessage.cmake -------------------------------------------------------------------------------- /cmake/FindRocksDB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/FindRocksDB.cmake -------------------------------------------------------------------------------- /cmake/FindSSH2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/FindSSH2.cmake -------------------------------------------------------------------------------- /cmake/FindUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/FindUtils.cmake -------------------------------------------------------------------------------- /cmake/FindWeb3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/FindWeb3.cmake -------------------------------------------------------------------------------- /cmake/FindWindowsSDK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/FindWindowsSDK.cmake -------------------------------------------------------------------------------- /cmake/Findjson_rpc_cpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/Findjson_rpc_cpp.cmake -------------------------------------------------------------------------------- /cmake/ProjectBoost.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/ProjectBoost.cmake -------------------------------------------------------------------------------- /cmake/ProjectCryptopp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/ProjectCryptopp.cmake -------------------------------------------------------------------------------- /cmake/ProjectJsonCpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/ProjectJsonCpp.cmake -------------------------------------------------------------------------------- /cmake/ProjectJsonRpcCpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/ProjectJsonRpcCpp.cmake -------------------------------------------------------------------------------- /cmake/ProjectSecp256k1.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/ProjectSecp256k1.cmake -------------------------------------------------------------------------------- /cmake/UseCpuid.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/UseCpuid.cmake -------------------------------------------------------------------------------- /cmake/UseDev.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/UseDev.cmake -------------------------------------------------------------------------------- /cmake/UseEth.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/UseEth.cmake -------------------------------------------------------------------------------- /cmake/UseGmp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/UseGmp.cmake -------------------------------------------------------------------------------- /cmake/UseMhd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/UseMhd.cmake -------------------------------------------------------------------------------- /cmake/UseMiniupnpc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/UseMiniupnpc.cmake -------------------------------------------------------------------------------- /cmake/UseOpenSSL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/UseOpenSSL.cmake -------------------------------------------------------------------------------- /cmake/UseSSH2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/UseSSH2.cmake -------------------------------------------------------------------------------- /cmake/UseUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/UseUtils.cmake -------------------------------------------------------------------------------- /cmake/UseWeb3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/UseWeb3.cmake -------------------------------------------------------------------------------- /cmake/UseZLIB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/UseZLIB.cmake -------------------------------------------------------------------------------- /cmake/scripts/buildinfo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/scripts/buildinfo.cmake -------------------------------------------------------------------------------- /cmake/scripts/configure.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/scripts/configure.cmake -------------------------------------------------------------------------------- /cmake/scripts/copydlls.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/scripts/copydlls.cmake -------------------------------------------------------------------------------- /cmake/scripts/helpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/scripts/helpers.cmake -------------------------------------------------------------------------------- /cmake/scripts/install_deps.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/scripts/install_deps.cmake -------------------------------------------------------------------------------- /cmake/scripts/jsonrpcstub.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/scripts/jsonrpcstub.cmake -------------------------------------------------------------------------------- /cmake/scripts/resource.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/scripts/resource.hpp.in -------------------------------------------------------------------------------- /cmake/scripts/resources.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/scripts/resources.cmake -------------------------------------------------------------------------------- /cmake/scripts/runtest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/scripts/runtest.cmake -------------------------------------------------------------------------------- /cmake/secp256k1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/secp256k1/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/templates/BuildInfo.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/cmake/templates/BuildInfo.h.in -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/config.json -------------------------------------------------------------------------------- /deps/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/deps/LICENSE -------------------------------------------------------------------------------- /deps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/deps/README.md -------------------------------------------------------------------------------- /deps/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/deps/appveyor.yml -------------------------------------------------------------------------------- /deps/build_cryptopp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/deps/build_cryptopp.bat -------------------------------------------------------------------------------- /deps/build_curl.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/deps/build_curl.bat -------------------------------------------------------------------------------- /deps/build_jsoncpp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/deps/build_jsoncpp.bat -------------------------------------------------------------------------------- /deps/build_jsonrpccpp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/deps/build_jsonrpccpp.bat -------------------------------------------------------------------------------- /deps/build_leveldb.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/deps/build_leveldb.bat -------------------------------------------------------------------------------- /deps/build_microhttpd.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/deps/build_microhttpd.bat -------------------------------------------------------------------------------- /deps/build_miniupnpc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/deps/build_miniupnpc.bat -------------------------------------------------------------------------------- /deps/bundle_cryptopp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/deps/bundle_cryptopp.bat -------------------------------------------------------------------------------- /deps/bundle_curl.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/deps/bundle_curl.bat -------------------------------------------------------------------------------- /deps/bundle_jsoncpp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/deps/bundle_jsoncpp.bat -------------------------------------------------------------------------------- /deps/bundle_jsonrpccpp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/deps/bundle_jsonrpccpp.bat -------------------------------------------------------------------------------- /deps/bundle_leveldb.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/deps/bundle_leveldb.bat -------------------------------------------------------------------------------- /deps/bundle_microhttpd.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/deps/bundle_microhttpd.bat -------------------------------------------------------------------------------- /deps/bundle_miniupnpc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/deps/bundle_miniupnpc.bat -------------------------------------------------------------------------------- /deps/cryptopp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/deps/cryptopp.cmake -------------------------------------------------------------------------------- /deps/install_cryptopp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/deps/install_cryptopp.bat -------------------------------------------------------------------------------- /deps/install_curl.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/deps/install_curl.bat -------------------------------------------------------------------------------- /deps/install_deps.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/deps/install_deps.cmake -------------------------------------------------------------------------------- /deps/install_jsoncpp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/deps/install_jsoncpp.bat -------------------------------------------------------------------------------- /deps/install_jsonrpccpp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/deps/install_jsonrpccpp.bat -------------------------------------------------------------------------------- /deps/install_leveldb.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/deps/install_leveldb.bat -------------------------------------------------------------------------------- /deps/install_microhttpd.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/deps/install_microhttpd.bat -------------------------------------------------------------------------------- /deps/install_miniupnpc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/deps/install_miniupnpc.bat -------------------------------------------------------------------------------- /deps/jsoncpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/deps/jsoncpp.cmake -------------------------------------------------------------------------------- /deps/jsonrpc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/deps/jsonrpc.cmake -------------------------------------------------------------------------------- /deps/main.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/deps/main.bat -------------------------------------------------------------------------------- /deps/scripts/build_boost.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/deps/scripts/build_boost.cmake -------------------------------------------------------------------------------- /deps/scripts/build_llvm.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/deps/scripts/build_llvm.cmake -------------------------------------------------------------------------------- /deps/scripts/helpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/deps/scripts/helpers.cmake -------------------------------------------------------------------------------- /doc/BCOS_FANS.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/doc/BCOS_FANS.jpeg -------------------------------------------------------------------------------- /doc/BCOS_Whitepaper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/doc/BCOS_Whitepaper.pdf -------------------------------------------------------------------------------- /doc/manual/images/i10.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/doc/manual/images/i10.1.jpg -------------------------------------------------------------------------------- /doc/manual/images/i2.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/doc/manual/images/i2.1.png -------------------------------------------------------------------------------- /doc/manual/images/i3.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/doc/manual/images/i3.1.png -------------------------------------------------------------------------------- /doc/manual/images/i3.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/doc/manual/images/i3.2.png -------------------------------------------------------------------------------- /doc/manual/images/i4.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/doc/manual/images/i4.1.png -------------------------------------------------------------------------------- /doc/manual/images/i5.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/doc/manual/images/i5.1.png -------------------------------------------------------------------------------- /doc/manual/images/i6.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/doc/manual/images/i6.1.png -------------------------------------------------------------------------------- /doc/manual/images/i6.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/doc/manual/images/i6.2.png -------------------------------------------------------------------------------- /doc/manual/images/i6.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/doc/manual/images/i6.3.png -------------------------------------------------------------------------------- /doc/manual/images/i6.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/doc/manual/images/i6.4.png -------------------------------------------------------------------------------- /doc/manual/images/i6.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/doc/manual/images/i6.5.png -------------------------------------------------------------------------------- /doc/manual/images/i7.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/doc/manual/images/i7.1.png -------------------------------------------------------------------------------- /doc/manual/images/i7.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/doc/manual/images/i7.2.png -------------------------------------------------------------------------------- /doc/manual/images/i7.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/doc/manual/images/i7.3.png -------------------------------------------------------------------------------- /doc/manual/images/i7.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/doc/manual/images/i7.4.png -------------------------------------------------------------------------------- /doc/manual/images/i7.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/doc/manual/images/i7.5.png -------------------------------------------------------------------------------- /doc/manual/images/i7.6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/doc/manual/images/i7.6.png -------------------------------------------------------------------------------- /doc/manual/images/i7.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/doc/manual/images/i7.7.png -------------------------------------------------------------------------------- /doc/manual/images/i8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/doc/manual/images/i8.png -------------------------------------------------------------------------------- /doc/manual/images/i9.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/doc/manual/images/i9.1.png -------------------------------------------------------------------------------- /doc/manual/manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/doc/manual/manual.md -------------------------------------------------------------------------------- /doc/区块链平台调研与分析报告.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/doc/区块链平台调研与分析报告.pdf -------------------------------------------------------------------------------- /docker/Dockerfile-alpine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/docker/Dockerfile-alpine -------------------------------------------------------------------------------- /docker/Dockerfile-centos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/docker/Dockerfile-centos -------------------------------------------------------------------------------- /docker/Dockerfile-ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/docker/Dockerfile-ubuntu -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/nodeConfig/node-0/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/docker/nodeConfig/node-0/config.json -------------------------------------------------------------------------------- /docker/nodeConfig/node-0/genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/docker/nodeConfig/node-0/genesis.json -------------------------------------------------------------------------------- /docker/nodeConfig/node-0/log.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/docker/nodeConfig/node-0/log.conf -------------------------------------------------------------------------------- /docker/nodeConfig/node-0/network.rlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/docker/nodeConfig/node-0/network.rlp -------------------------------------------------------------------------------- /docker/nodeConfig/node-0/network.rlp.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/docker/nodeConfig/node-0/network.rlp.pub -------------------------------------------------------------------------------- /docker/nodeConfig/node-0/node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/docker/nodeConfig/node-0/node.json -------------------------------------------------------------------------------- /docker/nodeConfig/node-1/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/docker/nodeConfig/node-1/config.json -------------------------------------------------------------------------------- /docker/nodeConfig/node-1/genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/docker/nodeConfig/node-1/genesis.json -------------------------------------------------------------------------------- /docker/nodeConfig/node-1/log.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/docker/nodeConfig/node-1/log.conf -------------------------------------------------------------------------------- /docker/nodeConfig/node-1/network.rlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/docker/nodeConfig/node-1/network.rlp -------------------------------------------------------------------------------- /docker/nodeConfig/node-1/network.rlp.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/docker/nodeConfig/node-1/network.rlp.pub -------------------------------------------------------------------------------- /docker/nodeConfig/node-1/node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/docker/nodeConfig/node-1/node.json -------------------------------------------------------------------------------- /docker/scripts/genConfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/docker/scripts/genConfig.sh -------------------------------------------------------------------------------- /docker/scripts/install-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/docker/scripts/install-docker.sh -------------------------------------------------------------------------------- /docker/scripts/start_bcos_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/docker/scripts/start_bcos_docker.sh -------------------------------------------------------------------------------- /eth/AccountManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/eth/AccountManager.cpp -------------------------------------------------------------------------------- /eth/AccountManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/eth/AccountManager.h -------------------------------------------------------------------------------- /eth/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/eth/CMakeLists.txt -------------------------------------------------------------------------------- /eth/Farm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/eth/Farm.h -------------------------------------------------------------------------------- /eth/GenesisInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/eth/GenesisInfo.h -------------------------------------------------------------------------------- /eth/farm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/eth/farm.json -------------------------------------------------------------------------------- /eth/genesisInfoForWe.cpp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /eth/genesisInfoForWe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/eth/genesisInfoForWe.h -------------------------------------------------------------------------------- /eth/initProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/eth/initProcess.h -------------------------------------------------------------------------------- /eth/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/eth/main.cpp -------------------------------------------------------------------------------- /evmjit/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/.clang-format -------------------------------------------------------------------------------- /evmjit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/.gitignore -------------------------------------------------------------------------------- /evmjit/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/.travis.yml -------------------------------------------------------------------------------- /evmjit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/CMakeLists.txt -------------------------------------------------------------------------------- /evmjit/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/LICENSE.md -------------------------------------------------------------------------------- /evmjit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/README.md -------------------------------------------------------------------------------- /evmjit/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/appveyor.yml -------------------------------------------------------------------------------- /evmjit/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/circle.yml -------------------------------------------------------------------------------- /evmjit/cmake/llvm.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/cmake/llvm.cmake -------------------------------------------------------------------------------- /evmjit/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/docker/Dockerfile -------------------------------------------------------------------------------- /evmjit/docker/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/docker/test.sh -------------------------------------------------------------------------------- /evmjit/docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/docs/Doxyfile -------------------------------------------------------------------------------- /evmjit/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/examples/CMakeLists.txt -------------------------------------------------------------------------------- /evmjit/examples/capi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/examples/capi.c -------------------------------------------------------------------------------- /evmjit/examples/examplevm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/examples/examplevm.c -------------------------------------------------------------------------------- /evmjit/include/evm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/include/evm.h -------------------------------------------------------------------------------- /evmjit/include/evmjit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/include/evmjit.h -------------------------------------------------------------------------------- /evmjit/libevmjit/Arith256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/libevmjit/Arith256.cpp -------------------------------------------------------------------------------- /evmjit/libevmjit/Arith256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/libevmjit/Arith256.h -------------------------------------------------------------------------------- /evmjit/libevmjit/Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/libevmjit/Array.cpp -------------------------------------------------------------------------------- /evmjit/libevmjit/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/libevmjit/Array.h -------------------------------------------------------------------------------- /evmjit/libevmjit/BasicBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/libevmjit/BasicBlock.cpp -------------------------------------------------------------------------------- /evmjit/libevmjit/BasicBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/libevmjit/BasicBlock.h -------------------------------------------------------------------------------- /evmjit/libevmjit/BuildInfo.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/libevmjit/BuildInfo.h.in -------------------------------------------------------------------------------- /evmjit/libevmjit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/libevmjit/CMakeLists.txt -------------------------------------------------------------------------------- /evmjit/libevmjit/Cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/libevmjit/Cache.cpp -------------------------------------------------------------------------------- /evmjit/libevmjit/Cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/libevmjit/Cache.h -------------------------------------------------------------------------------- /evmjit/libevmjit/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/libevmjit/Common.h -------------------------------------------------------------------------------- /evmjit/libevmjit/Compiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/libevmjit/Compiler.cpp -------------------------------------------------------------------------------- /evmjit/libevmjit/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/libevmjit/Compiler.h -------------------------------------------------------------------------------- /evmjit/libevmjit/CompilerHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/libevmjit/CompilerHelper.cpp -------------------------------------------------------------------------------- /evmjit/libevmjit/CompilerHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/libevmjit/CompilerHelper.h -------------------------------------------------------------------------------- /evmjit/libevmjit/Endianness.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/libevmjit/Endianness.cpp -------------------------------------------------------------------------------- /evmjit/libevmjit/Endianness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/libevmjit/Endianness.h -------------------------------------------------------------------------------- /evmjit/libevmjit/ExecStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/libevmjit/ExecStats.cpp -------------------------------------------------------------------------------- /evmjit/libevmjit/ExecStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/libevmjit/ExecStats.h -------------------------------------------------------------------------------- /evmjit/libevmjit/Ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/libevmjit/Ext.cpp -------------------------------------------------------------------------------- /evmjit/libevmjit/Ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/libevmjit/Ext.h -------------------------------------------------------------------------------- /evmjit/libevmjit/GasMeter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/libevmjit/GasMeter.cpp -------------------------------------------------------------------------------- /evmjit/libevmjit/GasMeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/libevmjit/GasMeter.h -------------------------------------------------------------------------------- /evmjit/libevmjit/Instruction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/libevmjit/Instruction.cpp -------------------------------------------------------------------------------- /evmjit/libevmjit/Instruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/libevmjit/Instruction.h -------------------------------------------------------------------------------- /evmjit/libevmjit/JIT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/libevmjit/JIT.cpp -------------------------------------------------------------------------------- /evmjit/libevmjit/JIT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/libevmjit/JIT.h -------------------------------------------------------------------------------- /evmjit/libevmjit/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/libevmjit/Memory.cpp -------------------------------------------------------------------------------- /evmjit/libevmjit/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/libevmjit/Memory.h -------------------------------------------------------------------------------- /evmjit/libevmjit/Optimizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/libevmjit/Optimizer.cpp -------------------------------------------------------------------------------- /evmjit/libevmjit/Optimizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/libevmjit/Optimizer.h -------------------------------------------------------------------------------- /evmjit/libevmjit/RuntimeManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/libevmjit/RuntimeManager.cpp -------------------------------------------------------------------------------- /evmjit/libevmjit/RuntimeManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/libevmjit/RuntimeManager.h -------------------------------------------------------------------------------- /evmjit/libevmjit/Type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/libevmjit/Type.cpp -------------------------------------------------------------------------------- /evmjit/libevmjit/Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/libevmjit/Type.h -------------------------------------------------------------------------------- /evmjit/libevmjit/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/libevmjit/Utils.cpp -------------------------------------------------------------------------------- /evmjit/libevmjit/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/libevmjit/Utils.h -------------------------------------------------------------------------------- /evmjit/libevmjit/preprocessor/llvm_includes_end.h: -------------------------------------------------------------------------------- 1 | #if defined(_MSC_VER) 2 | #pragma warning(pop) 3 | #endif 4 | -------------------------------------------------------------------------------- /evmjit/scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/scripts/build.sh -------------------------------------------------------------------------------- /evmjit/scripts/travis_update_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/scripts/travis_update_docs.sh -------------------------------------------------------------------------------- /evmjit/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/tests/CMakeLists.txt -------------------------------------------------------------------------------- /evmjit/tests/test-evmjit-standalone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/tests/test-evmjit-standalone.c -------------------------------------------------------------------------------- /evmjit/wercker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/evmjit/wercker.yml -------------------------------------------------------------------------------- /genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/genesis.json -------------------------------------------------------------------------------- /homebrew/INSTALL_RECEIPT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/homebrew/INSTALL_RECEIPT.json -------------------------------------------------------------------------------- /homebrew/prepare_receipt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/homebrew/prepare_receipt.sh -------------------------------------------------------------------------------- /libcontract/BaseContract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libcontract/BaseContract.cpp -------------------------------------------------------------------------------- /libcontract/BaseContract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libcontract/BaseContract.h -------------------------------------------------------------------------------- /libcontract/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libcontract/CMakeLists.txt -------------------------------------------------------------------------------- /libcontract/ContractDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libcontract/ContractDefine.h -------------------------------------------------------------------------------- /libcontract/FileInfoManagerContract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libcontract/FileInfoManagerContract.cpp -------------------------------------------------------------------------------- /libcontract/FileInfoManagerContract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libcontract/FileInfoManagerContract.h -------------------------------------------------------------------------------- /libcontract/FileServerManagerContract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libcontract/FileServerManagerContract.h -------------------------------------------------------------------------------- /libdevcore/Assertions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/Assertions.h -------------------------------------------------------------------------------- /libdevcore/Base58.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/Base58.cpp -------------------------------------------------------------------------------- /libdevcore/Base58.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/Base58.h -------------------------------------------------------------------------------- /libdevcore/Base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/Base64.cpp -------------------------------------------------------------------------------- /libdevcore/Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/Base64.h -------------------------------------------------------------------------------- /libdevcore/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/CMakeLists.txt -------------------------------------------------------------------------------- /libdevcore/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/Common.cpp -------------------------------------------------------------------------------- /libdevcore/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/Common.h -------------------------------------------------------------------------------- /libdevcore/CommonData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/CommonData.cpp -------------------------------------------------------------------------------- /libdevcore/CommonData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/CommonData.h -------------------------------------------------------------------------------- /libdevcore/CommonIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/CommonIO.cpp -------------------------------------------------------------------------------- /libdevcore/CommonIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/CommonIO.h -------------------------------------------------------------------------------- /libdevcore/CommonJS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/CommonJS.cpp -------------------------------------------------------------------------------- /libdevcore/CommonJS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/CommonJS.h -------------------------------------------------------------------------------- /libdevcore/Exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/Exceptions.h -------------------------------------------------------------------------------- /libdevcore/FileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/FileSystem.cpp -------------------------------------------------------------------------------- /libdevcore/FileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/FileSystem.h -------------------------------------------------------------------------------- /libdevcore/FixedHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/FixedHash.cpp -------------------------------------------------------------------------------- /libdevcore/FixedHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/FixedHash.h -------------------------------------------------------------------------------- /libdevcore/Guards.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/Guards.cpp -------------------------------------------------------------------------------- /libdevcore/Guards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/Guards.h -------------------------------------------------------------------------------- /libdevcore/Hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/Hash.cpp -------------------------------------------------------------------------------- /libdevcore/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/Hash.h -------------------------------------------------------------------------------- /libdevcore/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/Log.cpp -------------------------------------------------------------------------------- /libdevcore/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/Log.h -------------------------------------------------------------------------------- /libdevcore/MemoryDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/MemoryDB.cpp -------------------------------------------------------------------------------- /libdevcore/MemoryDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/MemoryDB.h -------------------------------------------------------------------------------- /libdevcore/OverlayDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/OverlayDB.cpp -------------------------------------------------------------------------------- /libdevcore/OverlayDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/OverlayDB.h -------------------------------------------------------------------------------- /libdevcore/RLP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/RLP.cpp -------------------------------------------------------------------------------- /libdevcore/RLP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/RLP.h -------------------------------------------------------------------------------- /libdevcore/RangeMask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/RangeMask.cpp -------------------------------------------------------------------------------- /libdevcore/RangeMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/RangeMask.h -------------------------------------------------------------------------------- /libdevcore/SHA3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/SHA3.cpp -------------------------------------------------------------------------------- /libdevcore/SHA3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/SHA3.h -------------------------------------------------------------------------------- /libdevcore/Terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/Terminal.h -------------------------------------------------------------------------------- /libdevcore/TransientDirectory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/TransientDirectory.cpp -------------------------------------------------------------------------------- /libdevcore/TransientDirectory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/TransientDirectory.h -------------------------------------------------------------------------------- /libdevcore/TrieCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/TrieCommon.cpp -------------------------------------------------------------------------------- /libdevcore/TrieCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/TrieCommon.h -------------------------------------------------------------------------------- /libdevcore/TrieDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/TrieDB.cpp -------------------------------------------------------------------------------- /libdevcore/TrieDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/TrieDB.h -------------------------------------------------------------------------------- /libdevcore/TrieHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/TrieHash.cpp -------------------------------------------------------------------------------- /libdevcore/TrieHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/TrieHash.h -------------------------------------------------------------------------------- /libdevcore/UndefMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/UndefMacros.h -------------------------------------------------------------------------------- /libdevcore/Worker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/Worker.cpp -------------------------------------------------------------------------------- /libdevcore/Worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/Worker.h -------------------------------------------------------------------------------- /libdevcore/concurrent_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/concurrent_queue.h -------------------------------------------------------------------------------- /libdevcore/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/db.h -------------------------------------------------------------------------------- /libdevcore/debugbreak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/debugbreak.h -------------------------------------------------------------------------------- /libdevcore/easylog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/easylog.h -------------------------------------------------------------------------------- /libdevcore/easylogging++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/easylogging++.cpp -------------------------------------------------------------------------------- /libdevcore/easylogging++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/easylogging++.h -------------------------------------------------------------------------------- /libdevcore/picosha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/picosha2.h -------------------------------------------------------------------------------- /libdevcore/vector_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcore/vector_ref.h -------------------------------------------------------------------------------- /libdevcrypto/AES.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcrypto/AES.cpp -------------------------------------------------------------------------------- /libdevcrypto/AES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcrypto/AES.h -------------------------------------------------------------------------------- /libdevcrypto/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcrypto/CMakeLists.txt -------------------------------------------------------------------------------- /libdevcrypto/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcrypto/Common.cpp -------------------------------------------------------------------------------- /libdevcrypto/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcrypto/Common.h -------------------------------------------------------------------------------- /libdevcrypto/CryptoPP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcrypto/CryptoPP.cpp -------------------------------------------------------------------------------- /libdevcrypto/CryptoPP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcrypto/CryptoPP.h -------------------------------------------------------------------------------- /libdevcrypto/ECDHE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcrypto/ECDHE.cpp -------------------------------------------------------------------------------- /libdevcrypto/ECDHE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcrypto/ECDHE.h -------------------------------------------------------------------------------- /libdevcrypto/Exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcrypto/Exceptions.h -------------------------------------------------------------------------------- /libdevcrypto/Rsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcrypto/Rsa.cpp -------------------------------------------------------------------------------- /libdevcrypto/Rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcrypto/Rsa.h -------------------------------------------------------------------------------- /libdevcrypto/SecretStore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcrypto/SecretStore.cpp -------------------------------------------------------------------------------- /libdevcrypto/SecretStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcrypto/SecretStore.h -------------------------------------------------------------------------------- /libdevcrypto/WordList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcrypto/WordList.cpp -------------------------------------------------------------------------------- /libdevcrypto/WordList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libdevcrypto/WordList.h -------------------------------------------------------------------------------- /libethcore/ABI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethcore/ABI.cpp -------------------------------------------------------------------------------- /libethcore/ABI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethcore/ABI.h -------------------------------------------------------------------------------- /libethcore/BasicAuthority.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethcore/BasicAuthority.cpp -------------------------------------------------------------------------------- /libethcore/BasicAuthority.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethcore/BasicAuthority.h -------------------------------------------------------------------------------- /libethcore/BlockHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethcore/BlockHeader.cpp -------------------------------------------------------------------------------- /libethcore/BlockHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethcore/BlockHeader.h -------------------------------------------------------------------------------- /libethcore/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethcore/CMakeLists.txt -------------------------------------------------------------------------------- /libethcore/ChainOperationParams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethcore/ChainOperationParams.cpp -------------------------------------------------------------------------------- /libethcore/ChainOperationParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethcore/ChainOperationParams.h -------------------------------------------------------------------------------- /libethcore/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethcore/Common.cpp -------------------------------------------------------------------------------- /libethcore/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethcore/Common.h -------------------------------------------------------------------------------- /libethcore/CommonJS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethcore/CommonJS.cpp -------------------------------------------------------------------------------- /libethcore/CommonJS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethcore/CommonJS.h -------------------------------------------------------------------------------- /libethcore/Exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethcore/Exceptions.h -------------------------------------------------------------------------------- /libethcore/ICAP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethcore/ICAP.cpp -------------------------------------------------------------------------------- /libethcore/ICAP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethcore/ICAP.h -------------------------------------------------------------------------------- /libethcore/KeyManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethcore/KeyManager.cpp -------------------------------------------------------------------------------- /libethcore/KeyManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethcore/KeyManager.h -------------------------------------------------------------------------------- /libethcore/Precompiled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethcore/Precompiled.cpp -------------------------------------------------------------------------------- /libethcore/Precompiled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethcore/Precompiled.h -------------------------------------------------------------------------------- /libethcore/SealEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethcore/SealEngine.cpp -------------------------------------------------------------------------------- /libethcore/SealEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethcore/SealEngine.h -------------------------------------------------------------------------------- /libethcore/Transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethcore/Transaction.cpp -------------------------------------------------------------------------------- /libethcore/Transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethcore/Transaction.h -------------------------------------------------------------------------------- /libethereum/Account.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/Account.cpp -------------------------------------------------------------------------------- /libethereum/Account.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/Account.h -------------------------------------------------------------------------------- /libethereum/All.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/All.h -------------------------------------------------------------------------------- /libethereum/BasicGasPricer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/BasicGasPricer.cpp -------------------------------------------------------------------------------- /libethereum/BasicGasPricer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/BasicGasPricer.h -------------------------------------------------------------------------------- /libethereum/Block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/Block.cpp -------------------------------------------------------------------------------- /libethereum/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/Block.h -------------------------------------------------------------------------------- /libethereum/BlockChain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/BlockChain.cpp -------------------------------------------------------------------------------- /libethereum/BlockChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/BlockChain.h -------------------------------------------------------------------------------- /libethereum/BlockChainSync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/BlockChainSync.cpp -------------------------------------------------------------------------------- /libethereum/BlockChainSync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/BlockChainSync.h -------------------------------------------------------------------------------- /libethereum/BlockDetails.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/BlockDetails.cpp -------------------------------------------------------------------------------- /libethereum/BlockDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/BlockDetails.h -------------------------------------------------------------------------------- /libethereum/BlockQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/BlockQueue.cpp -------------------------------------------------------------------------------- /libethereum/BlockQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/BlockQueue.h -------------------------------------------------------------------------------- /libethereum/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/CMakeLists.txt -------------------------------------------------------------------------------- /libethereum/ChainParams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/ChainParams.cpp -------------------------------------------------------------------------------- /libethereum/ChainParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/ChainParams.h -------------------------------------------------------------------------------- /libethereum/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/Client.cpp -------------------------------------------------------------------------------- /libethereum/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/Client.h -------------------------------------------------------------------------------- /libethereum/ClientBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/ClientBase.cpp -------------------------------------------------------------------------------- /libethereum/ClientBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/ClientBase.h -------------------------------------------------------------------------------- /libethereum/ClientTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/ClientTest.cpp -------------------------------------------------------------------------------- /libethereum/ClientTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/ClientTest.h -------------------------------------------------------------------------------- /libethereum/CodeSizeCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/CodeSizeCache.h -------------------------------------------------------------------------------- /libethereum/CommonNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/CommonNet.cpp -------------------------------------------------------------------------------- /libethereum/CommonNet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/CommonNet.h -------------------------------------------------------------------------------- /libethereum/Defaults.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/Defaults.cpp -------------------------------------------------------------------------------- /libethereum/Defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/Defaults.h -------------------------------------------------------------------------------- /libethereum/EthereumHost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/EthereumHost.cpp -------------------------------------------------------------------------------- /libethereum/EthereumHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/EthereumHost.h -------------------------------------------------------------------------------- /libethereum/EthereumPeer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/EthereumPeer.cpp -------------------------------------------------------------------------------- /libethereum/EthereumPeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/EthereumPeer.h -------------------------------------------------------------------------------- /libethereum/Executive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/Executive.cpp -------------------------------------------------------------------------------- /libethereum/Executive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/Executive.h -------------------------------------------------------------------------------- /libethereum/ExtVM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/ExtVM.cpp -------------------------------------------------------------------------------- /libethereum/ExtVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/ExtVM.h -------------------------------------------------------------------------------- /libethereum/GasPricer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/GasPricer.cpp -------------------------------------------------------------------------------- /libethereum/GasPricer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/GasPricer.h -------------------------------------------------------------------------------- /libethereum/GenericFarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/GenericFarm.h -------------------------------------------------------------------------------- /libethereum/GenericMiner.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libethereum/GenericMiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/GenericMiner.h -------------------------------------------------------------------------------- /libethereum/GenesisInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/GenesisInfo.cpp -------------------------------------------------------------------------------- /libethereum/GenesisInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/GenesisInfo.h -------------------------------------------------------------------------------- /libethereum/Interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/Interface.cpp -------------------------------------------------------------------------------- /libethereum/Interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/Interface.h -------------------------------------------------------------------------------- /libethereum/LogFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/LogFilter.cpp -------------------------------------------------------------------------------- /libethereum/LogFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/LogFilter.h -------------------------------------------------------------------------------- /libethereum/MiningClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/MiningClient.cpp -------------------------------------------------------------------------------- /libethereum/MiningClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/MiningClient.h -------------------------------------------------------------------------------- /libethereum/NodeConnParamsManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/NodeConnParamsManager.cpp -------------------------------------------------------------------------------- /libethereum/NodeConnParamsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/NodeConnParamsManager.h -------------------------------------------------------------------------------- /libethereum/NodeConnParamsManagerApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/NodeConnParamsManagerApi.cpp -------------------------------------------------------------------------------- /libethereum/NodeConnParamsManagerApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/NodeConnParamsManagerApi.h -------------------------------------------------------------------------------- /libethereum/NonceCheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/NonceCheck.cpp -------------------------------------------------------------------------------- /libethereum/NonceCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/NonceCheck.h -------------------------------------------------------------------------------- /libethereum/State.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/State.cpp -------------------------------------------------------------------------------- /libethereum/State.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/State.h -------------------------------------------------------------------------------- /libethereum/SystemContract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/SystemContract.cpp -------------------------------------------------------------------------------- /libethereum/SystemContract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/SystemContract.h -------------------------------------------------------------------------------- /libethereum/SystemContractApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/SystemContractApi.cpp -------------------------------------------------------------------------------- /libethereum/SystemContractApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/SystemContractApi.h -------------------------------------------------------------------------------- /libethereum/Transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/Transaction.cpp -------------------------------------------------------------------------------- /libethereum/Transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/Transaction.h -------------------------------------------------------------------------------- /libethereum/TransactionQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/TransactionQueue.cpp -------------------------------------------------------------------------------- /libethereum/TransactionQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/TransactionQueue.h -------------------------------------------------------------------------------- /libethereum/TransactionReceipt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/TransactionReceipt.cpp -------------------------------------------------------------------------------- /libethereum/TransactionReceipt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/TransactionReceipt.h -------------------------------------------------------------------------------- /libethereum/Utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/Utility.cpp -------------------------------------------------------------------------------- /libethereum/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/Utility.h -------------------------------------------------------------------------------- /libethereum/VerifiedBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libethereum/VerifiedBlock.h -------------------------------------------------------------------------------- /libevm/All.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libevm/All.h -------------------------------------------------------------------------------- /libevm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libevm/CMakeLists.txt -------------------------------------------------------------------------------- /libevm/CoverTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libevm/CoverTool.cpp -------------------------------------------------------------------------------- /libevm/CoverTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libevm/CoverTool.h -------------------------------------------------------------------------------- /libevm/ExtVMFace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libevm/ExtVMFace.cpp -------------------------------------------------------------------------------- /libevm/ExtVMFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libevm/ExtVMFace.h -------------------------------------------------------------------------------- /libevm/JitVM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libevm/JitVM.cpp -------------------------------------------------------------------------------- /libevm/JitVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libevm/JitVM.h -------------------------------------------------------------------------------- /libevm/SmartVM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libevm/SmartVM.cpp -------------------------------------------------------------------------------- /libevm/SmartVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libevm/SmartVM.h -------------------------------------------------------------------------------- /libevm/VM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libevm/VM.cpp -------------------------------------------------------------------------------- /libevm/VM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libevm/VM.h -------------------------------------------------------------------------------- /libevm/VMCalls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libevm/VMCalls.cpp -------------------------------------------------------------------------------- /libevm/VMConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libevm/VMConfig.h -------------------------------------------------------------------------------- /libevm/VMExtends.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libevm/VMExtends.cpp -------------------------------------------------------------------------------- /libevm/VMExtends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libevm/VMExtends.h -------------------------------------------------------------------------------- /libevm/VMFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libevm/VMFace.h -------------------------------------------------------------------------------- /libevm/VMFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libevm/VMFactory.cpp -------------------------------------------------------------------------------- /libevm/VMFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libevm/VMFactory.h -------------------------------------------------------------------------------- /libevm/VMOpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libevm/VMOpt.cpp -------------------------------------------------------------------------------- /libevm/VMValidate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libevm/VMValidate.cpp -------------------------------------------------------------------------------- /libevmcore/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libevmcore/CMakeLists.txt -------------------------------------------------------------------------------- /libevmcore/EVMSchedule.cpp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libevmcore/EVMSchedule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libevmcore/EVMSchedule.h -------------------------------------------------------------------------------- /libevmcore/Exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libevmcore/Exceptions.h -------------------------------------------------------------------------------- /libevmcore/Instruction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libevmcore/Instruction.cpp -------------------------------------------------------------------------------- /libevmcore/Instruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libevmcore/Instruction.h -------------------------------------------------------------------------------- /libodbc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/CMakeLists.txt -------------------------------------------------------------------------------- /libodbc/LMysql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/LMysql.cpp -------------------------------------------------------------------------------- /libodbc/LMysql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/LMysql.h -------------------------------------------------------------------------------- /libodbc/LOracle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/LOracle.cpp -------------------------------------------------------------------------------- /libodbc/LOracle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/LOracle.h -------------------------------------------------------------------------------- /libodbc/LvlDbInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/LvlDbInterface.cpp -------------------------------------------------------------------------------- /libodbc/LvlDbInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/LvlDbInterface.h -------------------------------------------------------------------------------- /libodbc/include/SQLAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/SQLAPI.h -------------------------------------------------------------------------------- /libodbc/include/db2API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/db2API.h -------------------------------------------------------------------------------- /libodbc/include/db2_linux/sql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/db2_linux/sql.h -------------------------------------------------------------------------------- /libodbc/include/db2_linux/sqlca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/db2_linux/sqlca.h -------------------------------------------------------------------------------- /libodbc/include/db2_linux/sqlcli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/db2_linux/sqlcli.h -------------------------------------------------------------------------------- /libodbc/include/db2_linux/sqlcli1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/db2_linux/sqlcli1.h -------------------------------------------------------------------------------- /libodbc/include/db2_linux/sqlext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/db2_linux/sqlext.h -------------------------------------------------------------------------------- /libodbc/include/db2_linux/sqlsystm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/db2_linux/sqlsystm.h -------------------------------------------------------------------------------- /libodbc/include/ibAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ibAPI.h -------------------------------------------------------------------------------- /libodbc/include/ibase/ib_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ibase/ib_util.h -------------------------------------------------------------------------------- /libodbc/include/ibase/ibase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ibase/ibase.h -------------------------------------------------------------------------------- /libodbc/include/ibase/iberror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ibase/iberror.h -------------------------------------------------------------------------------- /libodbc/include/infAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/infAPI.h -------------------------------------------------------------------------------- /libodbc/include/informix/infxcli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/informix/infxcli.h -------------------------------------------------------------------------------- /libodbc/include/informix/infxsql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/informix/infxsql.h -------------------------------------------------------------------------------- /libodbc/include/informix/sqlext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/informix/sqlext.h -------------------------------------------------------------------------------- /libodbc/include/myAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/myAPI.h -------------------------------------------------------------------------------- /libodbc/include/mysql/errmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/mysql/errmsg.h -------------------------------------------------------------------------------- /libodbc/include/mysql/my_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/mysql/my_alloc.h -------------------------------------------------------------------------------- /libodbc/include/mysql/my_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/mysql/my_list.h -------------------------------------------------------------------------------- /libodbc/include/mysql/mysql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/mysql/mysql.h -------------------------------------------------------------------------------- /libodbc/include/mysql/mysql_com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/mysql/mysql_com.h -------------------------------------------------------------------------------- /libodbc/include/mysql/mysql_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/mysql/mysql_time.h -------------------------------------------------------------------------------- /libodbc/include/mysql/mysql_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/mysql/mysql_version.h -------------------------------------------------------------------------------- /libodbc/include/mysql/typelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/mysql/typelib.h -------------------------------------------------------------------------------- /libodbc/include/odbcAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/odbcAPI.h -------------------------------------------------------------------------------- /libodbc/include/odbc_linux/iodbcext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/odbc_linux/iodbcext.h -------------------------------------------------------------------------------- /libodbc/include/odbc_linux/iodbcinst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/odbc_linux/iodbcinst.h -------------------------------------------------------------------------------- /libodbc/include/odbc_linux/iodbcunix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/odbc_linux/iodbcunix.h -------------------------------------------------------------------------------- /libodbc/include/odbc_linux/isql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/odbc_linux/isql.h -------------------------------------------------------------------------------- /libodbc/include/odbc_linux/isqlext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/odbc_linux/isqlext.h -------------------------------------------------------------------------------- /libodbc/include/odbc_linux/isqltypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/odbc_linux/isqltypes.h -------------------------------------------------------------------------------- /libodbc/include/odbc_linux/odbcinst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/odbc_linux/odbcinst.h -------------------------------------------------------------------------------- /libodbc/include/odbc_linux/sql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/odbc_linux/sql.h -------------------------------------------------------------------------------- /libodbc/include/odbc_linux/sqlext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/odbc_linux/sqlext.h -------------------------------------------------------------------------------- /libodbc/include/odbc_linux/sqltypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/odbc_linux/sqltypes.h -------------------------------------------------------------------------------- /libodbc/include/odbc_linux/sqlucode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/odbc_linux/sqlucode.h -------------------------------------------------------------------------------- /libodbc/include/ora7API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ora7API.h -------------------------------------------------------------------------------- /libodbc/include/oraAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/oraAPI.h -------------------------------------------------------------------------------- /libodbc/include/ora_linux/nzerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ora_linux/nzerror.h -------------------------------------------------------------------------------- /libodbc/include/ora_linux/nzt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ora_linux/nzt.h -------------------------------------------------------------------------------- /libodbc/include/ora_linux/occi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ora_linux/occi.h -------------------------------------------------------------------------------- /libodbc/include/ora_linux/occiAQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ora_linux/occiAQ.h -------------------------------------------------------------------------------- /libodbc/include/ora_linux/occiCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ora_linux/occiCommon.h -------------------------------------------------------------------------------- /libodbc/include/ora_linux/occiControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ora_linux/occiControl.h -------------------------------------------------------------------------------- /libodbc/include/ora_linux/occiData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ora_linux/occiData.h -------------------------------------------------------------------------------- /libodbc/include/ora_linux/occiObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ora_linux/occiObjects.h -------------------------------------------------------------------------------- /libodbc/include/ora_linux/oci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ora_linux/oci.h -------------------------------------------------------------------------------- /libodbc/include/ora_linux/oci1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ora_linux/oci1.h -------------------------------------------------------------------------------- /libodbc/include/ora_linux/oci8dp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ora_linux/oci8dp.h -------------------------------------------------------------------------------- /libodbc/include/ora_linux/ociap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ora_linux/ociap.h -------------------------------------------------------------------------------- /libodbc/include/ora_linux/ociapr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ora_linux/ociapr.h -------------------------------------------------------------------------------- /libodbc/include/ora_linux/ocidef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ora_linux/ocidef.h -------------------------------------------------------------------------------- /libodbc/include/ora_linux/ocidem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ora_linux/ocidem.h -------------------------------------------------------------------------------- /libodbc/include/ora_linux/ocidfn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ora_linux/ocidfn.h -------------------------------------------------------------------------------- /libodbc/include/ora_linux/ociextp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ora_linux/ociextp.h -------------------------------------------------------------------------------- /libodbc/include/ora_linux/ocikpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ora_linux/ocikpr.h -------------------------------------------------------------------------------- /libodbc/include/ora_linux/ocixmldb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ora_linux/ocixmldb.h -------------------------------------------------------------------------------- /libodbc/include/ora_linux/odci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ora_linux/odci.h -------------------------------------------------------------------------------- /libodbc/include/ora_linux/oratypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ora_linux/oratypes.h -------------------------------------------------------------------------------- /libodbc/include/ora_linux/ori.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ora_linux/ori.h -------------------------------------------------------------------------------- /libodbc/include/ora_linux/orid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ora_linux/orid.h -------------------------------------------------------------------------------- /libodbc/include/ora_linux/orl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ora_linux/orl.h -------------------------------------------------------------------------------- /libodbc/include/ora_linux/oro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ora_linux/oro.h -------------------------------------------------------------------------------- /libodbc/include/ora_linux/ort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ora_linux/ort.h -------------------------------------------------------------------------------- /libodbc/include/ora_linux/xa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ora_linux/xa.h -------------------------------------------------------------------------------- /libodbc/include/pgAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/pgAPI.h -------------------------------------------------------------------------------- /libodbc/include/pgsql/libpq-fe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/pgsql/libpq-fe.h -------------------------------------------------------------------------------- /libodbc/include/pgsql/libpq-fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/pgsql/libpq-fs.h -------------------------------------------------------------------------------- /libodbc/include/pgsql/postgres_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/pgsql/postgres_ext.h -------------------------------------------------------------------------------- /libodbc/include/samisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/samisc.h -------------------------------------------------------------------------------- /libodbc/include/sbAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/sbAPI.h -------------------------------------------------------------------------------- /libodbc/include/sl3API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/sl3API.h -------------------------------------------------------------------------------- /libodbc/include/sqlbase/sql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/sqlbase/sql.h -------------------------------------------------------------------------------- /libodbc/include/sqlite/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/sqlite/sqlite3.h -------------------------------------------------------------------------------- /libodbc/include/ss6API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ss6API.h -------------------------------------------------------------------------------- /libodbc/include/ssNcliAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ssNcliAPI.h -------------------------------------------------------------------------------- /libodbc/include/ssOleDbAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ssOleDbAPI.h -------------------------------------------------------------------------------- /libodbc/include/ss_linux/msodbcsql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ss_linux/msodbcsql.h -------------------------------------------------------------------------------- /libodbc/include/ss_linux/sql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ss_linux/sql.h -------------------------------------------------------------------------------- /libodbc/include/ss_linux/sqlext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ss_linux/sqlext.h -------------------------------------------------------------------------------- /libodbc/include/ss_linux/sqltypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ss_linux/sqltypes.h -------------------------------------------------------------------------------- /libodbc/include/ss_linux/sqlucode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ss_linux/sqlucode.h -------------------------------------------------------------------------------- /libodbc/include/ss_linux/unixodbc_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ss_linux/unixodbc_conf.h -------------------------------------------------------------------------------- /libodbc/include/ss_linux/uodbc_extras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ss_linux/uodbc_extras.h -------------------------------------------------------------------------------- /libodbc/include/ss_linux/uodbc_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/ss_linux/uodbc_stats.h -------------------------------------------------------------------------------- /libodbc/include/sybAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/sybAPI.h -------------------------------------------------------------------------------- /libodbc/include/sybase/bkpublic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/sybase/bkpublic.h -------------------------------------------------------------------------------- /libodbc/include/sybase/csconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/sybase/csconfig.h -------------------------------------------------------------------------------- /libodbc/include/sybase/cspublic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/sybase/cspublic.h -------------------------------------------------------------------------------- /libodbc/include/sybase/cstypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/sybase/cstypes.h -------------------------------------------------------------------------------- /libodbc/include/sybase/ctpublic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/sybase/ctpublic.h -------------------------------------------------------------------------------- /libodbc/include/sybase/sqlca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/sybase/sqlca.h -------------------------------------------------------------------------------- /libodbc/include/sybase/sqlda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libodbc/include/sybase/sqlda.h -------------------------------------------------------------------------------- /libp2p/All.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/All.h -------------------------------------------------------------------------------- /libp2p/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/CMakeLists.txt -------------------------------------------------------------------------------- /libp2p/Capability.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/Capability.cpp -------------------------------------------------------------------------------- /libp2p/Capability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/Capability.h -------------------------------------------------------------------------------- /libp2p/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/Common.cpp -------------------------------------------------------------------------------- /libp2p/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/Common.h -------------------------------------------------------------------------------- /libp2p/HandshakeCAData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/HandshakeCAData.cpp -------------------------------------------------------------------------------- /libp2p/HandshakeCAData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/HandshakeCAData.h -------------------------------------------------------------------------------- /libp2p/HandshakeWBCAData.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libp2p/HandshakeWBCAData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/HandshakeWBCAData.h -------------------------------------------------------------------------------- /libp2p/Host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/Host.cpp -------------------------------------------------------------------------------- /libp2p/Host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/Host.h -------------------------------------------------------------------------------- /libp2p/HostCapability.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/HostCapability.cpp -------------------------------------------------------------------------------- /libp2p/HostCapability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/HostCapability.h -------------------------------------------------------------------------------- /libp2p/Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/Network.cpp -------------------------------------------------------------------------------- /libp2p/Network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/Network.h -------------------------------------------------------------------------------- /libp2p/NodeTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/NodeTable.cpp -------------------------------------------------------------------------------- /libp2p/NodeTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/NodeTable.h -------------------------------------------------------------------------------- /libp2p/Peer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/Peer.cpp -------------------------------------------------------------------------------- /libp2p/Peer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/Peer.h -------------------------------------------------------------------------------- /libp2p/RLPXFrameCoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/RLPXFrameCoder.cpp -------------------------------------------------------------------------------- /libp2p/RLPXFrameCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/RLPXFrameCoder.h -------------------------------------------------------------------------------- /libp2p/RLPXFrameReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/RLPXFrameReader.cpp -------------------------------------------------------------------------------- /libp2p/RLPXFrameReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/RLPXFrameReader.h -------------------------------------------------------------------------------- /libp2p/RLPXFrameWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/RLPXFrameWriter.cpp -------------------------------------------------------------------------------- /libp2p/RLPXFrameWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/RLPXFrameWriter.h -------------------------------------------------------------------------------- /libp2p/RLPXPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/RLPXPacket.h -------------------------------------------------------------------------------- /libp2p/RLPXSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/RLPXSocket.h -------------------------------------------------------------------------------- /libp2p/RLPXSocketIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/RLPXSocketIO.cpp -------------------------------------------------------------------------------- /libp2p/RLPXSocketIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/RLPXSocketIO.h -------------------------------------------------------------------------------- /libp2p/RLPxHandshake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/RLPxHandshake.cpp -------------------------------------------------------------------------------- /libp2p/RLPxHandshake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/RLPxHandshake.h -------------------------------------------------------------------------------- /libp2p/Session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/Session.cpp -------------------------------------------------------------------------------- /libp2p/Session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/Session.h -------------------------------------------------------------------------------- /libp2p/SessionCAData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/SessionCAData.cpp -------------------------------------------------------------------------------- /libp2p/SessionCAData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/SessionCAData.h -------------------------------------------------------------------------------- /libp2p/SessionWBCAData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/SessionWBCAData.cpp -------------------------------------------------------------------------------- /libp2p/SessionWBCAData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/SessionWBCAData.h -------------------------------------------------------------------------------- /libp2p/UDP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/UDP.cpp -------------------------------------------------------------------------------- /libp2p/UDP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/UDP.h -------------------------------------------------------------------------------- /libp2p/UPnP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/UPnP.cpp -------------------------------------------------------------------------------- /libp2p/UPnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libp2p/UPnP.h -------------------------------------------------------------------------------- /libpaillier/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libpaillier/CMakeLists.txt -------------------------------------------------------------------------------- /libpaillier/bn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libpaillier/bn.c -------------------------------------------------------------------------------- /libpaillier/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libpaillier/bn.h -------------------------------------------------------------------------------- /libpaillier/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libpaillier/common.c -------------------------------------------------------------------------------- /libpaillier/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libpaillier/common.h -------------------------------------------------------------------------------- /libpaillier/macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libpaillier/macro.h -------------------------------------------------------------------------------- /libpaillier/paillier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libpaillier/paillier.c -------------------------------------------------------------------------------- /libpaillier/paillier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libpaillier/paillier.h -------------------------------------------------------------------------------- /libpaillier/typedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libpaillier/typedef.h -------------------------------------------------------------------------------- /libpbftseal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libpbftseal/CMakeLists.txt -------------------------------------------------------------------------------- /libpbftseal/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libpbftseal/Common.cpp -------------------------------------------------------------------------------- /libpbftseal/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libpbftseal/Common.h -------------------------------------------------------------------------------- /libpbftseal/PBFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libpbftseal/PBFT.cpp -------------------------------------------------------------------------------- /libpbftseal/PBFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libpbftseal/PBFT.h -------------------------------------------------------------------------------- /libpbftseal/PBFTClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libpbftseal/PBFTClient.cpp -------------------------------------------------------------------------------- /libpbftseal/PBFTClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libpbftseal/PBFTClient.h -------------------------------------------------------------------------------- /libpbftseal/PBFTHost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libpbftseal/PBFTHost.cpp -------------------------------------------------------------------------------- /libpbftseal/PBFTHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libpbftseal/PBFTHost.h -------------------------------------------------------------------------------- /libpbftseal/PBFTPeer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libpbftseal/PBFTPeer.cpp -------------------------------------------------------------------------------- /libpbftseal/PBFTPeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libpbftseal/PBFTPeer.h -------------------------------------------------------------------------------- /libraftseal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libraftseal/CMakeLists.txt -------------------------------------------------------------------------------- /libraftseal/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libraftseal/Common.h -------------------------------------------------------------------------------- /libraftseal/Raft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libraftseal/Raft.cpp -------------------------------------------------------------------------------- /libraftseal/Raft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libraftseal/Raft.h -------------------------------------------------------------------------------- /libraftseal/RaftClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libraftseal/RaftClient.cpp -------------------------------------------------------------------------------- /libraftseal/RaftClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libraftseal/RaftClient.h -------------------------------------------------------------------------------- /libraftseal/RaftHost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libraftseal/RaftHost.cpp -------------------------------------------------------------------------------- /libraftseal/RaftHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libraftseal/RaftHost.h -------------------------------------------------------------------------------- /libraftseal/RaftPeer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libraftseal/RaftPeer.cpp -------------------------------------------------------------------------------- /libraftseal/RaftPeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libraftseal/RaftPeer.h -------------------------------------------------------------------------------- /libraftseal/RaftSealEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libraftseal/RaftSealEngine.cpp -------------------------------------------------------------------------------- /libraftseal/RaftSealEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libraftseal/RaftSealEngine.h -------------------------------------------------------------------------------- /libsinglepoint/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libsinglepoint/CMakeLists.txt -------------------------------------------------------------------------------- /libsinglepoint/SinglePoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libsinglepoint/SinglePoint.cpp -------------------------------------------------------------------------------- /libsinglepoint/SinglePoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libsinglepoint/SinglePoint.h -------------------------------------------------------------------------------- /libsinglepoint/SinglePointClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libsinglepoint/SinglePointClient.cpp -------------------------------------------------------------------------------- /libsinglepoint/SinglePointClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libsinglepoint/SinglePointClient.h -------------------------------------------------------------------------------- /libweb3jsonrpc/AccountHolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/AccountHolder.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/AccountHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/AccountHolder.h -------------------------------------------------------------------------------- /libweb3jsonrpc/AdminEth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/AdminEth.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/AdminEth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/AdminEth.h -------------------------------------------------------------------------------- /libweb3jsonrpc/AdminEthFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/AdminEthFace.h -------------------------------------------------------------------------------- /libweb3jsonrpc/AdminNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/AdminNet.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/AdminNet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/AdminNet.h -------------------------------------------------------------------------------- /libweb3jsonrpc/AdminNetFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/AdminNetFace.h -------------------------------------------------------------------------------- /libweb3jsonrpc/AdminUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/AdminUtils.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/AdminUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/AdminUtils.h -------------------------------------------------------------------------------- /libweb3jsonrpc/AdminUtilsFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/AdminUtilsFace.h -------------------------------------------------------------------------------- /libweb3jsonrpc/Bzz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/Bzz.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/Bzz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/Bzz.h -------------------------------------------------------------------------------- /libweb3jsonrpc/BzzFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/BzzFace.h -------------------------------------------------------------------------------- /libweb3jsonrpc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/CMakeLists.txt -------------------------------------------------------------------------------- /libweb3jsonrpc/DBFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/DBFace.h -------------------------------------------------------------------------------- /libweb3jsonrpc/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/Debug.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/Debug.h -------------------------------------------------------------------------------- /libweb3jsonrpc/DebugFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/DebugFace.h -------------------------------------------------------------------------------- /libweb3jsonrpc/Eth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/Eth.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/Eth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/Eth.h -------------------------------------------------------------------------------- /libweb3jsonrpc/EthFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/EthFace.h -------------------------------------------------------------------------------- /libweb3jsonrpc/IpcServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/IpcServer.h -------------------------------------------------------------------------------- /libweb3jsonrpc/IpcServerBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/IpcServerBase.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/IpcServerBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/IpcServerBase.h -------------------------------------------------------------------------------- /libweb3jsonrpc/JsonHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/JsonHelper.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/JsonHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/JsonHelper.h -------------------------------------------------------------------------------- /libweb3jsonrpc/LevelDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/LevelDB.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/LevelDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/LevelDB.h -------------------------------------------------------------------------------- /libweb3jsonrpc/MemoryDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/MemoryDB.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/MemoryDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/MemoryDB.h -------------------------------------------------------------------------------- /libweb3jsonrpc/ModularServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/ModularServer.h -------------------------------------------------------------------------------- /libweb3jsonrpc/Net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/Net.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/Net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/Net.h -------------------------------------------------------------------------------- /libweb3jsonrpc/NetFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/NetFace.h -------------------------------------------------------------------------------- /libweb3jsonrpc/Personal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/Personal.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/Personal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/Personal.h -------------------------------------------------------------------------------- /libweb3jsonrpc/PersonalFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/PersonalFace.h -------------------------------------------------------------------------------- /libweb3jsonrpc/SafeHttpServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/SafeHttpServer.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/SafeHttpServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/SafeHttpServer.h -------------------------------------------------------------------------------- /libweb3jsonrpc/SessionManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/SessionManager.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/SessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/SessionManager.h -------------------------------------------------------------------------------- /libweb3jsonrpc/Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/Test.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/Test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/Test.h -------------------------------------------------------------------------------- /libweb3jsonrpc/TestFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/TestFace.h -------------------------------------------------------------------------------- /libweb3jsonrpc/UnixSocketServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/UnixSocketServer.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/UnixSocketServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/UnixSocketServer.h -------------------------------------------------------------------------------- /libweb3jsonrpc/Web3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/Web3.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/Web3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/Web3.h -------------------------------------------------------------------------------- /libweb3jsonrpc/Web3Face.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/Web3Face.h -------------------------------------------------------------------------------- /libweb3jsonrpc/Whisper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/Whisper.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/Whisper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/Whisper.h -------------------------------------------------------------------------------- /libweb3jsonrpc/WhisperFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/WhisperFace.h -------------------------------------------------------------------------------- /libweb3jsonrpc/WinPipeServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/WinPipeServer.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/WinPipeServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/WinPipeServer.h -------------------------------------------------------------------------------- /libweb3jsonrpc/admin_eth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/admin_eth.json -------------------------------------------------------------------------------- /libweb3jsonrpc/admin_net.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/admin_net.json -------------------------------------------------------------------------------- /libweb3jsonrpc/admin_utils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/admin_utils.json -------------------------------------------------------------------------------- /libweb3jsonrpc/bzz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/bzz.json -------------------------------------------------------------------------------- /libweb3jsonrpc/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/db.json -------------------------------------------------------------------------------- /libweb3jsonrpc/debug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/debug.json -------------------------------------------------------------------------------- /libweb3jsonrpc/dfs/DfsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/dfs/DfsBase.h -------------------------------------------------------------------------------- /libweb3jsonrpc/dfs/DfsCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/dfs/DfsCommon.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/dfs/DfsCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/dfs/DfsCommon.h -------------------------------------------------------------------------------- /libweb3jsonrpc/dfs/DfsCommonClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/dfs/DfsCommonClient.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/dfs/DfsCommonClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/dfs/DfsCommonClient.h -------------------------------------------------------------------------------- /libweb3jsonrpc/dfs/DfsConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/dfs/DfsConst.h -------------------------------------------------------------------------------- /libweb3jsonrpc/dfs/DfsContractCaller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/dfs/DfsContractCaller.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/dfs/DfsContractCaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/dfs/DfsContractCaller.h -------------------------------------------------------------------------------- /libweb3jsonrpc/dfs/DfsDownloadClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/dfs/DfsDownloadClient.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/dfs/DfsDownloadClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/dfs/DfsDownloadClient.h -------------------------------------------------------------------------------- /libweb3jsonrpc/dfs/DfsDownloadHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/dfs/DfsDownloadHandler.h -------------------------------------------------------------------------------- /libweb3jsonrpc/dfs/DfsFileInfoScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/dfs/DfsFileInfoScanner.h -------------------------------------------------------------------------------- /libweb3jsonrpc/dfs/DfsFileRecorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/dfs/DfsFileRecorder.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/dfs/DfsFileRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/dfs/DfsFileRecorder.h -------------------------------------------------------------------------------- /libweb3jsonrpc/dfs/DfsFileServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/dfs/DfsFileServer.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/dfs/DfsFileServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/dfs/DfsFileServer.h -------------------------------------------------------------------------------- /libweb3jsonrpc/dfs/DfsHttpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/dfs/DfsHttpClient.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/dfs/DfsHttpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/dfs/DfsHttpClient.h -------------------------------------------------------------------------------- /libweb3jsonrpc/dfs/DfsJsonUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/dfs/DfsJsonUtils.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/dfs/DfsJsonUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/dfs/DfsJsonUtils.h -------------------------------------------------------------------------------- /libweb3jsonrpc/dfs/DfsMd5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/dfs/DfsMd5.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/dfs/DfsMd5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/dfs/DfsMd5.h -------------------------------------------------------------------------------- /libweb3jsonrpc/dfs/DfsUploadHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/dfs/DfsUploadHandler.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/dfs/DfsUploadHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/dfs/DfsUploadHandler.h -------------------------------------------------------------------------------- /libweb3jsonrpc/dfs/IUrlHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/dfs/IUrlHandler.cpp -------------------------------------------------------------------------------- /libweb3jsonrpc/dfs/IUrlHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/dfs/IUrlHandler.h -------------------------------------------------------------------------------- /libweb3jsonrpc/dfs/json_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/dfs/json_format.txt -------------------------------------------------------------------------------- /libweb3jsonrpc/eth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/eth.json -------------------------------------------------------------------------------- /libweb3jsonrpc/net.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/net.json -------------------------------------------------------------------------------- /libweb3jsonrpc/personal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/personal.json -------------------------------------------------------------------------------- /libweb3jsonrpc/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/test.json -------------------------------------------------------------------------------- /libweb3jsonrpc/web3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/web3.json -------------------------------------------------------------------------------- /libweb3jsonrpc/whisper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libweb3jsonrpc/whisper.json -------------------------------------------------------------------------------- /libwebthree/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libwebthree/CMakeLists.txt -------------------------------------------------------------------------------- /libwebthree/IPFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libwebthree/IPFS.cpp -------------------------------------------------------------------------------- /libwebthree/IPFS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libwebthree/IPFS.h -------------------------------------------------------------------------------- /libwebthree/Support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libwebthree/Support.cpp -------------------------------------------------------------------------------- /libwebthree/Support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libwebthree/Support.h -------------------------------------------------------------------------------- /libwebthree/Swarm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libwebthree/Swarm.cpp -------------------------------------------------------------------------------- /libwebthree/Swarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libwebthree/Swarm.h -------------------------------------------------------------------------------- /libwebthree/SystemManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libwebthree/SystemManager.cpp -------------------------------------------------------------------------------- /libwebthree/SystemManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libwebthree/SystemManager.h -------------------------------------------------------------------------------- /libwebthree/WebThree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libwebthree/WebThree.cpp -------------------------------------------------------------------------------- /libwebthree/WebThree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libwebthree/WebThree.h -------------------------------------------------------------------------------- /libwebthree/libexecstream/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libwebthree/libexecstream/README -------------------------------------------------------------------------------- /libwebthree/libexecstream/exec-stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libwebthree/libexecstream/exec-stream.h -------------------------------------------------------------------------------- /libwhisper/BloomFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libwhisper/BloomFilter.h -------------------------------------------------------------------------------- /libwhisper/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libwhisper/CMakeLists.txt -------------------------------------------------------------------------------- /libwhisper/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libwhisper/Common.cpp -------------------------------------------------------------------------------- /libwhisper/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libwhisper/Common.h -------------------------------------------------------------------------------- /libwhisper/Interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libwhisper/Interface.cpp -------------------------------------------------------------------------------- /libwhisper/Interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libwhisper/Interface.h -------------------------------------------------------------------------------- /libwhisper/Message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libwhisper/Message.cpp -------------------------------------------------------------------------------- /libwhisper/Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libwhisper/Message.h -------------------------------------------------------------------------------- /libwhisper/WhisperDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libwhisper/WhisperDB.cpp -------------------------------------------------------------------------------- /libwhisper/WhisperDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libwhisper/WhisperDB.h -------------------------------------------------------------------------------- /libwhisper/WhisperHost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libwhisper/WhisperHost.cpp -------------------------------------------------------------------------------- /libwhisper/WhisperHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libwhisper/WhisperHost.h -------------------------------------------------------------------------------- /libwhisper/WhisperPeer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libwhisper/WhisperPeer.cpp -------------------------------------------------------------------------------- /libwhisper/WhisperPeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/libwhisper/WhisperPeer.h -------------------------------------------------------------------------------- /log.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/log.conf -------------------------------------------------------------------------------- /refilltests: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample/config.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/sample/config.json.template -------------------------------------------------------------------------------- /sample/genesis.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/sample/genesis.json.template -------------------------------------------------------------------------------- /sample/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/sample/init.js -------------------------------------------------------------------------------- /sample/log.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/sample/log.conf.template -------------------------------------------------------------------------------- /sample/node0.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/sample/node0.sample -------------------------------------------------------------------------------- /sample/node1.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/sample/node1.sample -------------------------------------------------------------------------------- /sample/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/sample/run.sh -------------------------------------------------------------------------------- /sample/start.sh.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/sample/start.sh.template -------------------------------------------------------------------------------- /sanitizer-blacklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/sanitizer-blacklist.txt -------------------------------------------------------------------------------- /scripts/duplicates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/scripts/duplicates.sh -------------------------------------------------------------------------------- /scripts/install_cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/scripts/install_cmake.sh -------------------------------------------------------------------------------- /scripts/install_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/scripts/install_deps.sh -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/start.sh -------------------------------------------------------------------------------- /systemcontractv2/.babelrc: -------------------------------------------------------------------------------- 1 | { "presets": ["es2017"] } 2 | -------------------------------------------------------------------------------- /systemcontractv2/Authority.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/Authority.sol -------------------------------------------------------------------------------- /systemcontractv2/AuthorityFilter.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/AuthorityFilter.sol -------------------------------------------------------------------------------- /systemcontractv2/Base.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/Base.sol -------------------------------------------------------------------------------- /systemcontractv2/CAAction.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/CAAction.sol -------------------------------------------------------------------------------- /systemcontractv2/ConfigAction.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/ConfigAction.sol -------------------------------------------------------------------------------- /systemcontractv2/FileInfoManager.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/FileInfoManager.sol -------------------------------------------------------------------------------- /systemcontractv2/FileServerManager.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/FileServerManager.sol -------------------------------------------------------------------------------- /systemcontractv2/Group.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/Group.sol -------------------------------------------------------------------------------- /systemcontractv2/LibFile.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/LibFile.sol -------------------------------------------------------------------------------- /systemcontractv2/LibFileServer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/LibFileServer.sol -------------------------------------------------------------------------------- /systemcontractv2/LibInt.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/LibInt.sol -------------------------------------------------------------------------------- /systemcontractv2/LibPaillier.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/LibPaillier.sol -------------------------------------------------------------------------------- /systemcontractv2/LibString.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/LibString.sol -------------------------------------------------------------------------------- /systemcontractv2/NodeAction.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/NodeAction.sol -------------------------------------------------------------------------------- /systemcontractv2/OwnerNamed.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/OwnerNamed.sol -------------------------------------------------------------------------------- /systemcontractv2/StringTool.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/StringTool.sol -------------------------------------------------------------------------------- /systemcontractv2/SystemProxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/SystemProxy.sol -------------------------------------------------------------------------------- /systemcontractv2/ca1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/ca1.json -------------------------------------------------------------------------------- /systemcontractv2/codeUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/codeUtils.js -------------------------------------------------------------------------------- /systemcontractv2/compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/compile.js -------------------------------------------------------------------------------- /systemcontractv2/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/config.js -------------------------------------------------------------------------------- /systemcontractv2/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/deploy.js -------------------------------------------------------------------------------- /systemcontractv2/init_deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/init_deploy.js -------------------------------------------------------------------------------- /systemcontractv2/monitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/monitor.js -------------------------------------------------------------------------------- /systemcontractv2/node1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/node1.json -------------------------------------------------------------------------------- /systemcontractv2/node2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/node2.json -------------------------------------------------------------------------------- /systemcontractv2/node3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/node3.json -------------------------------------------------------------------------------- /systemcontractv2/node4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/node4.json -------------------------------------------------------------------------------- /systemcontractv2/output/Authority.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/output/Authority.abi -------------------------------------------------------------------------------- /systemcontractv2/output/Authority.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/output/Authority.bin -------------------------------------------------------------------------------- /systemcontractv2/output/Base.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/output/Base.abi -------------------------------------------------------------------------------- /systemcontractv2/output/Base.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/output/Base.bin -------------------------------------------------------------------------------- /systemcontractv2/output/CAAction.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/output/CAAction.abi -------------------------------------------------------------------------------- /systemcontractv2/output/CAAction.address: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/output/CAAction.address -------------------------------------------------------------------------------- /systemcontractv2/output/CAAction.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/output/CAAction.bin -------------------------------------------------------------------------------- /systemcontractv2/output/ConfigAction.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/output/ConfigAction.abi -------------------------------------------------------------------------------- /systemcontractv2/output/ConfigAction.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/output/ConfigAction.bin -------------------------------------------------------------------------------- /systemcontractv2/output/FileInfoManager.address: -------------------------------------------------------------------------------- 1 | 0xd26fca0d2f46eaf42e78aadeab91f73f081d12f4 -------------------------------------------------------------------------------- /systemcontractv2/output/Group.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/output/Group.abi -------------------------------------------------------------------------------- /systemcontractv2/output/Group.address: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/output/Group.address -------------------------------------------------------------------------------- /systemcontractv2/output/Group.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/output/Group.bin -------------------------------------------------------------------------------- /systemcontractv2/output/LibFile.abi: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /systemcontractv2/output/LibFile.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/output/LibFile.bin -------------------------------------------------------------------------------- /systemcontractv2/output/LibFileServer.abi: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /systemcontractv2/output/LibInt.abi: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /systemcontractv2/output/LibInt.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/output/LibInt.bin -------------------------------------------------------------------------------- /systemcontractv2/output/LibString.abi: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /systemcontractv2/output/LibString.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/output/LibString.bin -------------------------------------------------------------------------------- /systemcontractv2/output/NodeAction.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/output/NodeAction.abi -------------------------------------------------------------------------------- /systemcontractv2/output/NodeAction.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/output/NodeAction.bin -------------------------------------------------------------------------------- /systemcontractv2/output/OwnerNamed.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/output/OwnerNamed.abi -------------------------------------------------------------------------------- /systemcontractv2/output/OwnerNamed.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/output/OwnerNamed.bin -------------------------------------------------------------------------------- /systemcontractv2/output/StringTool.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/output/StringTool.abi -------------------------------------------------------------------------------- /systemcontractv2/output/StringTool.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/output/StringTool.bin -------------------------------------------------------------------------------- /systemcontractv2/output/SystemProxy.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/output/SystemProxy.abi -------------------------------------------------------------------------------- /systemcontractv2/output/SystemProxy.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/output/SystemProxy.bin -------------------------------------------------------------------------------- /systemcontractv2/output/TransactionFilterBase.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /systemcontractv2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/package.json -------------------------------------------------------------------------------- /systemcontractv2/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/post.js -------------------------------------------------------------------------------- /systemcontractv2/readme.txt: -------------------------------------------------------------------------------- 1 | npm install 2 | -------------------------------------------------------------------------------- /systemcontractv2/sha3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/sha3.js -------------------------------------------------------------------------------- /systemcontractv2/tool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/tool.js -------------------------------------------------------------------------------- /systemcontractv2/web3sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/systemcontractv2/web3sync.js -------------------------------------------------------------------------------- /tool/.babelrc: -------------------------------------------------------------------------------- 1 | { "presets": ["es2017"] } 2 | -------------------------------------------------------------------------------- /tool/HelloWorld.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/HelloWorld.sol -------------------------------------------------------------------------------- /tool/LibInt.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/LibInt.sol -------------------------------------------------------------------------------- /tool/LibPaillier.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/LibPaillier.sol -------------------------------------------------------------------------------- /tool/LibString.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/LibString.sol -------------------------------------------------------------------------------- /tool/Ok.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/Ok.sol -------------------------------------------------------------------------------- /tool/TestPaillier.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/TestPaillier.sol -------------------------------------------------------------------------------- /tool/Testout.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/Testout.sol -------------------------------------------------------------------------------- /tool/ViewChangeCheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/ViewChangeCheck.js -------------------------------------------------------------------------------- /tool/accountCheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/accountCheck.js -------------------------------------------------------------------------------- /tool/accountManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/accountManager.js -------------------------------------------------------------------------------- /tool/codeUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/codeUtils.js -------------------------------------------------------------------------------- /tool/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/config.js -------------------------------------------------------------------------------- /tool/demoHelloWorld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/demoHelloWorld.js -------------------------------------------------------------------------------- /tool/demoOk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/demoOk.js -------------------------------------------------------------------------------- /tool/demoTestPaillie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/demoTestPaillie.js -------------------------------------------------------------------------------- /tool/demoTestout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/demoTestout.js -------------------------------------------------------------------------------- /tool/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/deploy.js -------------------------------------------------------------------------------- /tool/java/DfsSDK/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/DfsSDK/.classpath -------------------------------------------------------------------------------- /tool/java/DfsSDK/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/DfsSDK/.project -------------------------------------------------------------------------------- /tool/java/DfsSDK/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tool/java/DfsSDK/lib/asm-5.0.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/DfsSDK/lib/asm-5.0.3.jar -------------------------------------------------------------------------------- /tool/java/DfsSDK/lib/asm-tree-5.0.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/DfsSDK/lib/asm-tree-5.0.3.jar -------------------------------------------------------------------------------- /tool/java/DfsSDK/lib/asm-util-5.0.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/DfsSDK/lib/asm-util-5.0.3.jar -------------------------------------------------------------------------------- /tool/java/DfsSDK/lib/commons-io-2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/DfsSDK/lib/commons-io-2.5.jar -------------------------------------------------------------------------------- /tool/java/DfsSDK/lib/fastjson-1.2.25.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/DfsSDK/lib/fastjson-1.2.25.jar -------------------------------------------------------------------------------- /tool/java/DfsSDK/lib/httpcore-4.4.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/DfsSDK/lib/httpcore-4.4.4.jar -------------------------------------------------------------------------------- /tool/java/DfsSDK/lib/httpmime-4.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/DfsSDK/lib/httpmime-4.3.1.jar -------------------------------------------------------------------------------- /tool/java/DfsSDK/lib/javapoet-1.7.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/DfsSDK/lib/javapoet-1.7.0.jar -------------------------------------------------------------------------------- /tool/java/DfsSDK/lib/jffi-1.2.14.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/DfsSDK/lib/jffi-1.2.14.jar -------------------------------------------------------------------------------- /tool/java/DfsSDK/lib/jnr-enxio-0.14.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/DfsSDK/lib/jnr-enxio-0.14.jar -------------------------------------------------------------------------------- /tool/java/DfsSDK/lib/jnr-ffi-2.1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/DfsSDK/lib/jnr-ffi-2.1.2.jar -------------------------------------------------------------------------------- /tool/java/DfsSDK/lib/rxjava-1.2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/DfsSDK/lib/rxjava-1.2.4.jar -------------------------------------------------------------------------------- /tool/java/DfsSDK/lib/scrypt-1.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/DfsSDK/lib/scrypt-1.4.0.jar -------------------------------------------------------------------------------- /tool/java/DfsSample/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/DfsSample/.classpath -------------------------------------------------------------------------------- /tool/java/DfsSample/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/DfsSample/.project -------------------------------------------------------------------------------- /tool/java/DfsSample/lib/DfsSDK.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/DfsSample/lib/DfsSDK.jar -------------------------------------------------------------------------------- /tool/java/DfsSample/lib/asm-5.0.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/DfsSample/lib/asm-5.0.3.jar -------------------------------------------------------------------------------- /tool/java/DfsSample/lib/jffi-1.2.14.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/DfsSample/lib/jffi-1.2.14.jar -------------------------------------------------------------------------------- /tool/java/DfsSample/lib/rxjava-1.2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/DfsSample/lib/rxjava-1.2.4.jar -------------------------------------------------------------------------------- /tool/java/DfsSample/lib/scrypt-1.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/DfsSample/lib/scrypt-1.4.0.jar -------------------------------------------------------------------------------- /tool/java/Paillier/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/Paillier/.classpath -------------------------------------------------------------------------------- /tool/java/Paillier/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /tool/java/Paillier/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/Paillier/.project -------------------------------------------------------------------------------- /tool/java/Paillier/javascript/asn1hex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/Paillier/javascript/asn1hex.js -------------------------------------------------------------------------------- /tool/java/Paillier/javascript/base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/Paillier/javascript/base64.js -------------------------------------------------------------------------------- /tool/java/Paillier/javascript/jsbn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/Paillier/javascript/jsbn.js -------------------------------------------------------------------------------- /tool/java/Paillier/javascript/rng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/Paillier/javascript/rng.js -------------------------------------------------------------------------------- /tool/java/Paillier/javascript/rsa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/Paillier/javascript/rsa.js -------------------------------------------------------------------------------- /tool/java/Paillier/javascript/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/Paillier/javascript/test.html -------------------------------------------------------------------------------- /tool/java/Paillier/paillier/asn1hex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/Paillier/paillier/asn1hex.js -------------------------------------------------------------------------------- /tool/java/Paillier/paillier/base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/Paillier/paillier/base64.js -------------------------------------------------------------------------------- /tool/java/Paillier/paillier/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/Paillier/paillier/test.html -------------------------------------------------------------------------------- /tool/java/output/DfsSDK.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/output/DfsSDK.jar -------------------------------------------------------------------------------- /tool/java/output/web3j-2.1.0_main.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/output/web3j-2.1.0_main.jar -------------------------------------------------------------------------------- /tool/java/third-jars/asm-5.0.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/third-jars/asm-5.0.3.jar -------------------------------------------------------------------------------- /tool/java/third-jars/asm-tree-5.0.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/third-jars/asm-tree-5.0.3.jar -------------------------------------------------------------------------------- /tool/java/third-jars/asm-util-5.0.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/third-jars/asm-util-5.0.3.jar -------------------------------------------------------------------------------- /tool/java/third-jars/commons-io-2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/third-jars/commons-io-2.5.jar -------------------------------------------------------------------------------- /tool/java/third-jars/fastjson-1.2.25.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/third-jars/fastjson-1.2.25.jar -------------------------------------------------------------------------------- /tool/java/third-jars/httpcore-4.4.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/third-jars/httpcore-4.4.4.jar -------------------------------------------------------------------------------- /tool/java/third-jars/httpmime-4.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/third-jars/httpmime-4.3.1.jar -------------------------------------------------------------------------------- /tool/java/third-jars/javapoet-1.7.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/third-jars/javapoet-1.7.0.jar -------------------------------------------------------------------------------- /tool/java/third-jars/jffi-1.2.14.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/third-jars/jffi-1.2.14.jar -------------------------------------------------------------------------------- /tool/java/third-jars/jnr-enxio-0.14.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/third-jars/jnr-enxio-0.14.jar -------------------------------------------------------------------------------- /tool/java/third-jars/jnr-ffi-2.1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/third-jars/jnr-ffi-2.1.2.jar -------------------------------------------------------------------------------- /tool/java/third-jars/rxjava-1.2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/third-jars/rxjava-1.2.4.jar -------------------------------------------------------------------------------- /tool/java/third-jars/scrypt-1.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/third-jars/scrypt-1.4.0.jar -------------------------------------------------------------------------------- /tool/java/web3j-2.1.0-extension/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /tool/java/web3j-2.1.0-extension/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/java/web3j-2.1.0-extension/.project -------------------------------------------------------------------------------- /tool/monitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/monitor.js -------------------------------------------------------------------------------- /tool/output/HelloWorld.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/output/HelloWorld.abi -------------------------------------------------------------------------------- /tool/output/HelloWorld.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/output/HelloWorld.bin -------------------------------------------------------------------------------- /tool/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/package.json -------------------------------------------------------------------------------- /tool/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/post.js -------------------------------------------------------------------------------- /tool/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/readme.txt -------------------------------------------------------------------------------- /tool/sendRawTransaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/sendRawTransaction.js -------------------------------------------------------------------------------- /tool/sendTransaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/sendTransaction.js -------------------------------------------------------------------------------- /tool/sha3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/sha3.js -------------------------------------------------------------------------------- /tool/signTransaction.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tool/solc-static-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/solc-static-linux -------------------------------------------------------------------------------- /tool/solc-static-linux.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/solc-static-linux.1 -------------------------------------------------------------------------------- /tool/transactionManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/transactionManager.js -------------------------------------------------------------------------------- /tool/transactionObject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/transactionObject.js -------------------------------------------------------------------------------- /tool/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/utils.js -------------------------------------------------------------------------------- /tool/web3sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/tool/web3sync.js -------------------------------------------------------------------------------- /utils/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(libscrypt) 2 | -------------------------------------------------------------------------------- /utils/json_spirit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/utils/json_spirit/CMakeLists.txt -------------------------------------------------------------------------------- /utils/json_spirit/JsonSpiritHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/utils/json_spirit/JsonSpiritHeaders.h -------------------------------------------------------------------------------- /utils/json_spirit/json_spirit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/utils/json_spirit/json_spirit.h -------------------------------------------------------------------------------- /utils/json_spirit/json_spirit.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/utils/json_spirit/json_spirit.vcproj -------------------------------------------------------------------------------- /utils/json_spirit/json_spirit_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/utils/json_spirit/json_spirit_reader.cpp -------------------------------------------------------------------------------- /utils/json_spirit/json_spirit_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/utils/json_spirit/json_spirit_reader.h -------------------------------------------------------------------------------- /utils/json_spirit/json_spirit_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/utils/json_spirit/json_spirit_utils.h -------------------------------------------------------------------------------- /utils/json_spirit/json_spirit_value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/utils/json_spirit/json_spirit_value.cpp -------------------------------------------------------------------------------- /utils/json_spirit/json_spirit_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/utils/json_spirit/json_spirit_value.h -------------------------------------------------------------------------------- /utils/json_spirit/json_spirit_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/utils/json_spirit/json_spirit_writer.cpp -------------------------------------------------------------------------------- /utils/json_spirit/json_spirit_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/utils/json_spirit/json_spirit_writer.h -------------------------------------------------------------------------------- /utils/libscrypt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/utils/libscrypt/CMakeLists.txt -------------------------------------------------------------------------------- /utils/libscrypt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/utils/libscrypt/LICENSE -------------------------------------------------------------------------------- /utils/libscrypt/b64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/utils/libscrypt/b64.c -------------------------------------------------------------------------------- /utils/libscrypt/b64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/utils/libscrypt/b64.h -------------------------------------------------------------------------------- /utils/libscrypt/crypto-mcf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/utils/libscrypt/crypto-mcf.c -------------------------------------------------------------------------------- /utils/libscrypt/crypto-scrypt-saltgen.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/libscrypt/crypto_scrypt-check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/utils/libscrypt/crypto_scrypt-check.c -------------------------------------------------------------------------------- /utils/libscrypt/crypto_scrypt-hash.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/libscrypt/crypto_scrypt-nosse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/utils/libscrypt/crypto_scrypt-nosse.c -------------------------------------------------------------------------------- /utils/libscrypt/libscrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/utils/libscrypt/libscrypt.h -------------------------------------------------------------------------------- /utils/libscrypt/libscrypt.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/utils/libscrypt/libscrypt.version -------------------------------------------------------------------------------- /utils/libscrypt/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/utils/libscrypt/sha256.c -------------------------------------------------------------------------------- /utils/libscrypt/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/utils/libscrypt/sha256.h -------------------------------------------------------------------------------- /utils/libscrypt/slowequals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/utils/libscrypt/slowequals.c -------------------------------------------------------------------------------- /utils/libscrypt/slowequals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/utils/libscrypt/slowequals.h -------------------------------------------------------------------------------- /utils/libscrypt/sysendian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcosorg/bcos/HEAD/utils/libscrypt/sysendian.h --------------------------------------------------------------------------------