orbit-db-identity-provider icon indicating copy to clipboard operation
orbit-db-identity-provider copied to clipboard

Default identity provider for OrbitDB

Results 11 orbit-db-identity-provider issues
Sort by recently updated
recently updated
newest added

Hi, I am trying to find a way to have an identity that is linked to an Ethereum wallet. I tried the EthereumIdentityProvider, but whenever I connect with the same...

Hey, I have an array of strings, each string is unique identifier, based on those as id I want to create identity. My code looks like this: ```js for (let...

I have a need to be able to cache the signatures once an identity is initially created, and recreate the identity later without the user having to resign. It appears...

I can't use orbitdb local keystore for stoarge so I serialize the identity to JSON and save it on another storage How can I import the saved identity back to...

```js import path from "path"; import ODBKeystore from "orbit-db-keystore"; import Identities from "orbit-db-identity-provider"; const account = accounts[0]; const odbIdentitykeysPath = path.join("./orbitdb", "identity", "identitykeys"); const keystore = new ODBKeystore(odbIdentitykeysPath); // if...

Following the step-by-step, I can connect to my Metamask provider and sign Identity. However, if I try to connect to Orbit-DB using this identity, this is the error I get...

`npm audit` is showing a lot of security warnings, I don't know if any of them would affect this project, but it would be nice to have the `npm audit`...

Removes `provider` from `identity` Supersedes #49

Right now every call to [verifyIdentity](https://github.com/orbitdb/orbit-db-identity-provider/blob/master/src/identities.js#L71) verifies the signature done by the particular identity. In an ipfs-log with a lot of entries done by the same identity this creates a...

Closes store after signing to avoid leveldb 'lock held' error