├── .babelrc ├── .dockerignore ├── .flowconfig ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── bin ├── aleph.js └── mcclient.js ├── docker-compose.yml ├── docs ├── build.sh ├── clean.sh ├── jsdoc-conf.json └── publish.js ├── flow-typed └── npm │ ├── chai_v3.5.x.js │ ├── flow-bin_v0.x.x.js │ ├── knex_v0.12.x.js │ ├── lodash_v4.x.x.js │ ├── mkdirp_v0.5.x.js │ └── mocha_v3.1.x.js ├── integration-test ├── concat-dependencies │ ├── Dockerfile │ └── build.sh ├── concat │ ├── Dockerfile │ └── test-identities │ │ ├── mcdir │ │ └── identity.node │ │ └── mcnode │ │ ├── identity.node │ │ └── identity.publisher ├── index.js ├── merge_test.js ├── node_info_test.js ├── ping_test.js ├── push_test.js ├── query_test.js ├── remote_data_test.js ├── run-in-docker.sh └── util.js ├── npm-shrinkwrap.json ├── package.json ├── pre-push.sh ├── scripts ├── build-jq.js ├── dataset-fetch.py ├── ingest-parallel.py ├── ingest.sh ├── io.mediachain.indexer-image-jsonschema-1-0-0.json ├── publish-500px.sh ├── publish-dpla.sh ├── publish-flickr-c10.sh ├── publish-flickr-c100.sh ├── publish-flickr.sh ├── publish-pexels.sh ├── publish.sh └── validate.sh ├── src ├── client │ ├── api │ │ ├── RestClient.js │ │ └── index.js │ └── cli │ │ ├── commands │ │ ├── archive.js │ │ ├── archive │ │ │ ├── dump.js │ │ │ └── load.js │ │ ├── auth.js │ │ ├── auth │ │ │ ├── grant.js │ │ │ ├── revoke.js │ │ │ └── show.js │ │ ├── config.js │ │ ├── config │ │ │ ├── dir.js │ │ │ ├── info.js │ │ │ └── nat.js │ │ ├── data.js │ │ ├── data │ │ │ ├── compact.js │ │ │ ├── gc.js │ │ │ ├── get.js │ │ │ ├── keys.js │ │ │ ├── put.js │ │ │ └── sync.js │ │ ├── delete.js │ │ ├── getData.js │ │ ├── id.js │ │ ├── listNamespaces.js │ │ ├── listPeers.js │ │ ├── lookupPeer.js │ │ ├── manifest.js │ │ ├── manifest │ │ │ ├── add.js │ │ │ ├── get.js │ │ │ ├── lookup.js │ │ │ ├── remove.js │ │ │ ├── self.js │ │ │ └── set.js │ │ ├── merge.js │ │ ├── net.js │ │ ├── net │ │ │ ├── addr.js │ │ │ ├── connections.js │ │ │ ├── findPeers.js │ │ │ ├── identify.js │ │ │ └── ping.js │ │ ├── netAddr.js │ │ ├── netConnections.js │ │ ├── ping.js │ │ ├── publish.js │ │ ├── publishRaw.js │ │ ├── publishSchema.js │ │ ├── push.js │ │ ├── putData.js │ │ ├── query.js │ │ ├── shutdown.js │ │ ├── statement.js │ │ ├── status.js │ │ └── validate.js │ │ ├── index.js │ │ └── util.js ├── common │ └── util.js ├── metadata │ ├── jqStream.js │ ├── schema.js │ ├── schemas │ │ ├── com.snowplowanalytics.self-desc-jsonschema-1-0-0.json │ │ └── io.mediachain.jsonld-jsonschema-1-0-0.json │ ├── schemaver.js │ └── serialize.js ├── model │ ├── query_result.js │ └── statement.js ├── peer │ ├── constants.js │ ├── datastore.js │ ├── db │ │ ├── index.js │ │ └── migrations │ │ │ └── 20161221093425_create_tables.js │ ├── directory.js │ ├── identity.js │ ├── libp2p_node.js │ ├── merge.js │ ├── node.js │ ├── push.js │ ├── repl │ │ ├── commands │ │ │ ├── query.js │ │ │ └── repl.js │ │ ├── index.js │ │ └── util.js │ └── util.js └── protobuf │ ├── dir.proto │ ├── index.js │ ├── manifest.proto │ ├── node.proto │ ├── stmt.proto │ └── types.js └── test ├── common └── util_test.js ├── config.js ├── metadata ├── schema_test.js └── signature_test.js ├── model ├── query_result_test.js └── statement_test.js ├── peer ├── datastore_test.js ├── directory_test.js ├── identity_test.js ├── libp2p_node_test.js ├── merge_test.js ├── node_info_test.js ├── ping_test.js ├── push_test.js ├── remote_query_test.js ├── statement_db_test.js └── util_test.js ├── resources ├── fixtures │ ├── concat-message-signature.js │ └── test-statements.js ├── generate_test_publisher_ids.js ├── generate_testing_ids.js ├── publisher_ids │ ├── 4XTTM2UhNoDF1EfwonksnNN1zRGcZCMFutDRMtXYgciwiLzCf.id │ ├── 4XTTM33j1mHcbg5ctzCmsmvaiUCixX5jxTbkKHm2vCokC6uxw.id │ ├── 4XTTM3NVNm4VryWP91VXdEeoDXC2NzZkKRvUmPMnb1JdosJFk.id │ ├── 4XTTM6UEBfKSWUnC4KERbW8hesAAAGgrZcu68AXqihsFvU8w6.id │ ├── 4XTTM6UNDgjn7Y6FqnGyKiRf7NmqKzi7ofeh3ZRzFGmv5tkyQ.id │ ├── 4XTTM7xSyXgsrwG83aXEKt5Edp9LFmqxCxum1ABXAXDw5QHHy.id │ ├── 4XTTMATDw8fXWT5BGGaoc4A2sEbnLmMYBbekYnznDJ9K8c2cg.id │ ├── 4XTTMAhtTw2zgTVa5XFxHKeXcJGftdCVmsGR5zYzGspdLr2qf.id │ ├── 4XTTMB2cFTq23PTFGEdeT93cLdNptcSUekShxoUp5vzkjbkA4.id │ ├── 4XTTMBauYYKRkmWLyDwdU2sb4JgQX7VoZwwkPpmeFqrQoWWt7.id │ ├── 4XTTMCh4xe8E49486DUFko3cmqak3vrymKd5kMUBAVhMbxUkj.id │ ├── 4XTTMDi5msCJgo8GFAHvZkE57cCK4QCPRQSrUSQcPMqQexT3E.id │ ├── 4XTTMEj74YR3oT18Uh1ZR1DbWpG5BXftvcSnyrwC6JbgS9AcG.id │ ├── 4XTTMF7HGrVmmnFATLrCMwboCDxnnm6CPcC8dyE8Tigfb5kYh.id │ ├── 4XTTMFB2m8B8ShvUiXNuywUmK6r3e8YM5fsQsLArHMeUpjhWk.id │ ├── 4XTTMFSVc6B4fRt5s71438dXcPE9NBPVQ5sRow1qtcARARHCJ.id │ ├── 4XTTMFVjr2Zga6A1PF4GPZ43fSqvgWUfR8T3seEsfEBe3PUDi.id │ ├── 4XTTMGbTZFhxPnpwUmC8JaQS6NHeLj98TdbdjSeAT9qupk5x9.id │ ├── 4XTTMHa54HQoW8Lp6nLUzKt5QwZAUxux6DDshbBN5w4WNj759.id │ ├── 4XTTMHhM2e1nPVRgN6M7WM8WUcCnVwYwb8aS3ou9uKg5rdrHX.id │ └── concat │ │ └── 4XTTM4JKrrBeAK6qXmo8FoKmT5RkfjeXfZrnWjJNw9fKvPnEs.privateKey └── test_node_ids.json └── util.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/.babelrc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .git/ 3 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/README.md -------------------------------------------------------------------------------- /bin/aleph.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require('../lib/peer/repl') 4 | -------------------------------------------------------------------------------- /bin/mcclient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/bin/mcclient.js -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/docs/build.sh -------------------------------------------------------------------------------- /docs/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/docs/clean.sh -------------------------------------------------------------------------------- /docs/jsdoc-conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/docs/jsdoc-conf.json -------------------------------------------------------------------------------- /docs/publish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/docs/publish.js -------------------------------------------------------------------------------- /flow-typed/npm/chai_v3.5.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/flow-typed/npm/chai_v3.5.x.js -------------------------------------------------------------------------------- /flow-typed/npm/flow-bin_v0.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/flow-typed/npm/flow-bin_v0.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/knex_v0.12.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/flow-typed/npm/knex_v0.12.x.js -------------------------------------------------------------------------------- /flow-typed/npm/lodash_v4.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/flow-typed/npm/lodash_v4.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/mkdirp_v0.5.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/flow-typed/npm/mkdirp_v0.5.x.js -------------------------------------------------------------------------------- /flow-typed/npm/mocha_v3.1.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/flow-typed/npm/mocha_v3.1.x.js -------------------------------------------------------------------------------- /integration-test/concat-dependencies/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/integration-test/concat-dependencies/Dockerfile -------------------------------------------------------------------------------- /integration-test/concat-dependencies/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/integration-test/concat-dependencies/build.sh -------------------------------------------------------------------------------- /integration-test/concat/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/integration-test/concat/Dockerfile -------------------------------------------------------------------------------- /integration-test/concat/test-identities/mcdir/identity.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/integration-test/concat/test-identities/mcdir/identity.node -------------------------------------------------------------------------------- /integration-test/concat/test-identities/mcnode/identity.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/integration-test/concat/test-identities/mcnode/identity.node -------------------------------------------------------------------------------- /integration-test/concat/test-identities/mcnode/identity.publisher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/integration-test/concat/test-identities/mcnode/identity.publisher -------------------------------------------------------------------------------- /integration-test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/integration-test/index.js -------------------------------------------------------------------------------- /integration-test/merge_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/integration-test/merge_test.js -------------------------------------------------------------------------------- /integration-test/node_info_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/integration-test/node_info_test.js -------------------------------------------------------------------------------- /integration-test/ping_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/integration-test/ping_test.js -------------------------------------------------------------------------------- /integration-test/push_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/integration-test/push_test.js -------------------------------------------------------------------------------- /integration-test/query_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/integration-test/query_test.js -------------------------------------------------------------------------------- /integration-test/remote_data_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/integration-test/remote_data_test.js -------------------------------------------------------------------------------- /integration-test/run-in-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/integration-test/run-in-docker.sh -------------------------------------------------------------------------------- /integration-test/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/integration-test/util.js -------------------------------------------------------------------------------- /npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/npm-shrinkwrap.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/package.json -------------------------------------------------------------------------------- /pre-push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/pre-push.sh -------------------------------------------------------------------------------- /scripts/build-jq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/scripts/build-jq.js -------------------------------------------------------------------------------- /scripts/dataset-fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/scripts/dataset-fetch.py -------------------------------------------------------------------------------- /scripts/ingest-parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/scripts/ingest-parallel.py -------------------------------------------------------------------------------- /scripts/ingest.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | mcclient putData $1 > /dev/null 4 | 5 | -------------------------------------------------------------------------------- /scripts/io.mediachain.indexer-image-jsonschema-1-0-0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/scripts/io.mediachain.indexer-image-jsonschema-1-0-0.json -------------------------------------------------------------------------------- /scripts/publish-500px.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/scripts/publish-500px.sh -------------------------------------------------------------------------------- /scripts/publish-dpla.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/scripts/publish-dpla.sh -------------------------------------------------------------------------------- /scripts/publish-flickr-c10.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/scripts/publish-flickr-c10.sh -------------------------------------------------------------------------------- /scripts/publish-flickr-c100.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/scripts/publish-flickr-c100.sh -------------------------------------------------------------------------------- /scripts/publish-flickr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/scripts/publish-flickr.sh -------------------------------------------------------------------------------- /scripts/publish-pexels.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/scripts/publish-pexels.sh -------------------------------------------------------------------------------- /scripts/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/scripts/publish.sh -------------------------------------------------------------------------------- /scripts/validate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/scripts/validate.sh -------------------------------------------------------------------------------- /src/client/api/RestClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/api/RestClient.js -------------------------------------------------------------------------------- /src/client/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/api/index.js -------------------------------------------------------------------------------- /src/client/cli/commands/archive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/archive.js -------------------------------------------------------------------------------- /src/client/cli/commands/archive/dump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/archive/dump.js -------------------------------------------------------------------------------- /src/client/cli/commands/archive/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/archive/load.js -------------------------------------------------------------------------------- /src/client/cli/commands/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/auth.js -------------------------------------------------------------------------------- /src/client/cli/commands/auth/grant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/auth/grant.js -------------------------------------------------------------------------------- /src/client/cli/commands/auth/revoke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/auth/revoke.js -------------------------------------------------------------------------------- /src/client/cli/commands/auth/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/auth/show.js -------------------------------------------------------------------------------- /src/client/cli/commands/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/config.js -------------------------------------------------------------------------------- /src/client/cli/commands/config/dir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/config/dir.js -------------------------------------------------------------------------------- /src/client/cli/commands/config/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/config/info.js -------------------------------------------------------------------------------- /src/client/cli/commands/config/nat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/config/nat.js -------------------------------------------------------------------------------- /src/client/cli/commands/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/data.js -------------------------------------------------------------------------------- /src/client/cli/commands/data/compact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/data/compact.js -------------------------------------------------------------------------------- /src/client/cli/commands/data/gc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/data/gc.js -------------------------------------------------------------------------------- /src/client/cli/commands/data/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/data/get.js -------------------------------------------------------------------------------- /src/client/cli/commands/data/keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/data/keys.js -------------------------------------------------------------------------------- /src/client/cli/commands/data/put.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/data/put.js -------------------------------------------------------------------------------- /src/client/cli/commands/data/sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/data/sync.js -------------------------------------------------------------------------------- /src/client/cli/commands/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/delete.js -------------------------------------------------------------------------------- /src/client/cli/commands/getData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/getData.js -------------------------------------------------------------------------------- /src/client/cli/commands/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/id.js -------------------------------------------------------------------------------- /src/client/cli/commands/listNamespaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/listNamespaces.js -------------------------------------------------------------------------------- /src/client/cli/commands/listPeers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/listPeers.js -------------------------------------------------------------------------------- /src/client/cli/commands/lookupPeer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/lookupPeer.js -------------------------------------------------------------------------------- /src/client/cli/commands/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/manifest.js -------------------------------------------------------------------------------- /src/client/cli/commands/manifest/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/manifest/add.js -------------------------------------------------------------------------------- /src/client/cli/commands/manifest/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/manifest/get.js -------------------------------------------------------------------------------- /src/client/cli/commands/manifest/lookup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/manifest/lookup.js -------------------------------------------------------------------------------- /src/client/cli/commands/manifest/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/manifest/remove.js -------------------------------------------------------------------------------- /src/client/cli/commands/manifest/self.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/manifest/self.js -------------------------------------------------------------------------------- /src/client/cli/commands/manifest/set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/manifest/set.js -------------------------------------------------------------------------------- /src/client/cli/commands/merge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/merge.js -------------------------------------------------------------------------------- /src/client/cli/commands/net.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/net.js -------------------------------------------------------------------------------- /src/client/cli/commands/net/addr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/net/addr.js -------------------------------------------------------------------------------- /src/client/cli/commands/net/connections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/net/connections.js -------------------------------------------------------------------------------- /src/client/cli/commands/net/findPeers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/net/findPeers.js -------------------------------------------------------------------------------- /src/client/cli/commands/net/identify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/net/identify.js -------------------------------------------------------------------------------- /src/client/cli/commands/net/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/net/ping.js -------------------------------------------------------------------------------- /src/client/cli/commands/netAddr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/netAddr.js -------------------------------------------------------------------------------- /src/client/cli/commands/netConnections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/netConnections.js -------------------------------------------------------------------------------- /src/client/cli/commands/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/ping.js -------------------------------------------------------------------------------- /src/client/cli/commands/publish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/publish.js -------------------------------------------------------------------------------- /src/client/cli/commands/publishRaw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/publishRaw.js -------------------------------------------------------------------------------- /src/client/cli/commands/publishSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/publishSchema.js -------------------------------------------------------------------------------- /src/client/cli/commands/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/push.js -------------------------------------------------------------------------------- /src/client/cli/commands/putData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/putData.js -------------------------------------------------------------------------------- /src/client/cli/commands/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/query.js -------------------------------------------------------------------------------- /src/client/cli/commands/shutdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/shutdown.js -------------------------------------------------------------------------------- /src/client/cli/commands/statement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/statement.js -------------------------------------------------------------------------------- /src/client/cli/commands/status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/status.js -------------------------------------------------------------------------------- /src/client/cli/commands/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/commands/validate.js -------------------------------------------------------------------------------- /src/client/cli/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/index.js -------------------------------------------------------------------------------- /src/client/cli/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/client/cli/util.js -------------------------------------------------------------------------------- /src/common/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/common/util.js -------------------------------------------------------------------------------- /src/metadata/jqStream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/metadata/jqStream.js -------------------------------------------------------------------------------- /src/metadata/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/metadata/schema.js -------------------------------------------------------------------------------- /src/metadata/schemas/com.snowplowanalytics.self-desc-jsonschema-1-0-0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/metadata/schemas/com.snowplowanalytics.self-desc-jsonschema-1-0-0.json -------------------------------------------------------------------------------- /src/metadata/schemas/io.mediachain.jsonld-jsonschema-1-0-0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/metadata/schemas/io.mediachain.jsonld-jsonschema-1-0-0.json -------------------------------------------------------------------------------- /src/metadata/schemaver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/metadata/schemaver.js -------------------------------------------------------------------------------- /src/metadata/serialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/metadata/serialize.js -------------------------------------------------------------------------------- /src/model/query_result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/model/query_result.js -------------------------------------------------------------------------------- /src/model/statement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/model/statement.js -------------------------------------------------------------------------------- /src/peer/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/peer/constants.js -------------------------------------------------------------------------------- /src/peer/datastore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/peer/datastore.js -------------------------------------------------------------------------------- /src/peer/db/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/peer/db/index.js -------------------------------------------------------------------------------- /src/peer/db/migrations/20161221093425_create_tables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/peer/db/migrations/20161221093425_create_tables.js -------------------------------------------------------------------------------- /src/peer/directory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/peer/directory.js -------------------------------------------------------------------------------- /src/peer/identity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/peer/identity.js -------------------------------------------------------------------------------- /src/peer/libp2p_node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/peer/libp2p_node.js -------------------------------------------------------------------------------- /src/peer/merge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/peer/merge.js -------------------------------------------------------------------------------- /src/peer/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/peer/node.js -------------------------------------------------------------------------------- /src/peer/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/peer/push.js -------------------------------------------------------------------------------- /src/peer/repl/commands/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/peer/repl/commands/query.js -------------------------------------------------------------------------------- /src/peer/repl/commands/repl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/peer/repl/commands/repl.js -------------------------------------------------------------------------------- /src/peer/repl/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/peer/repl/index.js -------------------------------------------------------------------------------- /src/peer/repl/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/peer/repl/util.js -------------------------------------------------------------------------------- /src/peer/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/peer/util.js -------------------------------------------------------------------------------- /src/protobuf/dir.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/protobuf/dir.proto -------------------------------------------------------------------------------- /src/protobuf/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/protobuf/index.js -------------------------------------------------------------------------------- /src/protobuf/manifest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/protobuf/manifest.proto -------------------------------------------------------------------------------- /src/protobuf/node.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/protobuf/node.proto -------------------------------------------------------------------------------- /src/protobuf/stmt.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/protobuf/stmt.proto -------------------------------------------------------------------------------- /src/protobuf/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/src/protobuf/types.js -------------------------------------------------------------------------------- /test/common/util_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/common/util_test.js -------------------------------------------------------------------------------- /test/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/config.js -------------------------------------------------------------------------------- /test/metadata/schema_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/metadata/schema_test.js -------------------------------------------------------------------------------- /test/metadata/signature_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/metadata/signature_test.js -------------------------------------------------------------------------------- /test/model/query_result_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/model/query_result_test.js -------------------------------------------------------------------------------- /test/model/statement_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/model/statement_test.js -------------------------------------------------------------------------------- /test/peer/datastore_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/peer/datastore_test.js -------------------------------------------------------------------------------- /test/peer/directory_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/peer/directory_test.js -------------------------------------------------------------------------------- /test/peer/identity_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/peer/identity_test.js -------------------------------------------------------------------------------- /test/peer/libp2p_node_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/peer/libp2p_node_test.js -------------------------------------------------------------------------------- /test/peer/merge_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/peer/merge_test.js -------------------------------------------------------------------------------- /test/peer/node_info_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/peer/node_info_test.js -------------------------------------------------------------------------------- /test/peer/ping_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/peer/ping_test.js -------------------------------------------------------------------------------- /test/peer/push_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/peer/push_test.js -------------------------------------------------------------------------------- /test/peer/remote_query_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/peer/remote_query_test.js -------------------------------------------------------------------------------- /test/peer/statement_db_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/peer/statement_db_test.js -------------------------------------------------------------------------------- /test/peer/util_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/peer/util_test.js -------------------------------------------------------------------------------- /test/resources/fixtures/concat-message-signature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/resources/fixtures/concat-message-signature.js -------------------------------------------------------------------------------- /test/resources/fixtures/test-statements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/resources/fixtures/test-statements.js -------------------------------------------------------------------------------- /test/resources/generate_test_publisher_ids.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/resources/generate_test_publisher_ids.js -------------------------------------------------------------------------------- /test/resources/generate_testing_ids.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/resources/generate_testing_ids.js -------------------------------------------------------------------------------- /test/resources/publisher_ids/4XTTM2UhNoDF1EfwonksnNN1zRGcZCMFutDRMtXYgciwiLzCf.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/resources/publisher_ids/4XTTM2UhNoDF1EfwonksnNN1zRGcZCMFutDRMtXYgciwiLzCf.id -------------------------------------------------------------------------------- /test/resources/publisher_ids/4XTTM33j1mHcbg5ctzCmsmvaiUCixX5jxTbkKHm2vCokC6uxw.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/resources/publisher_ids/4XTTM33j1mHcbg5ctzCmsmvaiUCixX5jxTbkKHm2vCokC6uxw.id -------------------------------------------------------------------------------- /test/resources/publisher_ids/4XTTM3NVNm4VryWP91VXdEeoDXC2NzZkKRvUmPMnb1JdosJFk.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/resources/publisher_ids/4XTTM3NVNm4VryWP91VXdEeoDXC2NzZkKRvUmPMnb1JdosJFk.id -------------------------------------------------------------------------------- /test/resources/publisher_ids/4XTTM6UEBfKSWUnC4KERbW8hesAAAGgrZcu68AXqihsFvU8w6.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/resources/publisher_ids/4XTTM6UEBfKSWUnC4KERbW8hesAAAGgrZcu68AXqihsFvU8w6.id -------------------------------------------------------------------------------- /test/resources/publisher_ids/4XTTM6UNDgjn7Y6FqnGyKiRf7NmqKzi7ofeh3ZRzFGmv5tkyQ.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/resources/publisher_ids/4XTTM6UNDgjn7Y6FqnGyKiRf7NmqKzi7ofeh3ZRzFGmv5tkyQ.id -------------------------------------------------------------------------------- /test/resources/publisher_ids/4XTTM7xSyXgsrwG83aXEKt5Edp9LFmqxCxum1ABXAXDw5QHHy.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/resources/publisher_ids/4XTTM7xSyXgsrwG83aXEKt5Edp9LFmqxCxum1ABXAXDw5QHHy.id -------------------------------------------------------------------------------- /test/resources/publisher_ids/4XTTMATDw8fXWT5BGGaoc4A2sEbnLmMYBbekYnznDJ9K8c2cg.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/resources/publisher_ids/4XTTMATDw8fXWT5BGGaoc4A2sEbnLmMYBbekYnznDJ9K8c2cg.id -------------------------------------------------------------------------------- /test/resources/publisher_ids/4XTTMAhtTw2zgTVa5XFxHKeXcJGftdCVmsGR5zYzGspdLr2qf.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/resources/publisher_ids/4XTTMAhtTw2zgTVa5XFxHKeXcJGftdCVmsGR5zYzGspdLr2qf.id -------------------------------------------------------------------------------- /test/resources/publisher_ids/4XTTMB2cFTq23PTFGEdeT93cLdNptcSUekShxoUp5vzkjbkA4.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/resources/publisher_ids/4XTTMB2cFTq23PTFGEdeT93cLdNptcSUekShxoUp5vzkjbkA4.id -------------------------------------------------------------------------------- /test/resources/publisher_ids/4XTTMBauYYKRkmWLyDwdU2sb4JgQX7VoZwwkPpmeFqrQoWWt7.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/resources/publisher_ids/4XTTMBauYYKRkmWLyDwdU2sb4JgQX7VoZwwkPpmeFqrQoWWt7.id -------------------------------------------------------------------------------- /test/resources/publisher_ids/4XTTMCh4xe8E49486DUFko3cmqak3vrymKd5kMUBAVhMbxUkj.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/resources/publisher_ids/4XTTMCh4xe8E49486DUFko3cmqak3vrymKd5kMUBAVhMbxUkj.id -------------------------------------------------------------------------------- /test/resources/publisher_ids/4XTTMDi5msCJgo8GFAHvZkE57cCK4QCPRQSrUSQcPMqQexT3E.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/resources/publisher_ids/4XTTMDi5msCJgo8GFAHvZkE57cCK4QCPRQSrUSQcPMqQexT3E.id -------------------------------------------------------------------------------- /test/resources/publisher_ids/4XTTMEj74YR3oT18Uh1ZR1DbWpG5BXftvcSnyrwC6JbgS9AcG.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/resources/publisher_ids/4XTTMEj74YR3oT18Uh1ZR1DbWpG5BXftvcSnyrwC6JbgS9AcG.id -------------------------------------------------------------------------------- /test/resources/publisher_ids/4XTTMF7HGrVmmnFATLrCMwboCDxnnm6CPcC8dyE8Tigfb5kYh.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/resources/publisher_ids/4XTTMF7HGrVmmnFATLrCMwboCDxnnm6CPcC8dyE8Tigfb5kYh.id -------------------------------------------------------------------------------- /test/resources/publisher_ids/4XTTMFB2m8B8ShvUiXNuywUmK6r3e8YM5fsQsLArHMeUpjhWk.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/resources/publisher_ids/4XTTMFB2m8B8ShvUiXNuywUmK6r3e8YM5fsQsLArHMeUpjhWk.id -------------------------------------------------------------------------------- /test/resources/publisher_ids/4XTTMFSVc6B4fRt5s71438dXcPE9NBPVQ5sRow1qtcARARHCJ.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/resources/publisher_ids/4XTTMFSVc6B4fRt5s71438dXcPE9NBPVQ5sRow1qtcARARHCJ.id -------------------------------------------------------------------------------- /test/resources/publisher_ids/4XTTMFVjr2Zga6A1PF4GPZ43fSqvgWUfR8T3seEsfEBe3PUDi.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/resources/publisher_ids/4XTTMFVjr2Zga6A1PF4GPZ43fSqvgWUfR8T3seEsfEBe3PUDi.id -------------------------------------------------------------------------------- /test/resources/publisher_ids/4XTTMGbTZFhxPnpwUmC8JaQS6NHeLj98TdbdjSeAT9qupk5x9.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/resources/publisher_ids/4XTTMGbTZFhxPnpwUmC8JaQS6NHeLj98TdbdjSeAT9qupk5x9.id -------------------------------------------------------------------------------- /test/resources/publisher_ids/4XTTMHa54HQoW8Lp6nLUzKt5QwZAUxux6DDshbBN5w4WNj759.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/resources/publisher_ids/4XTTMHa54HQoW8Lp6nLUzKt5QwZAUxux6DDshbBN5w4WNj759.id -------------------------------------------------------------------------------- /test/resources/publisher_ids/4XTTMHhM2e1nPVRgN6M7WM8WUcCnVwYwb8aS3ou9uKg5rdrHX.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/resources/publisher_ids/4XTTMHhM2e1nPVRgN6M7WM8WUcCnVwYwb8aS3ou9uKg5rdrHX.id -------------------------------------------------------------------------------- /test/resources/publisher_ids/concat/4XTTM4JKrrBeAK6qXmo8FoKmT5RkfjeXfZrnWjJNw9fKvPnEs.privateKey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/resources/publisher_ids/concat/4XTTM4JKrrBeAK6qXmo8FoKmT5RkfjeXfZrnWjJNw9fKvPnEs.privateKey -------------------------------------------------------------------------------- /test/resources/test_node_ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/resources/test_node_ids.json -------------------------------------------------------------------------------- /test/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediachain/aleph/HEAD/test/util.js --------------------------------------------------------------------------------