├── .eslintignore ├── .github ├── pull_request_template.md └── workflows │ ├── linters.yml │ ├── pull_requests.yml │ ├── release.yml │ └── tests.yml ├── .gitignore ├── .nvmrc ├── .releaserc ├── .snyk ├── LICENSE ├── README.md ├── __mocks__ └── @digitalbazaar │ └── http-client.js ├── commitlint.config.js ├── docs ├── MerkleProofAlgorithm.md ├── OnChainOffChain.md ├── SelectivePrivacy.md └── VulnerabilityPatch-SpoofingOtherCerts.md ├── examples ├── sample-key ├── schema.json ├── v2 │ ├── raw-documents │ │ ├── example.0.json │ │ ├── example.0.opencert │ │ └── example.0.tt │ ├── signed-documents │ │ ├── did-invalid.json │ │ ├── did.json │ │ └── dnsDid.json │ ├── unsigned-documents │ │ ├── did.json │ │ └── dnsDid.json │ └── wrapped-documents │ │ ├── example.0.json │ │ ├── example.0.opencert │ │ └── example.0.tt └── v3 │ └── signed-documents │ ├── did-v3.json │ └── dnsdid-invalid-v3.json ├── package.json ├── performance-tests ├── README.md ├── unwrapped_document.json ├── unwrapped_document_wImage.json └── wrap-performance-test.ts ├── scripts ├── benchmark.sh └── makeDocuments.sh ├── src ├── __tests__ │ ├── encrypt.e2e.test.ts │ ├── error-handling.test.ts │ ├── example.json │ ├── fixture │ │ ├── 2.0 │ │ │ ├── custom-schema.json │ │ │ ├── schema.json │ │ │ ├── unwrapped-example.1.json │ │ │ ├── unwrapped-example.2.json │ │ │ ├── valid-custom-schema-document.json │ │ │ ├── wrapped-example.1.json │ │ │ └── wrapped-example.2.json │ │ ├── 3.0 │ │ │ ├── did-wrapped.json │ │ │ ├── dnsdid-wrapped.json │ │ │ ├── invalid-custom-schema-document.json │ │ │ ├── invalid-open-attestation-document.json │ │ │ ├── invalid-schema.json │ │ │ ├── minimal-vc.json │ │ │ ├── schema.json │ │ │ ├── valid-custom-schema-document.json │ │ │ ├── valid-open-attestation-document.json │ │ │ └── wrapped-open-attestation-document.json │ │ ├── did-dns-decrypted.json │ │ ├── did-dns-encrypted.json │ │ ├── unsigned-did.json │ │ ├── unsigned-dnsDid.json │ │ └── valid-open-attestation-document.json │ ├── gas-station.test.ts │ ├── sign.v2.e2e.test.ts │ ├── sign.v3.e2e.test.ts │ ├── unwrap.test.ts │ ├── verify.v2.e2e.test.ts │ ├── verify.v3.e2e.test.ts │ ├── wallet.test.ts │ ├── wrap.test.ts │ ├── wrap.v2.e2e.test.ts │ └── wrap.v3.e2e.test.ts ├── commands │ ├── command-types.ts │ ├── config.ts │ ├── config │ │ ├── config.type.ts │ │ └── create.ts │ ├── decrypt.ts │ ├── deploy.ts │ ├── deploy │ │ ├── deploy.types.ts │ │ ├── document-store.ts │ │ ├── title-escrow-factory.ts │ │ └── token-registry.ts │ ├── dns.ts │ ├── dns │ │ ├── txt-record.ts │ │ └── txt-record │ │ │ ├── __test__ │ │ │ └── get.test.ts │ │ │ ├── create.ts │ │ │ ├── dns-command.type.ts │ │ │ └── get.ts │ ├── document-store.ts │ ├── document-store │ │ ├── document-store-command.type.ts │ │ ├── grant-role.ts │ │ ├── issue.ts │ │ ├── revoke-role.ts │ │ ├── revoke.ts │ │ └── transfer-ownership.ts │ ├── encrypt.ts │ ├── filter.ts │ ├── shared.ts │ ├── sign.ts │ ├── title-escrow.ts │ ├── title-escrow │ │ ├── accept-surrendered.ts │ │ ├── change-holder.ts │ │ ├── endorse-change-of-owner.ts │ │ ├── endorse-transfer-of-owner.ts │ │ ├── nominate-change-of-owner.ts │ │ ├── reject-surrendered.ts │ │ ├── surrender-document.ts │ │ └── title-escrow-command.type.ts │ ├── token-registry.ts │ ├── token-registry │ │ ├── issue.ts │ │ ├── mint.ts │ │ └── token-registry-command.type.ts │ ├── transaction.ts │ ├── transaction │ │ ├── cancel.ts │ │ └── transaction-command.type.ts │ ├── unwrap.ts │ ├── verify.ts │ ├── wallet.ts │ ├── wallet │ │ ├── create.ts │ │ ├── decrypt.ts │ │ ├── encrypt.ts │ │ └── wallet.type.ts │ └── wrap.ts ├── common │ ├── gas-station │ │ └── index.ts │ └── networks.ts ├── implementations │ ├── config │ │ ├── __tests__ │ │ │ ├── config-reference-v3.json │ │ │ ├── create.test.ts │ │ │ ├── error-config-file.json │ │ │ ├── expected-config-file-output-v2.json │ │ │ ├── expected-config-file-output-v3.json │ │ │ ├── helpers.test.ts │ │ │ ├── input-config-file.json │ │ │ └── wallet.json │ │ ├── create.ts │ │ ├── helpers.ts │ │ └── types.ts │ ├── decrypt │ │ ├── decrypt.test.ts │ │ ├── decrypt.ts │ │ └── index.ts │ ├── deploy │ │ ├── document-store │ │ │ ├── document-store.test.ts │ │ │ ├── document-store.ts │ │ │ └── index.ts │ │ ├── title-escrow-factory │ │ │ ├── index.ts │ │ │ ├── title-escrow-factory.test.ts │ │ │ └── title-escrow-factory.ts │ │ └── token-registry │ │ │ ├── helpers.test.ts │ │ │ ├── helpers.ts │ │ │ ├── index.ts │ │ │ ├── token-registry.test.ts │ │ │ └── token-registry.ts │ ├── document-store │ │ ├── document-store-roles.ts │ │ ├── grant-role.test.ts │ │ ├── grant-role.ts │ │ ├── issue.test.ts │ │ ├── issue.ts │ │ ├── revoke-role.test.ts │ │ ├── revoke-role.ts │ │ ├── revoke.test.ts │ │ ├── revoke.ts │ │ ├── transfer-ownership.test.ts │ │ └── transfer-ownership.ts │ ├── encrypt │ │ ├── encrypt.ts │ │ └── index.ts │ ├── filter │ │ ├── filter.ts │ │ └── index.ts │ ├── sign │ │ └── index.ts │ ├── title-escrow │ │ ├── acceptSurrendered.test.ts │ │ ├── acceptSurrendered.ts │ │ ├── endorseNominatedBeneficiary.test.ts │ │ ├── endorseNominatedBeneficiary.ts │ │ ├── helpers.ts │ │ ├── nominateBeneficiary.test.ts │ │ ├── nominateBeneficiary.ts │ │ ├── rejectSurrendered.test.ts │ │ ├── rejectSurrendered.ts │ │ ├── surrenderDocument.test.ts │ │ ├── surrenderDocument.ts │ │ ├── transferHolder.test.ts │ │ ├── transferHolder.ts │ │ ├── transferOwners.test.ts │ │ └── transferOwners.ts │ ├── token-registry │ │ ├── issue.test.ts │ │ └── issue.ts │ ├── transaction │ │ ├── index.ts │ │ ├── transaction.test.ts │ │ └── transaction.ts │ ├── unwrap │ │ ├── index.ts │ │ └── unwrap.ts │ ├── utils │ │ ├── __tests__ │ │ │ ├── key.file │ │ │ ├── wallet.json │ │ │ └── wallet.test.ts │ │ ├── cli-config.ts │ │ ├── disk.ts │ │ ├── dryRun.ts │ │ ├── github-version.test.ts │ │ ├── github-version.ts │ │ ├── progress.ts │ │ ├── validation.test.ts │ │ ├── validation.ts │ │ ├── wallet.ts │ │ └── web-request.ts │ ├── wallet │ │ ├── __tests__ │ │ │ ├── create.test.ts │ │ │ └── encrypt.test.ts │ │ ├── create.ts │ │ └── encrypt.ts │ └── wrap │ │ ├── ajvErrorTransformer │ │ ├── ajvErrorTransformer.test.ts │ │ ├── ajvErrorTransformer.ts │ │ └── index.ts │ │ ├── index.ts │ │ └── wrap.ts ├── index.ts ├── logger.ts ├── utils.test.ts └── utils.ts ├── tsconfig.json └── tsconfig.prod.json /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | dist 4 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/linters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/.github/workflows/linters.yml -------------------------------------------------------------------------------- /.github/workflows/pull_requests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/.github/workflows/pull_requests.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/hydrogen -------------------------------------------------------------------------------- /.releaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/.releaserc -------------------------------------------------------------------------------- /.snyk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/.snyk -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/README.md -------------------------------------------------------------------------------- /__mocks__/@digitalbazaar/http-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/__mocks__/@digitalbazaar/http-client.js -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /docs/MerkleProofAlgorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/docs/MerkleProofAlgorithm.md -------------------------------------------------------------------------------- /docs/OnChainOffChain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/docs/OnChainOffChain.md -------------------------------------------------------------------------------- /docs/SelectivePrivacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/docs/SelectivePrivacy.md -------------------------------------------------------------------------------- /docs/VulnerabilityPatch-SpoofingOtherCerts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/docs/VulnerabilityPatch-SpoofingOtherCerts.md -------------------------------------------------------------------------------- /examples/sample-key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/examples/sample-key -------------------------------------------------------------------------------- /examples/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/examples/schema.json -------------------------------------------------------------------------------- /examples/v2/raw-documents/example.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/examples/v2/raw-documents/example.0.json -------------------------------------------------------------------------------- /examples/v2/raw-documents/example.0.opencert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/examples/v2/raw-documents/example.0.opencert -------------------------------------------------------------------------------- /examples/v2/raw-documents/example.0.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/examples/v2/raw-documents/example.0.tt -------------------------------------------------------------------------------- /examples/v2/signed-documents/did-invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/examples/v2/signed-documents/did-invalid.json -------------------------------------------------------------------------------- /examples/v2/signed-documents/did.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/examples/v2/signed-documents/did.json -------------------------------------------------------------------------------- /examples/v2/signed-documents/dnsDid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/examples/v2/signed-documents/dnsDid.json -------------------------------------------------------------------------------- /examples/v2/unsigned-documents/did.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/examples/v2/unsigned-documents/did.json -------------------------------------------------------------------------------- /examples/v2/unsigned-documents/dnsDid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/examples/v2/unsigned-documents/dnsDid.json -------------------------------------------------------------------------------- /examples/v2/wrapped-documents/example.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/examples/v2/wrapped-documents/example.0.json -------------------------------------------------------------------------------- /examples/v2/wrapped-documents/example.0.opencert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/examples/v2/wrapped-documents/example.0.opencert -------------------------------------------------------------------------------- /examples/v2/wrapped-documents/example.0.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/examples/v2/wrapped-documents/example.0.tt -------------------------------------------------------------------------------- /examples/v3/signed-documents/did-v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/examples/v3/signed-documents/did-v3.json -------------------------------------------------------------------------------- /examples/v3/signed-documents/dnsdid-invalid-v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/examples/v3/signed-documents/dnsdid-invalid-v3.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/package.json -------------------------------------------------------------------------------- /performance-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/performance-tests/README.md -------------------------------------------------------------------------------- /performance-tests/unwrapped_document.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/performance-tests/unwrapped_document.json -------------------------------------------------------------------------------- /performance-tests/unwrapped_document_wImage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/performance-tests/unwrapped_document_wImage.json -------------------------------------------------------------------------------- /performance-tests/wrap-performance-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/performance-tests/wrap-performance-test.ts -------------------------------------------------------------------------------- /scripts/benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/scripts/benchmark.sh -------------------------------------------------------------------------------- /scripts/makeDocuments.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/scripts/makeDocuments.sh -------------------------------------------------------------------------------- /src/__tests__/encrypt.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/__tests__/encrypt.e2e.test.ts -------------------------------------------------------------------------------- /src/__tests__/error-handling.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/__tests__/error-handling.test.ts -------------------------------------------------------------------------------- /src/__tests__/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/__tests__/example.json -------------------------------------------------------------------------------- /src/__tests__/fixture/2.0/custom-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/__tests__/fixture/2.0/custom-schema.json -------------------------------------------------------------------------------- /src/__tests__/fixture/2.0/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/__tests__/fixture/2.0/schema.json -------------------------------------------------------------------------------- /src/__tests__/fixture/2.0/unwrapped-example.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/__tests__/fixture/2.0/unwrapped-example.1.json -------------------------------------------------------------------------------- /src/__tests__/fixture/2.0/unwrapped-example.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/__tests__/fixture/2.0/unwrapped-example.2.json -------------------------------------------------------------------------------- /src/__tests__/fixture/2.0/valid-custom-schema-document.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/__tests__/fixture/2.0/valid-custom-schema-document.json -------------------------------------------------------------------------------- /src/__tests__/fixture/2.0/wrapped-example.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/__tests__/fixture/2.0/wrapped-example.1.json -------------------------------------------------------------------------------- /src/__tests__/fixture/2.0/wrapped-example.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/__tests__/fixture/2.0/wrapped-example.2.json -------------------------------------------------------------------------------- /src/__tests__/fixture/3.0/did-wrapped.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/__tests__/fixture/3.0/did-wrapped.json -------------------------------------------------------------------------------- /src/__tests__/fixture/3.0/dnsdid-wrapped.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/__tests__/fixture/3.0/dnsdid-wrapped.json -------------------------------------------------------------------------------- /src/__tests__/fixture/3.0/invalid-custom-schema-document.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/__tests__/fixture/3.0/invalid-custom-schema-document.json -------------------------------------------------------------------------------- /src/__tests__/fixture/3.0/invalid-open-attestation-document.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/__tests__/fixture/3.0/invalid-open-attestation-document.json -------------------------------------------------------------------------------- /src/__tests__/fixture/3.0/invalid-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/__tests__/fixture/3.0/invalid-schema.json -------------------------------------------------------------------------------- /src/__tests__/fixture/3.0/minimal-vc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/__tests__/fixture/3.0/minimal-vc.json -------------------------------------------------------------------------------- /src/__tests__/fixture/3.0/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/__tests__/fixture/3.0/schema.json -------------------------------------------------------------------------------- /src/__tests__/fixture/3.0/valid-custom-schema-document.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/__tests__/fixture/3.0/valid-custom-schema-document.json -------------------------------------------------------------------------------- /src/__tests__/fixture/3.0/valid-open-attestation-document.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/__tests__/fixture/3.0/valid-open-attestation-document.json -------------------------------------------------------------------------------- /src/__tests__/fixture/3.0/wrapped-open-attestation-document.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/__tests__/fixture/3.0/wrapped-open-attestation-document.json -------------------------------------------------------------------------------- /src/__tests__/fixture/did-dns-decrypted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/__tests__/fixture/did-dns-decrypted.json -------------------------------------------------------------------------------- /src/__tests__/fixture/did-dns-encrypted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/__tests__/fixture/did-dns-encrypted.json -------------------------------------------------------------------------------- /src/__tests__/fixture/unsigned-did.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/__tests__/fixture/unsigned-did.json -------------------------------------------------------------------------------- /src/__tests__/fixture/unsigned-dnsDid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/__tests__/fixture/unsigned-dnsDid.json -------------------------------------------------------------------------------- /src/__tests__/fixture/valid-open-attestation-document.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/__tests__/fixture/valid-open-attestation-document.json -------------------------------------------------------------------------------- /src/__tests__/gas-station.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/__tests__/gas-station.test.ts -------------------------------------------------------------------------------- /src/__tests__/sign.v2.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/__tests__/sign.v2.e2e.test.ts -------------------------------------------------------------------------------- /src/__tests__/sign.v3.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/__tests__/sign.v3.e2e.test.ts -------------------------------------------------------------------------------- /src/__tests__/unwrap.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/__tests__/unwrap.test.ts -------------------------------------------------------------------------------- /src/__tests__/verify.v2.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/__tests__/verify.v2.e2e.test.ts -------------------------------------------------------------------------------- /src/__tests__/verify.v3.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/__tests__/verify.v3.e2e.test.ts -------------------------------------------------------------------------------- /src/__tests__/wallet.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/__tests__/wallet.test.ts -------------------------------------------------------------------------------- /src/__tests__/wrap.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/__tests__/wrap.test.ts -------------------------------------------------------------------------------- /src/__tests__/wrap.v2.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/__tests__/wrap.v2.e2e.test.ts -------------------------------------------------------------------------------- /src/__tests__/wrap.v3.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/__tests__/wrap.v3.e2e.test.ts -------------------------------------------------------------------------------- /src/commands/command-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/command-types.ts -------------------------------------------------------------------------------- /src/commands/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/config.ts -------------------------------------------------------------------------------- /src/commands/config/config.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/config/config.type.ts -------------------------------------------------------------------------------- /src/commands/config/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/config/create.ts -------------------------------------------------------------------------------- /src/commands/decrypt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/decrypt.ts -------------------------------------------------------------------------------- /src/commands/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/deploy.ts -------------------------------------------------------------------------------- /src/commands/deploy/deploy.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/deploy/deploy.types.ts -------------------------------------------------------------------------------- /src/commands/deploy/document-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/deploy/document-store.ts -------------------------------------------------------------------------------- /src/commands/deploy/title-escrow-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/deploy/title-escrow-factory.ts -------------------------------------------------------------------------------- /src/commands/deploy/token-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/deploy/token-registry.ts -------------------------------------------------------------------------------- /src/commands/dns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/dns.ts -------------------------------------------------------------------------------- /src/commands/dns/txt-record.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/dns/txt-record.ts -------------------------------------------------------------------------------- /src/commands/dns/txt-record/__test__/get.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/dns/txt-record/__test__/get.test.ts -------------------------------------------------------------------------------- /src/commands/dns/txt-record/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/dns/txt-record/create.ts -------------------------------------------------------------------------------- /src/commands/dns/txt-record/dns-command.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/dns/txt-record/dns-command.type.ts -------------------------------------------------------------------------------- /src/commands/dns/txt-record/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/dns/txt-record/get.ts -------------------------------------------------------------------------------- /src/commands/document-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/document-store.ts -------------------------------------------------------------------------------- /src/commands/document-store/document-store-command.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/document-store/document-store-command.type.ts -------------------------------------------------------------------------------- /src/commands/document-store/grant-role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/document-store/grant-role.ts -------------------------------------------------------------------------------- /src/commands/document-store/issue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/document-store/issue.ts -------------------------------------------------------------------------------- /src/commands/document-store/revoke-role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/document-store/revoke-role.ts -------------------------------------------------------------------------------- /src/commands/document-store/revoke.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/document-store/revoke.ts -------------------------------------------------------------------------------- /src/commands/document-store/transfer-ownership.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/document-store/transfer-ownership.ts -------------------------------------------------------------------------------- /src/commands/encrypt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/encrypt.ts -------------------------------------------------------------------------------- /src/commands/filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/filter.ts -------------------------------------------------------------------------------- /src/commands/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/shared.ts -------------------------------------------------------------------------------- /src/commands/sign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/sign.ts -------------------------------------------------------------------------------- /src/commands/title-escrow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/title-escrow.ts -------------------------------------------------------------------------------- /src/commands/title-escrow/accept-surrendered.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/title-escrow/accept-surrendered.ts -------------------------------------------------------------------------------- /src/commands/title-escrow/change-holder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/title-escrow/change-holder.ts -------------------------------------------------------------------------------- /src/commands/title-escrow/endorse-change-of-owner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/title-escrow/endorse-change-of-owner.ts -------------------------------------------------------------------------------- /src/commands/title-escrow/endorse-transfer-of-owner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/title-escrow/endorse-transfer-of-owner.ts -------------------------------------------------------------------------------- /src/commands/title-escrow/nominate-change-of-owner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/title-escrow/nominate-change-of-owner.ts -------------------------------------------------------------------------------- /src/commands/title-escrow/reject-surrendered.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/title-escrow/reject-surrendered.ts -------------------------------------------------------------------------------- /src/commands/title-escrow/surrender-document.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/title-escrow/surrender-document.ts -------------------------------------------------------------------------------- /src/commands/title-escrow/title-escrow-command.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/title-escrow/title-escrow-command.type.ts -------------------------------------------------------------------------------- /src/commands/token-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/token-registry.ts -------------------------------------------------------------------------------- /src/commands/token-registry/issue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/token-registry/issue.ts -------------------------------------------------------------------------------- /src/commands/token-registry/mint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/token-registry/mint.ts -------------------------------------------------------------------------------- /src/commands/token-registry/token-registry-command.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/token-registry/token-registry-command.type.ts -------------------------------------------------------------------------------- /src/commands/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/transaction.ts -------------------------------------------------------------------------------- /src/commands/transaction/cancel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/transaction/cancel.ts -------------------------------------------------------------------------------- /src/commands/transaction/transaction-command.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/transaction/transaction-command.type.ts -------------------------------------------------------------------------------- /src/commands/unwrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/unwrap.ts -------------------------------------------------------------------------------- /src/commands/verify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/verify.ts -------------------------------------------------------------------------------- /src/commands/wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/wallet.ts -------------------------------------------------------------------------------- /src/commands/wallet/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/wallet/create.ts -------------------------------------------------------------------------------- /src/commands/wallet/decrypt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/wallet/decrypt.ts -------------------------------------------------------------------------------- /src/commands/wallet/encrypt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/wallet/encrypt.ts -------------------------------------------------------------------------------- /src/commands/wallet/wallet.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/wallet/wallet.type.ts -------------------------------------------------------------------------------- /src/commands/wrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/commands/wrap.ts -------------------------------------------------------------------------------- /src/common/gas-station/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/common/gas-station/index.ts -------------------------------------------------------------------------------- /src/common/networks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/common/networks.ts -------------------------------------------------------------------------------- /src/implementations/config/__tests__/config-reference-v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/config/__tests__/config-reference-v3.json -------------------------------------------------------------------------------- /src/implementations/config/__tests__/create.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/config/__tests__/create.test.ts -------------------------------------------------------------------------------- /src/implementations/config/__tests__/error-config-file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/config/__tests__/error-config-file.json -------------------------------------------------------------------------------- /src/implementations/config/__tests__/expected-config-file-output-v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/config/__tests__/expected-config-file-output-v2.json -------------------------------------------------------------------------------- /src/implementations/config/__tests__/expected-config-file-output-v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/config/__tests__/expected-config-file-output-v3.json -------------------------------------------------------------------------------- /src/implementations/config/__tests__/helpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/config/__tests__/helpers.test.ts -------------------------------------------------------------------------------- /src/implementations/config/__tests__/input-config-file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/config/__tests__/input-config-file.json -------------------------------------------------------------------------------- /src/implementations/config/__tests__/wallet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/config/__tests__/wallet.json -------------------------------------------------------------------------------- /src/implementations/config/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/config/create.ts -------------------------------------------------------------------------------- /src/implementations/config/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/config/helpers.ts -------------------------------------------------------------------------------- /src/implementations/config/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/config/types.ts -------------------------------------------------------------------------------- /src/implementations/decrypt/decrypt.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/decrypt/decrypt.test.ts -------------------------------------------------------------------------------- /src/implementations/decrypt/decrypt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/decrypt/decrypt.ts -------------------------------------------------------------------------------- /src/implementations/decrypt/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./decrypt"; 2 | -------------------------------------------------------------------------------- /src/implementations/deploy/document-store/document-store.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/deploy/document-store/document-store.test.ts -------------------------------------------------------------------------------- /src/implementations/deploy/document-store/document-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/deploy/document-store/document-store.ts -------------------------------------------------------------------------------- /src/implementations/deploy/document-store/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./document-store"; 2 | -------------------------------------------------------------------------------- /src/implementations/deploy/title-escrow-factory/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./title-escrow-factory"; 2 | -------------------------------------------------------------------------------- /src/implementations/deploy/title-escrow-factory/title-escrow-factory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/deploy/title-escrow-factory/title-escrow-factory.test.ts -------------------------------------------------------------------------------- /src/implementations/deploy/title-escrow-factory/title-escrow-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/deploy/title-escrow-factory/title-escrow-factory.ts -------------------------------------------------------------------------------- /src/implementations/deploy/token-registry/helpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/deploy/token-registry/helpers.test.ts -------------------------------------------------------------------------------- /src/implementations/deploy/token-registry/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/deploy/token-registry/helpers.ts -------------------------------------------------------------------------------- /src/implementations/deploy/token-registry/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./token-registry"; 2 | -------------------------------------------------------------------------------- /src/implementations/deploy/token-registry/token-registry.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/deploy/token-registry/token-registry.test.ts -------------------------------------------------------------------------------- /src/implementations/deploy/token-registry/token-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/deploy/token-registry/token-registry.ts -------------------------------------------------------------------------------- /src/implementations/document-store/document-store-roles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/document-store/document-store-roles.ts -------------------------------------------------------------------------------- /src/implementations/document-store/grant-role.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/document-store/grant-role.test.ts -------------------------------------------------------------------------------- /src/implementations/document-store/grant-role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/document-store/grant-role.ts -------------------------------------------------------------------------------- /src/implementations/document-store/issue.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/document-store/issue.test.ts -------------------------------------------------------------------------------- /src/implementations/document-store/issue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/document-store/issue.ts -------------------------------------------------------------------------------- /src/implementations/document-store/revoke-role.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/document-store/revoke-role.test.ts -------------------------------------------------------------------------------- /src/implementations/document-store/revoke-role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/document-store/revoke-role.ts -------------------------------------------------------------------------------- /src/implementations/document-store/revoke.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/document-store/revoke.test.ts -------------------------------------------------------------------------------- /src/implementations/document-store/revoke.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/document-store/revoke.ts -------------------------------------------------------------------------------- /src/implementations/document-store/transfer-ownership.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/document-store/transfer-ownership.test.ts -------------------------------------------------------------------------------- /src/implementations/document-store/transfer-ownership.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/document-store/transfer-ownership.ts -------------------------------------------------------------------------------- /src/implementations/encrypt/encrypt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/encrypt/encrypt.ts -------------------------------------------------------------------------------- /src/implementations/encrypt/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./encrypt"; 2 | -------------------------------------------------------------------------------- /src/implementations/filter/filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/filter/filter.ts -------------------------------------------------------------------------------- /src/implementations/filter/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./filter"; 2 | -------------------------------------------------------------------------------- /src/implementations/sign/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/sign/index.ts -------------------------------------------------------------------------------- /src/implementations/title-escrow/acceptSurrendered.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/title-escrow/acceptSurrendered.test.ts -------------------------------------------------------------------------------- /src/implementations/title-escrow/acceptSurrendered.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/title-escrow/acceptSurrendered.ts -------------------------------------------------------------------------------- /src/implementations/title-escrow/endorseNominatedBeneficiary.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/title-escrow/endorseNominatedBeneficiary.test.ts -------------------------------------------------------------------------------- /src/implementations/title-escrow/endorseNominatedBeneficiary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/title-escrow/endorseNominatedBeneficiary.ts -------------------------------------------------------------------------------- /src/implementations/title-escrow/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/title-escrow/helpers.ts -------------------------------------------------------------------------------- /src/implementations/title-escrow/nominateBeneficiary.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/title-escrow/nominateBeneficiary.test.ts -------------------------------------------------------------------------------- /src/implementations/title-escrow/nominateBeneficiary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/title-escrow/nominateBeneficiary.ts -------------------------------------------------------------------------------- /src/implementations/title-escrow/rejectSurrendered.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/title-escrow/rejectSurrendered.test.ts -------------------------------------------------------------------------------- /src/implementations/title-escrow/rejectSurrendered.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/title-escrow/rejectSurrendered.ts -------------------------------------------------------------------------------- /src/implementations/title-escrow/surrenderDocument.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/title-escrow/surrenderDocument.test.ts -------------------------------------------------------------------------------- /src/implementations/title-escrow/surrenderDocument.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/title-escrow/surrenderDocument.ts -------------------------------------------------------------------------------- /src/implementations/title-escrow/transferHolder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/title-escrow/transferHolder.test.ts -------------------------------------------------------------------------------- /src/implementations/title-escrow/transferHolder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/title-escrow/transferHolder.ts -------------------------------------------------------------------------------- /src/implementations/title-escrow/transferOwners.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/title-escrow/transferOwners.test.ts -------------------------------------------------------------------------------- /src/implementations/title-escrow/transferOwners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/title-escrow/transferOwners.ts -------------------------------------------------------------------------------- /src/implementations/token-registry/issue.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/token-registry/issue.test.ts -------------------------------------------------------------------------------- /src/implementations/token-registry/issue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/token-registry/issue.ts -------------------------------------------------------------------------------- /src/implementations/transaction/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./transaction"; 2 | -------------------------------------------------------------------------------- /src/implementations/transaction/transaction.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/transaction/transaction.test.ts -------------------------------------------------------------------------------- /src/implementations/transaction/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/transaction/transaction.ts -------------------------------------------------------------------------------- /src/implementations/unwrap/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./unwrap"; 2 | -------------------------------------------------------------------------------- /src/implementations/unwrap/unwrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/unwrap/unwrap.ts -------------------------------------------------------------------------------- /src/implementations/utils/__tests__/key.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/utils/__tests__/key.file -------------------------------------------------------------------------------- /src/implementations/utils/__tests__/wallet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/utils/__tests__/wallet.json -------------------------------------------------------------------------------- /src/implementations/utils/__tests__/wallet.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/utils/__tests__/wallet.test.ts -------------------------------------------------------------------------------- /src/implementations/utils/cli-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/utils/cli-config.ts -------------------------------------------------------------------------------- /src/implementations/utils/disk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/utils/disk.ts -------------------------------------------------------------------------------- /src/implementations/utils/dryRun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/utils/dryRun.ts -------------------------------------------------------------------------------- /src/implementations/utils/github-version.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/utils/github-version.test.ts -------------------------------------------------------------------------------- /src/implementations/utils/github-version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/utils/github-version.ts -------------------------------------------------------------------------------- /src/implementations/utils/progress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/utils/progress.ts -------------------------------------------------------------------------------- /src/implementations/utils/validation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/utils/validation.test.ts -------------------------------------------------------------------------------- /src/implementations/utils/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/utils/validation.ts -------------------------------------------------------------------------------- /src/implementations/utils/wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/utils/wallet.ts -------------------------------------------------------------------------------- /src/implementations/utils/web-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/utils/web-request.ts -------------------------------------------------------------------------------- /src/implementations/wallet/__tests__/create.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/wallet/__tests__/create.test.ts -------------------------------------------------------------------------------- /src/implementations/wallet/__tests__/encrypt.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/wallet/__tests__/encrypt.test.ts -------------------------------------------------------------------------------- /src/implementations/wallet/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/wallet/create.ts -------------------------------------------------------------------------------- /src/implementations/wallet/encrypt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/wallet/encrypt.ts -------------------------------------------------------------------------------- /src/implementations/wrap/ajvErrorTransformer/ajvErrorTransformer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/wrap/ajvErrorTransformer/ajvErrorTransformer.test.ts -------------------------------------------------------------------------------- /src/implementations/wrap/ajvErrorTransformer/ajvErrorTransformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/wrap/ajvErrorTransformer/ajvErrorTransformer.ts -------------------------------------------------------------------------------- /src/implementations/wrap/ajvErrorTransformer/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./ajvErrorTransformer"; 2 | -------------------------------------------------------------------------------- /src/implementations/wrap/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./wrap"; 2 | -------------------------------------------------------------------------------- /src/implementations/wrap/wrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/implementations/wrap/wrap.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/logger.ts -------------------------------------------------------------------------------- /src/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/utils.test.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Attestation/open-attestation-cli/HEAD/tsconfig.prod.json --------------------------------------------------------------------------------