This is an automated email from the ASF dual-hosted git repository.
junchao pushed a change to branch smart_contract_merge
in repository https://gitbox.apache.org/repos/asf/incubator-resilientdb.git
from 23a3103a merge master
add 3f1bcf39 update state client to obtain the replica state
add 5601a1ec Merge branch 'master' of
https://github.com/ResilientEcosystem/resilientdb
add 95443cd1 add get block numbers
add 9c6a8293 fix get txn bug
add 7d478836 add GetRequestFromReplica interface (#133)
add a6b6bbcf change the script path in start_contract_service.sh
add a145249f Fix incorrect comment intervals in Prometheus config (#135)
add c3953f90 kv-service python api (#136)
add ca0ac0f9 update kv_operation.py route to bazel-out and update readme
(#137)
add 69ef5830 ResView Branch (#138)
add 69069c87 "Fixed issue with data carryover between instances" (#139)
add fe73ffa2 add poe (#140)
add d2225665 Update CHANGELOG.md
add 3037f80e Update CHANGELOG.md (#141)
add 36f38bc7 add disclaimer
add 9123cf95 Fix Bug (#142)
add 1b04ed84 fix apache header
add c4c07264 format
add b6aace2b add apache license check workflow
add 761ce31f add npm in workflow
add b5783d52 add url in notice
add 2f0ae14e Fix Apache License (#143)
add 48adcb93 Merge branch 'master' of
https://github.com/apache/incubator-resilientdb
add 9dc93e9e add thirdparty license
add efce5f30 rm rocksdb
add e92b6af1 fix name error
add 0590e8af mv DISCLAIMER-WIP
add 255df5ba fix typo
add d8b0da0d add version
add f1f330f1 add license in wip
add f0832b73 Update DISCLAIMER-WIP
add fc5559ce Update DISCLAIMER-WIP
add a69c34c2 Update README.md
add af58d7e5 civetweb
add a511fdf7 civetweb
add 1b5b5e39 add civetweb build
add 9bdc6783 Install (#145)
add 8bcaf3d9 Update DISCLAIMER-WIP
add 3243bd2a Add missing ASF headers (#150)
add 71e7dc7a Update .licenserc.yaml (#151)
add ea4116cf Update README.md
add dba221bb Update README.md
add 2dd1b504 Update README.md (#152)
add 39ed0872 Update CHANGELOG.md (#153)
add a0f54bff Update index.js
add 4ac57060 [License]Add the missing license file (#154)
add 9a2b697e Update LICENSE
add 6282b5c1 Minor fixes to the Dockerfile, Entrypoint and Readme (#157)
add c4fffcdc upate
add ab6dfd55 rm cert
add 0d639a6f rm key
add 834f7021 add changelog
add c7178879 rm key
add ed317a72 Update README.md
add 282fe2da Update INSTALL.sh
add 0541fe43 Added external address addition function
add d8ddf673 Use custom Ports (#165)
add 80cb7343 Update README.md
add 9e6f8e6c add bazel version
add df847184 add bazel version
add 98f28fc8 change bazel to 5.0
add 3aa81aec change to 6.0.0
add 208d829c add gcc (#167)
add 3c3e9a2b Fix ut (#168)
add 3d2d9348 add custom path
new 99d20285 merge master
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.bazelversion | 1 +
.github/workflows/build-push.yml | 19 +
.github/workflows/build.yml | 33 +-
.../workflows/license.yml | 28 +-
.github/workflows/loc.yml | 33 +-
.github/workflows/main.yml | 19 +
.github/workflows/ut.yml | 31 +-
.gitignore | 2 +
.licenserc.yaml | 31 +
BUILD.bazel | 19 +
CHANGELOG.md | 35 +
CODE_OF_CONDUCT.md | 19 +
DISCLAIMER-WIP | 22 +
Docker/Dockerfile | 23 +-
Docker/Dockerfile_mac | 19 +
INSTALL.sh | 24 +-
.../ordering/geo_pbft => INSTALL}/README.md | 47 +-
.../bazel/install_bazel.sh | 10 +-
.../protobuf/install_protobuf.sh | 5 +-
INSTALL_MAC.sh | 21 -
LICENSE | 34 +
NOTICE | 3 +-
README.md | 57 +-
WORKSPACE | 43 +-
{benchmark/protocols/poe => api}/BUILD | 25 +-
api/README.md | 66 ++
api/ip_address.config | 1 +
api/kv_operation.py | 46 +
.../pybind_kv_service.cpp | 33 +-
chain/state/BUILD | 18 +
chain/storage/BUILD | 33 +-
chain/storage/kv_storage_test.cpp | 8 +-
chain/storage/proto/BUILD | 28 +-
chain/storage/proto/kv.proto | 19 +
chain/storage/proto/leveldb_config.proto | 19 +
chain/storage/proto/rocksdb_config.proto | 11 -
chain/storage/rocksdb.cpp | 291 -----
chain/storage/rocksdb.h | 80 --
chain/storage/setting/BUILD | 32 +-
common/BUILD | 25 +
common/crypto/BUILD | 19 +
common/crypto/hash.cpp | 34 +-
common/crypto/hash.h | 34 +-
common/crypto/hash_test.cpp | 34 +-
common/crypto/key_generator.cpp | 34 +-
common/crypto/key_generator.h | 34 +-
common/crypto/mock_signature_verifier.h | 34 +-
common/crypto/signature_utils.cpp | 34 +-
common/crypto/signature_utils.h | 34 +-
common/crypto/signature_verifier.cpp | 34 +-
common/crypto/signature_verifier.h | 34 +-
common/crypto/signature_verifier_interface.cpp | 34 +-
common/crypto/signature_verifier_interface.h | 34 +-
common/crypto/signature_verifier_test.cpp | 34 +-
common/proto/BUILD | 18 +
common/proto/signature_info.proto | 19 +
common/test/BUILD | 19 +
common/test/json_test.cpp | 34 +-
common/test/test.proto | 19 +
common/test/test_macros.h | 34 +-
common/utils/BUILD | 18 +
common/utils/utils.cpp | 34 +-
common/utils/utils.h | 34 +-
dev/.rat-excludes | 19 +
dev/check-license | 86 ++
documents/doxygen/DoxygenLayout.xml | 16 +
documents/doxygen/doxygen_html_style.css | 16 +
documents/file/prometheus.yml | 23 +-
entrypoint.sh | 21 +-
executor/common/BUILD | 18 +
executor/contract/executor/BUILD | 18 +
executor/contract/executor/contract_executor.cpp | 6 +
executor/contract/executor/contract_executor.h | 1 +
executor/contract/executor/test_data/BUILD | 18 +
executor/contract/manager/BUILD | 18 +
executor/contract/manager/address_manager.cpp | 4 +
executor/contract/manager/address_manager.h | 2 +-
executor/contract/manager/test_data/BUILD | 18 +
executor/kv/BUILD | 18 +
executor/utxo/executor/BUILD | 18 +
executor/utxo/manager/BUILD | 18 +
interface/common/BUILD | 19 +
interface/common/resdb_state_accessor.cpp | 21 +-
interface/common/resdb_state_accessor.h | 2 +-
interface/common/resdb_state_accessor_test.cpp | 14 +-
interface/common/resdb_txn_accessor.cpp | 41 +
interface/common/resdb_txn_accessor.h | 1 +
interface/common/resdb_txn_accessor_test.cpp | 7 +-
interface/contract/BUILD | 18 +
interface/contract/contract_client.cpp | 13 +
interface/contract/contract_client.h | 1 +
interface/kv/BUILD | 18 +
interface/rdbc/BUILD | 18 +
interface/utxo/BUILD | 18 +
monitoring/README.md | 19 +
monitoring/prometheus/prometheus.yml | 29 +-
node_modules/@actions/core/README.md | 146 ---
node_modules/@actions/core/lib/command.d.ts | 16 -
node_modules/@actions/core/lib/command.js | 78 --
node_modules/@actions/core/lib/command.js.map | 1 -
node_modules/@actions/core/lib/core.d.ts | 116 --
node_modules/@actions/core/lib/core.js | 209 ----
node_modules/@actions/core/lib/core.js.map | 1 -
node_modules/@actions/core/package.json | 67 --
node_modules/badgen/LICENSE.md | 5 -
node_modules/badgen/README.md | 83 --
node_modules/badgen/dist/calc-text-width.d.ts | 1 -
node_modules/badgen/dist/color-presets.d.ts | 14 -
node_modules/badgen/dist/index.d.ts | 19 -
node_modules/badgen/dist/index.js | 2 -
node_modules/badgen/dist/index.js.map | 1 -
node_modules/badgen/package.json | 65 --
node_modules/badgen/tsconfig.json | 18 -
node_modules/balanced-match/.npmignore | 5 -
node_modules/balanced-match/LICENSE.md | 21 -
node_modules/balanced-match/README.md | 91 --
node_modules/balanced-match/index.js | 59 -
node_modules/balanced-match/package.json | 77 --
node_modules/brace-expansion/LICENSE | 21 -
node_modules/brace-expansion/README.md | 129 ---
node_modules/brace-expansion/index.js | 201 ----
node_modules/brace-expansion/package.json | 75 --
node_modules/concat-map/.travis.yml | 4 -
node_modules/concat-map/LICENSE | 18 -
node_modules/concat-map/README.markdown | 62 -
node_modules/concat-map/example/map.js | 6 -
node_modules/concat-map/index.js | 13 -
node_modules/concat-map/package.json | 88 --
node_modules/concat-map/test/map.js | 39 -
node_modules/fs.realpath/LICENSE | 43 -
node_modules/fs.realpath/README.md | 33 -
node_modules/fs.realpath/index.js | 66 --
node_modules/fs.realpath/old.js | 303 -----
node_modules/fs.realpath/package.json | 59 -
node_modules/glob-gitignore/HISTORY.md | 1 -
node_modules/glob-gitignore/LICENSE | 21 -
node_modules/glob-gitignore/README.md | 121 --
node_modules/glob-gitignore/package.json | 85 --
node_modules/glob-gitignore/src/glob.js | 68 --
node_modules/glob-gitignore/src/index.js | 15 -
node_modules/glob-gitignore/src/sync.js | 50 -
node_modules/glob-gitignore/src/util.js | 137 ---
node_modules/glob/LICENSE | 21 -
node_modules/glob/README.md | 375 -------
node_modules/glob/changelog.md | 67 --
node_modules/glob/common.js | 240 ----
node_modules/glob/glob.js | 790 -------------
node_modules/glob/package.json | 80 --
node_modules/glob/sync.js | 486 --------
node_modules/ignore/CHANGELOG.md | 32 -
node_modules/ignore/LICENSE-MIT | 21 -
node_modules/ignore/README.md | 386 -------
node_modules/ignore/index.d.ts | 63 --
node_modules/ignore/index.js | 568 ----------
node_modules/ignore/legacy.js | 476 --------
node_modules/ignore/package.json | 98 --
node_modules/inflight/LICENSE | 15 -
node_modules/inflight/README.md | 37 -
node_modules/inflight/inflight.js | 54 -
node_modules/inflight/package.json | 58 -
node_modules/inherits/LICENSE | 16 -
node_modules/inherits/README.md | 42 -
node_modules/inherits/inherits.js | 9 -
node_modules/inherits/inherits_browser.js | 27 -
node_modules/inherits/package.json | 61 -
node_modules/lodash.difference/LICENSE | 47 -
node_modules/lodash.difference/README.md | 18 -
node_modules/lodash.difference/index.js | 1170 -------------------
node_modules/lodash.difference/package.json | 69 --
node_modules/lodash.union/LICENSE | 47 -
node_modules/lodash.union/README.md | 18 -
node_modules/lodash.union/index.js | 1181 --------------------
node_modules/lodash.union/package.json | 69 --
node_modules/make-array/README.md | 61 -
node_modules/make-array/index.js | 71 --
node_modules/make-array/package.json | 69 --
node_modules/minimatch/LICENSE | 15 -
node_modules/minimatch/README.md | 209 ----
node_modules/minimatch/minimatch.js | 923 ---------------
node_modules/minimatch/package.json | 63 --
node_modules/once/LICENSE | 15 -
node_modules/once/README.md | 79 --
node_modules/once/once.js | 42 -
node_modules/once/package.json | 67 --
node_modules/path-is-absolute/index.js | 20 -
node_modules/path-is-absolute/license | 21 -
node_modules/path-is-absolute/package.json | 75 --
node_modules/path-is-absolute/readme.md | 59 -
node_modules/util.inherits/HISTORY.md | 1 -
node_modules/util.inherits/README.md | 45 -
node_modules/util.inherits/index.js | 47 -
node_modules/util.inherits/package.json | 81 --
node_modules/wrappy/LICENSE | 15 -
node_modules/wrappy/README.md | 36 -
node_modules/wrappy/package.json | 59 -
node_modules/wrappy/wrappy.js | 33 -
platform/common/data_comm/BUILD | 18 +
platform/common/network/BUILD | 18 +
platform/common/queue/BUILD | 18 +
platform/config/BUILD | 18 +
platform/consensus/checkpoint/BUILD | 18 +
platform/consensus/execution/BUILD | 18 +
.../consensus/execution/transaction_executor.cpp | 17 +
.../consensus/ordering/common/BUILD | 14 +-
.../consensus/ordering/poe/proto/algorithm/BUILD | 15 +-
.../ordering/poe/proto/algorithm/protocol_base.cpp | 65 ++
.../ordering/poe/proto/algorithm/protocol_base.h | 87 ++
.../consensus/ordering/poe/proto/framework/BUILD | 66 ++
.../ordering/poe/proto/framework/consensus.cpp | 168 +++
.../ordering/poe/proto/framework/consensus.h | 78 ++
.../poe/proto/framework/performance_manager.cpp | 276 +++++
.../proto/framework}/performance_manager.h | 69 +-
.../poe/proto/framework/response_manager.cpp | 236 ++++
.../proto/framework}/response_manager.h | 52 +-
.../proto/framework}/transaction_utils.cpp | 4 +-
.../proto/framework}/transaction_utils.h | 3 +-
platform/consensus/recovery/BUILD | 18 +
platform/consensus/recovery/recovery.cpp | 5 +-
platform/networkstrate/BUILD | 18 +
platform/networkstrate/README.md | 19 +
platform/networkstrate/async_acceptor.cpp | 4 +
platform/networkstrate/consensus_manager.cpp | 141 ++-
platform/networkstrate/consensus_manager.h | 4 +
platform/networkstrate/replica_communicator.cpp | 2 +-
platform/proto/BUILD | 20 +-
platform/proto/broadcast.proto | 19 +
platform/proto/checkpoint_info.proto | 19 +
platform/proto/client_test.proto | 19 +
platform/proto/logging.proto | 19 +
platform/proto/network_type.proto | 19 +
platform/proto/replica_info.proto | 23 +-
platform/proto/resdb.proto | 28 +
platform/proto/system_info_data.proto | 19 +
platform/proto/viewchange_message.proto | 19 +
platform/rdbc/BUILD | 18 +
platform/statistic/BUILD | 25 +
platform/statistic/README.md | 19 +
platform/statistic/stats.cpp | 228 +++-
platform/statistic/stats.h | 57 +
platform/statistic/test_server.sh | 8 -
platform/test/BUILD | 19 +
platform/test/proto/BUILD | 19 +
platform/test/proto/resdb_test.proto | 19 +
platform/test/test_data/BUILD | 19 +
proto/contract/BUILD | 19 +
proto/contract/account.proto | 19 +
proto/contract/contract.proto | 19 +
proto/contract/func_params.proto | 19 +
proto/contract/rpc.proto | 27 +
proto/kv/BUILD | 18 +
proto/kv/kv.proto | 19 +
proto/utxo/BUILD | 19 +
proto/utxo/config.proto | 19 +
proto/utxo/rpc.proto | 19 +
proto/utxo/utxo.proto | 19 +
script.js | 123 ++
scripts/format.sh | 20 +
service/contract/BUILD | 18 +
service/kv/BUILD | 21 +-
service/kv/kv_service.cpp | 9 +-
.../tools/config}/generate_config.sh | 20 +-
service/tools/config/server/server.config | 10 +-
service/tools/contract/README.md | 19 +
service/tools/contract/api_tools/BUILD | 19 +
.../tools/contract/api_tools/contract_tools.cpp | 44 +-
.../contract/api_tools/example_contract/compile.sh | 18 +
.../service_tools/start_contract_service.sh | 21 +
service/tools/kv/api_tools/BUILD | 19 +
service/tools/kv/api_tools/kv_client_txn_tools.cpp | 2 -
.../tools/kv/server_tools/generate_config.sh | 22 +-
service/tools/kv/server_tools/start_kv_service.sh | 18 +
.../kv/server_tools/start_kv_service_monitoring.sh | 18 +
service/tools/utxo/README.md | 18 +
.../tools/utxo/service_tools/start_utxo_service.sh | 18 +
service/tools/utxo/wallet_tool/cpp/BUILD | 19 +
service/tools/utxo/wallet_tool/cpp/addr_utils.cpp | 33 +-
service/tools/utxo/wallet_tool/cpp/addr_utils.h | 33 +-
service/tools/utxo/wallet_tool/cpp/key_utils.cpp | 33 +-
service/tools/utxo/wallet_tool/cpp/key_utils.h | 33 +-
service/tools/utxo/wallet_tool/py/BUILD | 19 +
service/tools/utxo/wallet_tool/pybind/BUILD | 19 +
.../utxo/wallet_tool/pybind/wallet_tools_py.cpp | 33 +-
service/tools/utxo/wallet_tool/test/BUILD | 19 +
service/utils/BUILD | 19 +
service/utxo/BUILD | 19 +
service/utxo/start_contract_server.sh | 18 +
third_party/BUILD | 40 +-
third_party/asio.BUILD | 23 +-
third_party/civetweb.BUILD | 22 +
third_party/crow.BUILD | 23 +-
third_party/date.BUILD | 25 +-
third_party/eEVM.BUILD | 25 +-
third_party/json.BUILD | 23 +-
third_party/leveldb.BUILD | 25 +-
action.yml => third_party/loc_script/action.yml | 19 +
{src => third_party/loc_script/src}/index.js | 3 +-
third_party/prometheus.BUILD | 22 +
third_party/rapidjson.BUILD | 22 +
third_party/rocksdb.BUILD | 98 --
third_party/snappy.BUILD | 25 +-
third_party/z.BUILD | 26 +-
third_party/zlib.BUILD | 25 +-
third_party/zstd.BUILD | 5 -
tools/BUILD | 19 +
tools/generate_certificate.sh | 18 +
tools/generate_client.sh | 18 +
tools/generate_cluster.sh | 19 +-
tools/generate_key.sh | 18 +
tools/resdb_state_accessor_tools.cpp | 6 +-
309 files changed, 4853 insertions(+), 12850 deletions(-)
create mode 100644 .bazelversion
copy scripts/deploy/script/generate_key.sh => .github/workflows/license.yml
(69%)
mode change 100755 => 100644
create mode 100644 .licenserc.yaml
create mode 100644 DISCLAIMER-WIP
copy {platform/consensus/ordering/geo_pbft => INSTALL}/README.md (56%)
mode change 100644 => 100755
copy scripts/deploy/performance/poe_performance.sh =>
INSTALL/bazel/install_bazel.sh (75%)
copy scripts/deploy/performance/poe_performance.sh =>
INSTALL/protobuf/install_protobuf.sh (84%)
delete mode 100644 INSTALL_MAC.sh
copy {benchmark/protocols/poe => api}/BUILD (65%)
create mode 100644 api/README.md
create mode 100644 api/ip_address.config
create mode 100644 api/kv_operation.py
copy benchmark/protocols/pbft/kv_service_tools.cpp =>
api/pybind_kv_service.cpp (62%)
delete mode 100644 chain/storage/proto/rocksdb_config.proto
delete mode 100644 chain/storage/rocksdb.cpp
delete mode 100644 chain/storage/rocksdb.h
create mode 100644 dev/.rat-excludes
create mode 100755 dev/check-license
delete mode 100644 node_modules/@actions/core/README.md
delete mode 100644 node_modules/@actions/core/lib/command.d.ts
delete mode 100644 node_modules/@actions/core/lib/command.js
delete mode 100644 node_modules/@actions/core/lib/command.js.map
delete mode 100644 node_modules/@actions/core/lib/core.d.ts
delete mode 100644 node_modules/@actions/core/lib/core.js
delete mode 100644 node_modules/@actions/core/lib/core.js.map
delete mode 100644 node_modules/@actions/core/package.json
delete mode 100644 node_modules/badgen/LICENSE.md
delete mode 100644 node_modules/badgen/README.md
delete mode 100644 node_modules/badgen/dist/calc-text-width.d.ts
delete mode 100644 node_modules/badgen/dist/color-presets.d.ts
delete mode 100644 node_modules/badgen/dist/index.d.ts
delete mode 100644 node_modules/badgen/dist/index.js
delete mode 100644 node_modules/badgen/dist/index.js.map
delete mode 100644 node_modules/badgen/package.json
delete mode 100644 node_modules/badgen/tsconfig.json
delete mode 100644 node_modules/balanced-match/.npmignore
delete mode 100644 node_modules/balanced-match/LICENSE.md
delete mode 100644 node_modules/balanced-match/README.md
delete mode 100644 node_modules/balanced-match/index.js
delete mode 100644 node_modules/balanced-match/package.json
delete mode 100644 node_modules/brace-expansion/LICENSE
delete mode 100644 node_modules/brace-expansion/README.md
delete mode 100644 node_modules/brace-expansion/index.js
delete mode 100644 node_modules/brace-expansion/package.json
delete mode 100644 node_modules/concat-map/.travis.yml
delete mode 100644 node_modules/concat-map/LICENSE
delete mode 100644 node_modules/concat-map/README.markdown
delete mode 100644 node_modules/concat-map/example/map.js
delete mode 100644 node_modules/concat-map/index.js
delete mode 100644 node_modules/concat-map/package.json
delete mode 100644 node_modules/concat-map/test/map.js
delete mode 100644 node_modules/fs.realpath/LICENSE
delete mode 100644 node_modules/fs.realpath/README.md
delete mode 100644 node_modules/fs.realpath/index.js
delete mode 100644 node_modules/fs.realpath/old.js
delete mode 100644 node_modules/fs.realpath/package.json
delete mode 100644 node_modules/glob-gitignore/HISTORY.md
delete mode 100644 node_modules/glob-gitignore/LICENSE
delete mode 100644 node_modules/glob-gitignore/README.md
delete mode 100644 node_modules/glob-gitignore/package.json
delete mode 100644 node_modules/glob-gitignore/src/glob.js
delete mode 100644 node_modules/glob-gitignore/src/index.js
delete mode 100644 node_modules/glob-gitignore/src/sync.js
delete mode 100644 node_modules/glob-gitignore/src/util.js
delete mode 100644 node_modules/glob/LICENSE
delete mode 100644 node_modules/glob/README.md
delete mode 100644 node_modules/glob/changelog.md
delete mode 100644 node_modules/glob/common.js
delete mode 100644 node_modules/glob/glob.js
delete mode 100644 node_modules/glob/package.json
delete mode 100644 node_modules/glob/sync.js
delete mode 100644 node_modules/ignore/CHANGELOG.md
delete mode 100644 node_modules/ignore/LICENSE-MIT
delete mode 100644 node_modules/ignore/README.md
delete mode 100644 node_modules/ignore/index.d.ts
delete mode 100644 node_modules/ignore/index.js
delete mode 100644 node_modules/ignore/legacy.js
delete mode 100644 node_modules/ignore/package.json
delete mode 100644 node_modules/inflight/LICENSE
delete mode 100644 node_modules/inflight/README.md
delete mode 100644 node_modules/inflight/inflight.js
delete mode 100644 node_modules/inflight/package.json
delete mode 100644 node_modules/inherits/LICENSE
delete mode 100644 node_modules/inherits/README.md
delete mode 100644 node_modules/inherits/inherits.js
delete mode 100644 node_modules/inherits/inherits_browser.js
delete mode 100644 node_modules/inherits/package.json
delete mode 100644 node_modules/lodash.difference/LICENSE
delete mode 100644 node_modules/lodash.difference/README.md
delete mode 100644 node_modules/lodash.difference/index.js
delete mode 100644 node_modules/lodash.difference/package.json
delete mode 100644 node_modules/lodash.union/LICENSE
delete mode 100644 node_modules/lodash.union/README.md
delete mode 100644 node_modules/lodash.union/index.js
delete mode 100644 node_modules/lodash.union/package.json
delete mode 100644 node_modules/make-array/README.md
delete mode 100644 node_modules/make-array/index.js
delete mode 100644 node_modules/make-array/package.json
delete mode 100644 node_modules/minimatch/LICENSE
delete mode 100644 node_modules/minimatch/README.md
delete mode 100644 node_modules/minimatch/minimatch.js
delete mode 100644 node_modules/minimatch/package.json
delete mode 100644 node_modules/once/LICENSE
delete mode 100644 node_modules/once/README.md
delete mode 100644 node_modules/once/once.js
delete mode 100644 node_modules/once/package.json
delete mode 100644 node_modules/path-is-absolute/index.js
delete mode 100644 node_modules/path-is-absolute/license
delete mode 100644 node_modules/path-is-absolute/package.json
delete mode 100644 node_modules/path-is-absolute/readme.md
delete mode 100644 node_modules/util.inherits/HISTORY.md
delete mode 100644 node_modules/util.inherits/README.md
delete mode 100644 node_modules/util.inherits/index.js
delete mode 100644 node_modules/util.inherits/package.json
delete mode 100644 node_modules/wrappy/LICENSE
delete mode 100644 node_modules/wrappy/README.md
delete mode 100644 node_modules/wrappy/package.json
delete mode 100644 node_modules/wrappy/wrappy.js
copy scripts/deploy/performance/poe_performance.sh =>
platform/consensus/ordering/common/BUILD (73%)
mode change 100755 => 100644
copy scripts/deploy/performance/pbft_performance.sh =>
platform/consensus/ordering/poe/proto/algorithm/BUILD (73%)
mode change 100755 => 100644
create mode 100644
platform/consensus/ordering/poe/proto/algorithm/protocol_base.cpp
create mode 100644
platform/consensus/ordering/poe/proto/algorithm/protocol_base.h
create mode 100644 platform/consensus/ordering/poe/proto/framework/BUILD
create mode 100644
platform/consensus/ordering/poe/proto/framework/consensus.cpp
create mode 100644 platform/consensus/ordering/poe/proto/framework/consensus.h
create mode 100644
platform/consensus/ordering/poe/proto/framework/performance_manager.cpp
copy platform/consensus/ordering/{pbft =>
poe/proto/framework}/performance_manager.h (57%)
create mode 100644
platform/consensus/ordering/poe/proto/framework/response_manager.cpp
copy platform/consensus/ordering/{pbft =>
poe/proto/framework}/response_manager.h (55%)
copy platform/consensus/ordering/{pbft =>
poe/proto/framework}/transaction_utils.cpp (92%)
copy platform/consensus/ordering/{pbft =>
poe/proto/framework}/transaction_utils.h (97%)
delete mode 100644 platform/statistic/test_server.sh
create mode 100644 script.js
copy {scripts/deploy/script => service/tools/config}/generate_config.sh (84%)
copy scripts/deploy/script/generate_admin_key.sh =>
service/tools/kv/server_tools/generate_config.sh (70%)
rename action.yml => third_party/loc_script/action.yml (65%)
rename {src => third_party/loc_script/src}/index.js (98%)
delete mode 100644 third_party/rocksdb.BUILD
delete mode 100644 third_party/zstd.BUILD