From 73b7a544af652320ff5aaa9e26055604edd1357a Mon Sep 17 00:00:00 2001 From: boneyard93501 <4523011+boneyard93501@users.noreply.github.com> Date: Wed, 20 Oct 2021 15:20:41 -0500 Subject: [PATCH] update summary --- aqua-examples/ceramic-demo/README.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/aqua-examples/ceramic-demo/README.md b/aqua-examples/ceramic-demo/README.md index d0ecc76..383a0ac 100644 --- a/aqua-examples/ceramic-demo/README.md +++ b/aqua-examples/ceramic-demo/README.md @@ -362,7 +362,7 @@ Yields: ] ``` -Now, we run the same functionality but with the `CeramicResult` as the return value: +Please note that we need to escape the Ceramic payload(s)! Now, we run the same functionality but with the `CeramicResult` as the return value: ```bash fldist --node-id 12D3KooWJ4bTHirdTFNZpCS72TAzwtdmavTBkkEXtzo6wHL25CtE \ @@ -375,7 +375,7 @@ fldist --node-id 12D3KooWJ4bTHirdTFNZpCS72TAzwtdmavTBkkEXtzo6wHL25CtE \ --generated ``` -Which results in: +Which returns the `CeramicResult` object: ```bash [ @@ -387,7 +387,7 @@ Which results in: ] ``` -Finally, we run our roundtrip function where we create, update and show: +This allows us to access members with the dot notation, e.g, CeramicResultObj.stderr. Finally, we run our roundtrip function where we create, update and show: ```bash fldist --node-id 12D3KooWJ4bTHirdTFNZpCS72TAzwtdmavTBkkEXtzo6wHL25CtE @@ -412,3 +412,7 @@ Which returns the triple: ] ``` +## Summary + +We created a distributed adapter service allowing us not only to bring decentralized store to Fluence's decentralized compute but also to seamlessly integrate that functionality into any composition with Aqua. We further demonstrated the use of Ceramic with Aqua. While the project is still work in progress, feel free to use and share any issues or improvement requests in *Issues*. +