hyperledger / iroha-javascript

JavaScript library for Iroha, a Distributed Ledger Technology (blockchain) platform.
https://wiki.hyperledger.org/display/iroha
Apache License 2.0
94 stars 64 forks source link

feat: update lib with latest proto #125

Closed yashrajdesai closed 1 year ago

yashrajdesai commented 1 year ago

Updated the proto files using these proto files. To generate the ts proto files I used the following script:

PROTOC_GEN_TS_PATH="../../node_modules/.bin/protoc-gen-ts"

OUT_DIR="./"

protoc \
    --plugin="protoc-gen-ts=${PROTOC_GEN_TS_PATH}" \
    --js_out="import_style=commonjs,binary:${OUT_DIR}" \
    --ts_out="${OUT_DIR}" \
    *.proto

Signed-off-by: yashrajdesai yashrajdesai30@gmail.com

baziorek commented 1 year ago

@yashrajdesai What is version of protoc in your computer?

yashrajdesai commented 1 year ago

@yashrajdesai What is version of protoc in your computer?

libprotoc 3.20.1