Jonathan El-Bizri
Jonathan El-Bizri
I would do this with a custom store that implemented multi-sig encryption: encrypting with the user's and the db creator's public keys.
Would it make sense to do this in the kv and docstore, or somewhere more central? orbit-db-kvstore - [updateIndex](https://github.com/orbitdb/orbit-db-kvstore/blob/824e6f490c29f3ca1b8d9637e2d165d9135e7050/src/KeyValueIndex.js#L12) orbit-db-docstore - [updateIndex](https://github.com/orbitdb/orbit-db-docstore/blob/e23b3c7b9d71759a2627a561a9b1366f88e93698/src/DocumentIndex.js#L14) Would there be a need to handle out...
Right, I see that now. If we can retrieve all relevant changes and apply them in order, would we need to be able to `clear` to a previous state? Since...
I'm experiencing this too, it's stymied my work for several weeks now. Previously, things were working fine. I have: * Switched to node LTS (v14.7.6) * Created a fresh repo...
Still unable to get jest-cucumber to work, even with fresh installs. Rolling back jest-cucumber and jest to previous versions does not resolve the issue, suggesting breaking changes in dependencies? ```...
Ok, @mkhslaa , I finally figured this out :) If the feature file is malformed: specifically, if is missing a `Scenario` line, then jest-cucumber returns this error message. I haven't...
Fwiw, the error is coming from Jest, rather than Jest-cucumber, so just updating the error message isn't a workable option. Jest-cucumber needs to throw if, for any reason, it doesn't...
Hi all, In the process of familiarizing myself with orbitdb (and meet my own needs), I've created this pinning service: https://github.com/Jon-Biz/orbitdb-pinner You can pass/configure it with an orbitdb address to...
The write and read functions in question are defined here: https://github.com/orbitdb/orbit-db-io/blob/main/index.js `src/utils/io` passes back the read function wrapped in async function, and passes the write function back directly.
Would it make more sense to make the controllers standalone, so they can be required or specified?