CSDUMMI
CSDUMMI
In #975 I describe the notion that OrbitDB stores should not be seen as equivalents to an SQL table and much rather as an individual row or document in an...
I'm still sitting at the code I talked about yesterday, trying to rewrite it to deal with the encoding issues. And I was wondering, if it might be useful to...
I refer to #958 for further details.
I was about to create a PR to add documentation to the API.md about undocumented properties of the `OrbitDB` object. But I think that we should think about finally adding...
Disscussion for: [Database Encryption Project](https://github.com/orgs/orbitdb/projects/7#card-44572258). Let me give a brief summary of the project, the current state of the discussion gathered from #819 and an [SCP](https://github.com/orbitdb/SCPs/pull/8) proposal I produced a...
I want to move the discussion of [this project](https://github.com/orgs/orbitdb/projects/7#card-44572255) out of the [Road to 1.0](https://github.com/orbitdb/orbit-db/issues/819) . ## Oplog Watermarks As of right now, the kvstore and docstore currently reduce the...
Refer to this issue for more details: https://github.com/orbitdb/orbit-db/issues/924 `OrbitDB.isValid` returns true and `parseAddress` returns a proper `OrbitDBAddress` object when given a CID as input without name or protocol. For Example:...
If you provide a valid CID to `OrbitDBAddress.isValid` it returns true. ```js > OrbitDB.isValidAddress("QmTeAppWEwssc4d4soLj1yMeDEZUHtbCzvaGVWKzBYFa25") true ``` https://github.com/orbitdb/orbit-db/blob/587b2fecaed6cafd735331736c36467955b0293f/src/orbit-db-address.js#L17 This is not the behavior I expected nor is it the behavior I...
Added a test for `hasCapability`created in [PR](https://github.com/orbitdb/orbit-db-access-controllers/pull/67). This test will only work, if that PR is merged first and the proper version of orbit-db-access-controller is published.
Isn't this [custom access controller](https://github.com/orbitdb/orbit-db/blob/main/GUIDE.md#custom-access-controller) example is invalid, because `identity` is an `undefined` variable? Specifically in the `canAppend` method from the Example: ```js async canAppend(entry, identityProvider) { // logic to...