├── .circleci └── config.yml ├── .github └── workflows │ ├── npm-publish-next.yml │ ├── npm-publish.yml │ └── run-tests.yml ├── .gitignore ├── .npmignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── conf ├── webpack.config.js └── webpack.tests.config.js ├── dist ├── orbit-db-identity-provider.min.js └── orbit-db-identity-provider.min.js.LICENSE.txt ├── package.json ├── src ├── identities.js ├── identity-providers │ ├── did.js │ ├── ethereum.js │ ├── interface.js │ └── orbitdb.js ├── identity.js └── is-defined.js └── test ├── browser.spec.js ├── browser └── index.html ├── did-identity-provider.spec.js ├── ethereum-identity-provider.spec.js ├── fixtures └── keys │ ├── 000005.ldb │ ├── 000008.log │ ├── 0260baeaffa1de1e4135e5b395e0380563a622b9599d1b8e012a0f7603f516bdaa.json │ ├── CURRENT │ ├── LOCK │ ├── LOG │ ├── LOG.old │ ├── MANIFEST-000007 │ ├── QmPhnEjVkYE1Ym7F5MkRUfkD6NtuSptE7ugu1Ggr149W2X.json │ └── existing.json ├── identity-provider.spec.js └── identity.spec.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-db-identity-provider/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/workflows/npm-publish-next.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-db-identity-provider/HEAD/.github/workflows/npm-publish-next.yml -------------------------------------------------------------------------------- /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-db-identity-provider/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-db-identity-provider/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-db-identity-provider/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | conf 3 | .circleci 4 | orbitdb 5 | dist/*.js.map 6 | Makefile 7 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-db-identity-provider/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-db-identity-provider/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-db-identity-provider/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-db-identity-provider/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-db-identity-provider/HEAD/README.md -------------------------------------------------------------------------------- /conf/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-db-identity-provider/HEAD/conf/webpack.config.js -------------------------------------------------------------------------------- /conf/webpack.tests.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-db-identity-provider/HEAD/conf/webpack.tests.config.js -------------------------------------------------------------------------------- /dist/orbit-db-identity-provider.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-db-identity-provider/HEAD/dist/orbit-db-identity-provider.min.js -------------------------------------------------------------------------------- /dist/orbit-db-identity-provider.min.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-db-identity-provider/HEAD/dist/orbit-db-identity-provider.min.js.LICENSE.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-db-identity-provider/HEAD/package.json -------------------------------------------------------------------------------- /src/identities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-db-identity-provider/HEAD/src/identities.js -------------------------------------------------------------------------------- /src/identity-providers/did.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-db-identity-provider/HEAD/src/identity-providers/did.js -------------------------------------------------------------------------------- /src/identity-providers/ethereum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-db-identity-provider/HEAD/src/identity-providers/ethereum.js -------------------------------------------------------------------------------- /src/identity-providers/interface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-db-identity-provider/HEAD/src/identity-providers/interface.js -------------------------------------------------------------------------------- /src/identity-providers/orbitdb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-db-identity-provider/HEAD/src/identity-providers/orbitdb.js -------------------------------------------------------------------------------- /src/identity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-db-identity-provider/HEAD/src/identity.js -------------------------------------------------------------------------------- /src/is-defined.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-db-identity-provider/HEAD/src/is-defined.js -------------------------------------------------------------------------------- /test/browser.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-db-identity-provider/HEAD/test/browser.spec.js -------------------------------------------------------------------------------- /test/browser/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-db-identity-provider/HEAD/test/browser/index.html -------------------------------------------------------------------------------- /test/did-identity-provider.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-db-identity-provider/HEAD/test/did-identity-provider.spec.js -------------------------------------------------------------------------------- /test/ethereum-identity-provider.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-db-identity-provider/HEAD/test/ethereum-identity-provider.spec.js -------------------------------------------------------------------------------- /test/fixtures/keys/000005.ldb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-db-identity-provider/HEAD/test/fixtures/keys/000005.ldb -------------------------------------------------------------------------------- /test/fixtures/keys/000008.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/keys/0260baeaffa1de1e4135e5b395e0380563a622b9599d1b8e012a0f7603f516bdaa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-db-identity-provider/HEAD/test/fixtures/keys/0260baeaffa1de1e4135e5b395e0380563a622b9599d1b8e012a0f7603f516bdaa.json -------------------------------------------------------------------------------- /test/fixtures/keys/CURRENT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-db-identity-provider/HEAD/test/fixtures/keys/CURRENT -------------------------------------------------------------------------------- /test/fixtures/keys/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/keys/LOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-db-identity-provider/HEAD/test/fixtures/keys/LOG -------------------------------------------------------------------------------- /test/fixtures/keys/LOG.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-db-identity-provider/HEAD/test/fixtures/keys/LOG.old -------------------------------------------------------------------------------- /test/fixtures/keys/MANIFEST-000007: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-db-identity-provider/HEAD/test/fixtures/keys/MANIFEST-000007 -------------------------------------------------------------------------------- /test/fixtures/keys/QmPhnEjVkYE1Ym7F5MkRUfkD6NtuSptE7ugu1Ggr149W2X.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-db-identity-provider/HEAD/test/fixtures/keys/QmPhnEjVkYE1Ym7F5MkRUfkD6NtuSptE7ugu1Ggr149W2X.json -------------------------------------------------------------------------------- /test/fixtures/keys/existing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-db-identity-provider/HEAD/test/fixtures/keys/existing.json -------------------------------------------------------------------------------- /test/identity-provider.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-db-identity-provider/HEAD/test/identity-provider.spec.js -------------------------------------------------------------------------------- /test/identity.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-db-identity-provider/HEAD/test/identity.spec.js --------------------------------------------------------------------------------