Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Open-Attestation/oa-verify
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.2.0
Choose a base ref
...
head repository: Open-Attestation/oa-verify
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.3.0
Choose a head ref
  • 3 commits
  • 49 files changed
  • 3 contributors

Commits on Mar 31, 2020

  1. Copy the full SHA
    260b5d4 View commit details

Commits on May 8, 2020

  1. chore: upgrade libs

    Nebulis committed May 8, 2020
    Copy the full SHA
    bca629c View commit details

Commits on May 11, 2020

  1. Copy the full SHA
    7cb7499 View commit details
Showing with 10,114 additions and 7,926 deletions.
  1. +8,343 −6,780 package-lock.json
  2. +21 −21 package.json
  3. +1 −1 src/common/logger.ts
  4. +5 −5 src/common/smartContract/documentStoreContractInterface.ts
  5. +6 −6 src/common/smartContract/documentStoreErrors.ts
  6. +6 −6 src/common/smartContract/tokenRegistryContractInterface.ts
  7. +14 −9 src/index.ts
  8. +12 −12 src/types/core.ts
  9. +11 −5 src/types/error.ts
  10. +31 −31 src/validator.test.ts
  11. +4 −4 src/validator.ts
  12. +23 −23 src/verifiers/dnsText/openAttestationDnsTxt.ts
  13. +125 −123 src/verifiers/dnsText/openAttestationDnsTxt.v2.test.ts
  14. +32 −30 src/verifiers/dnsText/openAttestationDnsTxt.v3.test.ts
  15. +104 −104 src/verifiers/documentStoreIssued/openAttestationEthereumDocumentStoreIssued.test.ts
  16. +18 −18 src/verifiers/documentStoreIssued/openAttestationEthereumDocumentStoreIssued.ts
  17. +74 −74 src/verifiers/documentStoreRevoked/openAttestationEthereumDocumentStoreRevoked.test.ts
  18. +20 −20 src/verifiers/documentStoreRevoked/openAttestationEthereumDocumentStoreRevoked.ts
  19. +3 −3 src/verifiers/hash/openAttestationHash.test.ts
  20. +5 −5 src/verifiers/hash/openAttestationHash.ts
  21. +81 −0 src/verifiers/signedProof/openAttestationSignedProof.test.ts
  22. +64 −0 src/verifiers/signedProof/openAttestationSignedProof.ts
  23. +4 −4 src/verifiers/tokenRegistryMinted/errors.ts
  24. +62 −62 src/verifiers/tokenRegistryMinted/openAttestationEthereumTokenRegistryMinted.test.ts
  25. +18 −18 src/verifiers/tokenRegistryMinted/openAttestationEthereumTokenRegistryMinted.ts
  26. +5 −5 src/verifiers/verificationBuilder.ts
  27. +385 −99 src/verify.v2.integration.test.ts
  28. +120 −70 src/verify.v3.integration.test.ts
  29. +11 −11 test/fixtures/v2/document.ts
  30. +11 −11 test/fixtures/v2/documentMainnetValidWithCertificateStore.ts
  31. +61 −61 test/fixtures/v2/documentRopstenNotIssuedWithCertificateStore.ts
  32. +15 −15 test/fixtures/v2/documentRopstenNotIssuedWithDocumentStore.ts
  33. +15 −15 test/fixtures/v2/documentRopstenNotIssuedWithTokenRegistry.ts
  34. +15 −15 test/fixtures/v2/documentRopstenRevokedWithCertificateStore.ts
  35. +15 −15 test/fixtures/v2/documentRopstenRevokedWithDocumentStore.ts
  36. +15 −15 test/fixtures/v2/documentRopstenRevokedWithToken.ts
  37. +61 −61 test/fixtures/v2/documentRopstenValidWithCertificateStore.ts
  38. +15 −15 test/fixtures/v2/documentRopstenValidWithDocumentStore.ts
  39. +15 −15 test/fixtures/v2/documentRopstenValidWithToken.ts
  40. +59 −59 test/fixtures/v2/documentRopstenWithNonDeployedDocumentStore.ts
  41. +45 −0 test/fixtures/v2/documentSignedProofInvalidProofType.ts
  42. +44 −0 test/fixtures/v2/documentSignedProofInvalidSignature.ts
  43. +40 −0 test/fixtures/v2/documentSignedProofValid.ts
  44. +21 −21 test/fixtures/v2/tamperedDocument.ts
  45. +10 −10 test/fixtures/v3/documentRopstenNotIssued.ts
  46. +10 −10 test/fixtures/v3/documentRopstenNotIssuedWithTokenRegistry.ts
  47. +10 −10 test/fixtures/v3/documentRopstenRevoked.ts
  48. +10 −10 test/fixtures/v3/documentRopstenTampered.ts
  49. +19 −19 test/fixtures/v3/documentRopstenValid.ts
Loading