@maci-protocol/sdk 0.0.0-ci.956fe48 → 0.0.0-ci.9819a21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/package.json +4 -4
- package/build/ts/browser/index.d.ts +2 -1
- package/build/ts/browser/index.d.ts.map +1 -1
- package/build/ts/browser/index.js +1 -0
- package/build/ts/browser/index.js.map +1 -1
- package/build/ts/deploy/types.d.ts +3 -3
- package/build/ts/deploy/types.d.ts.map +1 -1
- package/build/ts/index.d.ts +2 -2
- package/build/ts/index.d.ts.map +1 -1
- package/build/ts/index.js +4 -4
- package/build/ts/index.js.map +1 -1
- package/build/ts/maciKeys/types.d.ts +1 -1
- package/build/ts/maciKeys/types.d.ts.map +1 -1
- package/build/ts/poll/poll.js +1 -1
- package/build/ts/poll/poll.js.map +1 -1
- package/build/ts/proof/__tests__/download.test.js +1 -1
- package/build/ts/proof/__tests__/download.test.js.map +1 -1
- package/build/ts/proof/generate.js +2 -2
- package/build/ts/proof/generate.js.map +1 -1
- package/build/ts/subgraph/maciSubgraph.d.ts +1 -1
- package/build/ts/subgraph/maciSubgraph.d.ts.map +1 -1
- package/build/ts/subgraph/maciSubgraph.js +5 -3
- package/build/ts/subgraph/maciSubgraph.js.map +1 -1
- package/build/ts/trees/stateTree.d.ts.map +1 -1
- package/build/ts/trees/stateTree.js.map +1 -1
- package/build/ts/user/signup.js.map +1 -1
- package/build/ts/user/types.d.ts +1 -1
- package/build/ts/user/types.d.ts.map +1 -1
- package/build/ts/user/utils.d.ts +9 -1
- package/build/ts/user/utils.d.ts.map +1 -1
- package/build/ts/user/utils.js +16 -9
- package/build/ts/user/utils.js.map +1 -1
- package/build/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +10 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maci-protocol/sdk",
|
|
3
|
-
"version": "0.0.0-ci.
|
|
3
|
+
"version": "0.0.0-ci.9819a21",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "MACI's SDK",
|
|
6
6
|
"main": "build/ts/index.js",
|
|
@@ -36,17 +36,17 @@
|
|
|
36
36
|
"scripts": {
|
|
37
37
|
"watch": "tsc --watch",
|
|
38
38
|
"build": "tsc -p tsconfig.build.json",
|
|
39
|
-
"postbuild": "cp package.json ./build
|
|
39
|
+
"postbuild": "cp package.json ./build",
|
|
40
40
|
"types": "tsc -p tsconfig.json --noEmit",
|
|
41
41
|
"test": "jest",
|
|
42
42
|
"test:coverage": "pnpm run test --coverage",
|
|
43
43
|
"docs": "typedoc --plugin typedoc-plugin-markdown --options ./typedoc.json"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@maci-protocol/contracts": "0.0.0-ci.
|
|
47
|
-
"@maci-protocol/core": "0.0.0-ci.
|
|
48
|
-
"@maci-protocol/crypto": "0.0.0-ci.
|
|
49
|
-
"@maci-protocol/domainobjs": "0.0.0-ci.
|
|
46
|
+
"@maci-protocol/contracts": "0.0.0-ci.9819a21",
|
|
47
|
+
"@maci-protocol/core": "0.0.0-ci.9819a21",
|
|
48
|
+
"@maci-protocol/crypto": "0.0.0-ci.9819a21",
|
|
49
|
+
"@maci-protocol/domainobjs": "0.0.0-ci.9819a21",
|
|
50
50
|
"@zk-kit/lean-imt": "^2.2.3",
|
|
51
51
|
"ethers": "^6.15.0",
|
|
52
52
|
"multiformats": "9.9.0",
|
|
@@ -54,13 +54,13 @@
|
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@types/jest": "^30.0.0",
|
|
57
|
-
"@types/node": "^24.0
|
|
57
|
+
"@types/node": "^24.2.0",
|
|
58
58
|
"@types/snarkjs": "^0.7.9",
|
|
59
59
|
"jest": "^30.0.4",
|
|
60
60
|
"mocha": "^11.7.1",
|
|
61
61
|
"nyc": "^17.1.0",
|
|
62
|
-
"ts-jest": "^29.4.
|
|
63
|
-
"typescript": "^5.
|
|
62
|
+
"ts-jest": "^29.4.1",
|
|
63
|
+
"typescript": "^5.9.2"
|
|
64
64
|
},
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "43c06d952ebc6b9541c89ccab8df61bc8205794c"
|
|
66
66
|
}
|