Stan Nazarenko
Stan Nazarenko
@kakoni, I had similar issues with unfinished cluster configuration. After digging into it I figured out that sometimes automatic_clustering.sh is executed too soon and 'cluster join' command returns "Node not...
@skyjake, thank you for the explanation. I'm happy with the proposed strategy. > In the specific case on Konpeito, the effect shouldn't be applied in any case because the site...
@BigBlueHat we have support for LDS (2015 flavour) internally, but haven't exposed it in a public library. For 2 reasons: 1) we were waiting for the new standard to do...
@johnptoohey as there is a clear demand for it, I'll try to find time over next few weeks and raise a PR.
@johnptoohey we will be supporting (roughly) the same functionality as https://github.com/digitalbazaar/jsonld-signatures. I believe it supports both the original style of signatures and LD proofs. I have the general framework and...
@johnptoohey a quick update: JSON-LD Signatures development was put on hold because it depends on JSON-LD 1.1 spec, but the Java implementation of JSON-LD doesn't support it. As a result,...
@troyronda thank you for the link. It will help us to either rely on the Aries implementation of JSON-LD signatures or build our own.
@LuisOsta, apologies for the late response. I believe the problem lies in the types you use in your document. JSON-goLD expects any nested structures to be `map[string]interface{}` and any included...
@LuisOsta the library consumes JSON in its most generic form, as if it was unmarshalled into an `interface{}` variable. Hence it needs to be a combination of `[]interface{}`, `map[string]interface{}` and...
Thanks, that's a fair point. Will address.