Skip to content

Commit c74bf89

Browse files
Merge pull request #186 from dhinakaran2705/main
Besu-cli
2 parents d096416 + 59c8ac2 commit c74bf89

38 files changed

+10094
-7
lines changed
File renamed without changes.

.github/workflows/asset-exchange-corda.yml renamed to .github/workflows/test_asset-exchange-corda.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,7 @@ jobs:
255255
./scripts/get-cordapps.sh || mv github.main.properties github.properties
256256
257257
cat github.properties
258+
cp github.properties ../../../samples/corda/corda-simple-application/
258259
working-directory: tests/network-setups/corda
259260

260261
- name: Generate github.properties (else)
@@ -265,6 +266,7 @@ jobs:
265266
echo "password=${{ secrets.GITHUB_TOKEN }}" >> github.properties
266267
echo "url=https://maven.pkg.github.com/hyperledger-labs/weaver-dlt-interoperability" >> github.properties
267268
cat github.properties
269+
cp github.properties ../../../samples/corda/corda-simple-application/
268270
working-directory: tests/network-setups/corda
269271

270272
# CORDA NETWORK
File renamed without changes.

.github/workflows/data-transfer.yml renamed to .github/workflows/test_data-transfer.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -193,20 +193,20 @@ jobs:
193193
194194
# CORDA - FABRIC1
195195
./clients/build/install/clients/bin/clients request-state localhost:9081 relay-network1:9080/network1/mychannel:simplestate:Read:a 1> tmp.out
196-
tail -n 1 tmp.out | grep "SimpleState(key=a, value=Arcturus" && COUNT=$(( COUNT + 1 )) && echo "PASS"
196+
cat tmp.out | grep "SimpleState(key=a, value=Arcturus" && COUNT=$(( COUNT + 1 )) && echo "PASS"
197197
cat tmp.out
198198
199199
./clients/build/install/clients/bin/clients get-state a 1> tmp.out
200-
tail -n 1 tmp.out | grep "SimpleState(key=a, value=Arcturus" && COUNT=$(( COUNT + 1 )) && echo "PASS"
200+
cat tmp.out | grep "SimpleState(key=a, value=Arcturus" && COUNT=$(( COUNT + 1 )) && echo "PASS"
201201
cat tmp.out
202202
203203
# CORDA - FABRIC2
204204
./clients/build/install/clients/bin/clients request-state localhost:9081 relay-network2:9083/network2/mychannel:simplestate:Read:Arcturus 1> tmp.out
205-
tail -n 1 tmp.out | grep "SimpleState(key=Arcturus, value=17.671" && COUNT=$(( COUNT + 1 )) && echo "PASS"
205+
cat tmp.out | grep "SimpleState(key=Arcturus, value=17.671" && COUNT=$(( COUNT + 1 )) && echo "PASS"
206206
cat tmp.out
207207
208208
./clients/build/install/clients/bin/clients get-state Arcturus 1> tmp.out
209-
tail -n 1 tmp.out | grep "SimpleState(key=Arcturus, value=17.671" && COUNT=$(( COUNT + 1 )) && echo "PASS"
209+
cat tmp.out | grep "SimpleState(key=Arcturus, value=17.671" && COUNT=$(( COUNT + 1 )) && echo "PASS"
210210
cat tmp.out
211211
212212
# RESULT
File renamed without changes.
File renamed without changes.

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@
55
-->
66
# Weaver: DLT Interoperability
77

8-
![Data Transfer Status](https://github.com/hyperledger-labs/weaver-dlt-interoperability/actions/workflows/data-transfer.yml/badge.svg?event=push)
9-
![Fabric Asset Exchange Status](https://github.com/hyperledger-labs/weaver-dlt-interoperability/actions/workflows/asset-exchange-fabric.yml/badge.svg?event=push)
10-
![Corda Asset Exchange Status](https://github.com/hyperledger-labs/weaver-dlt-interoperability/actions/workflows/asset-exchange-corda.yml/badge.svg?event=push)
8+
![Data Transfer Status](https://github.com/hyperledger-labs/weaver-dlt-interoperability/actions/workflows/test_data-transfer.yml/badge.svg?event=push)
9+
![Fabric Asset Exchange Status](https://github.com/hyperledger-labs/weaver-dlt-interoperability/actions/workflows/test_asset-exchange-fabric.yml/badge.svg?event=push)
10+
![Corda Asset Exchange Status](https://github.com/hyperledger-labs/weaver-dlt-interoperability/actions/workflows/test_asset-exchange-corda.yml/badge.svg?event=push)
11+
![Asset Transfer Status](https://github.com/hyperledger-labs/weaver-dlt-interoperability/actions/workflows/test_asset-transfer.yml/badge.svg?event=push)
1112

1213
## Short Description
1314
A framework, with a family of protocols, to enable interoperation for data sharing and asset movements between independent networks built on heterogeneous DLTs in a manner that preserves the core blockchain tenets of decentralization and security.

samples/besu/besu-cli/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
package-lock.json
2+
config.json
3+
node_modules

0 commit comments

Comments
 (0)