-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
support corev2 in polygon-js-sdk (#71)
* support third-party dids for storing and proof generation. * refactor auth handler to work with different packers * Feature/v2 strict (#99) * Removed universal DID Resolver --------- Co-authored-by: vbasiuk <volodymyr.basiuck@gmail.com> * add shared eslint & prettier (#102) * fix node_aux - issue with filling node aux in revocation status * support profiles (#105) in authorization / fetch handler / proof service * modify IPFS tests --------- Co-authored-by: Dimasik Kolezhniuk <d.kolezhiniyk@gmail.com> * convert offerMessage.to to DID * zero is valid value for revocationNonce * sync onchain revocation with specification. * add IZKProver interface * update documentation * add FSCircuitStore - file storage for circuits --------- Co-authored-by: vbasiuk <volodymyr.basiuck@gmail.com> Co-authored-by: Ilya <officalbatya@gmail.com> Co-authored-by: vmidyllic <74898029+vmidyllic@users.noreply.github.com>
- Loading branch information
1 parent
fde41c1
commit 6dc0aae
Showing
115 changed files
with
3,518 additions
and
2,803 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,3 @@ | ||
{ | ||
"root": true, | ||
"parser": "@typescript-eslint/parser", | ||
"plugins": ["@typescript-eslint", "prettier"], | ||
"parserOptions": { | ||
"project": ["tsconfig.json", "tsconfig.test.json"] | ||
}, | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:@typescript-eslint/eslint-recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"prettier" | ||
], | ||
"rules": { | ||
"no-console": 1, // Means warning | ||
"prettier/prettier": 2, // Means error | ||
"@typescript-eslint/no-floating-promises": ["error"] | ||
}, | ||
"ignorePatterns": ["dist", "node_modules"] | ||
} | ||
"extends": ["@iden3/eslint-config"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "npm" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
allow: | ||
- dependency-name: "@iden3*" | ||
reviewers: | ||
- "Kolezhniuk" | ||
- "vmidyllic" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1 @@ | ||
{ | ||
"semi": true, | ||
"trailingComma": "none", | ||
"singleQuote": true, | ||
"printWidth": 100 | ||
} | ||
"@iden3/eslint-config/prettier" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.