Skip to content

Commit 6dc0aae

Browse files
Kolezhniukvolodymyr-basiukilya-korotyavmidyllic
authored
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 <[email protected]> * 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 <[email protected]> * 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 <[email protected]> Co-authored-by: Ilya <[email protected]> Co-authored-by: vmidyllic <[email protected]>
1 parent fde41c1 commit 6dc0aae

File tree

115 files changed

+3518
-2803
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+3518
-2803
lines changed

.eslintrc

+2-19
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,3 @@
11
{
2-
"root": true,
3-
"parser": "@typescript-eslint/parser",
4-
"plugins": ["@typescript-eslint", "prettier"],
5-
"parserOptions": {
6-
"project": ["tsconfig.json", "tsconfig.test.json"]
7-
},
8-
"extends": [
9-
"eslint:recommended",
10-
"plugin:@typescript-eslint/eslint-recommended",
11-
"plugin:@typescript-eslint/recommended",
12-
"prettier"
13-
],
14-
"rules": {
15-
"no-console": 1, // Means warning
16-
"prettier/prettier": 2, // Means error
17-
"@typescript-eslint/no-floating-promises": ["error"]
18-
},
19-
"ignorePatterns": ["dist", "node_modules"]
20-
}
2+
"extends": ["@iden3/eslint-config"]
3+
}

.github/dependabot.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "npm"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"
7+
allow:
8+
- dependency-name: "@iden3*"
9+
reviewers:
10+
- "Kolezhniuk"
11+
- "vmidyllic"

.github/workflows/ci.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
strategy:
66
matrix:
77
version: [18.16.1]
8-
timeout-minutes: 7
8+
timeout-minutes: 10
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v3
@@ -54,6 +54,7 @@ jobs:
5454

5555
- name: Run Tests
5656
env:
57+
IPFS_URL: ${{ secrets.IPFS_URL }}
5758
WALLET_KEY: ${{ secrets.WALLET_KEY }}
5859
RPC_URL: ${{ secrets.RPC_URL }}
5960
RHS_URL: ${{ secrets.RHS_URL }}

.prettierrc

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1 @@
1-
{
2-
"semi": true,
3-
"trailingComma": "none",
4-
"singleQuote": true,
5-
"printWidth": 100
6-
}
1+
"@iden3/eslint-config/prettier"

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ SDK to work with Polygon ID using JavaScript and TypeScript languages.
44

55
## Disclaimer
66

7-
Polygon ID JS SDK is in public beta. It may still contain bugs or missing functionality.
8-
We provide limited support for it and would love to hear your feedback.
7+
Polygon ID JS SDK is in public now. It may still contain bugs or missing functionality, that it will be added in next versions.
98

109
## Usage
1110

@@ -33,6 +32,8 @@ To run them, please set following variables:
3332
export WALLET_KEY="...key in hex format"
3433
export RPC_URL="...url to polygon network rpc node"
3534
export RHS_URL="..reverse hash service url"
35+
export IPFS_URL="url for ipfs"
36+
3637
```
3738

3839
And place actual circuits to `test/proofs/testdata`

index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@
9090
}
9191
}
9292
);
93-
console.log(did.toString());
94-
console.assert(did.toString() === 'did:iden3:polygon:mumbai:wzokvZ6kMoocKJuSbftdZxTD6qvayGpJb3m4FVXth');
93+
console.log(did.string());
94+
console.assert(did.string() === 'did:iden3:polygon:mumbai:wzokvZ6kMoocKJuSbftdZxTD6qvayGpJb3m4FVXth');
9595

9696
};
9797
run().catch(console.error);

0 commit comments

Comments
 (0)