Skip to content

Commit

Permalink
fix: revocation support (#285)
Browse files Browse the repository at this point in the history
* fix: added revocation methods, refactor: revamp state management in instance

* fix: tests

* feat: added revocation store revocation method

* feat: implemented revocation store revocation builder method

* test: update to check credentialStatus

* fix: improve ethereum address validation

* tests: added tests for revocation store revocation method

* chore: update json schemas

* chore: update descriptions

* chore: setup husky and lintstaged
  • Loading branch information
phanshiyu committed May 9, 2024
1 parent fb8c6b5 commit 3d585ca
Show file tree
Hide file tree
Showing 11 changed files with 990 additions and 93 deletions.
4 changes: 4 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npm run lint-staged
4 changes: 4 additions & 0 deletions .husky/pre-push
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npm test
4 changes: 4 additions & 0 deletions .lintstagedrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"src/4.0/types.ts": ["npm run generate-v4-json-schemas", "git add src/4.0/jsonSchemas/__generated__"],
"*.{js,ts}": "eslint --fix"
}

0 comments on commit 3d585ca

Please sign in to comment.