@maci-protocol/circuits 0.0.0-ci.185b643
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/CHANGELOG.md +673 -0
- package/LICENSE +22 -0
- package/README.md +20 -0
- package/build/ts/compile.d.ts +10 -0
- package/build/ts/compile.d.ts.map +1 -0
- package/build/ts/compile.js +123 -0
- package/build/ts/compile.js.map +1 -0
- package/build/ts/genZkeys.d.ts +9 -0
- package/build/ts/genZkeys.d.ts.map +1 -0
- package/build/ts/genZkeys.js +67 -0
- package/build/ts/genZkeys.js.map +1 -0
- package/build/ts/info.d.ts +2 -0
- package/build/ts/info.d.ts.map +1 -0
- package/build/ts/info.js +72 -0
- package/build/ts/info.js.map +1 -0
- package/build/ts/types.d.ts +104 -0
- package/build/ts/types.d.ts.map +1 -0
- package/build/ts/types.js +3 -0
- package/build/ts/types.js.map +1 -0
- package/build/tsconfig.build.tsbuildinfo +1 -0
- package/circom/circuits.json +58 -0
- package/circom/coordinator/non-qv/processMessages.circom +443 -0
- package/circom/coordinator/non-qv/tallyVotes.circom +232 -0
- package/circom/coordinator/qv/processMessages.circom +445 -0
- package/circom/coordinator/qv/tallyVotes.circom +277 -0
- package/circom/utils/calculateTotal.circom +22 -0
- package/circom/utils/hashers.circom +78 -0
- package/circom/utils/messageToCommand.circom +78 -0
- package/circom/utils/non-qv/messageValidator.circom +89 -0
- package/circom/utils/non-qv/stateLeafAndBallotTransformer.circom +105 -0
- package/circom/utils/privToPubKey.circom +36 -0
- package/circom/utils/qv/messageValidator.circom +95 -0
- package/circom/utils/qv/stateLeafAndBallotTransformer.circom +105 -0
- package/circom/utils/trees/incrementalMerkleTree.circom +198 -0
- package/circom/utils/trees/incrementalQuinaryTree.circom +287 -0
- package/circom/utils/verifySignature.circom +117 -0
- package/circom/voter/poll.circom +91 -0
- package/circomkit.json +18 -0
- package/package.json +71 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,673 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
+
|
|
6
|
+
## [3.0.0](https://github.com/privacy-scaling-explorations/maci/compare/v2.5.0...v3.0.0) (2025-03-28)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ⚠ BREAKING CHANGES
|
|
10
|
+
|
|
11
|
+
* message processing is changed
|
|
12
|
+
|
|
13
|
+
* fix(ipoll): add missing parameter
|
|
14
|
+
|
|
15
|
+
* fix(poll-tests): add missing parameter maxMessagebatchSize
|
|
16
|
+
|
|
17
|
+
* feat(poll.ts): add chain hash updating
|
|
18
|
+
|
|
19
|
+
* test(poll tests): add test for checking chain hash computation
|
|
20
|
+
|
|
21
|
+
* feat(poll.ts): add batch hashes array computation
|
|
22
|
+
|
|
23
|
+
* feat(poll.sol): pad zeroes to the maximum size of batch
|
|
24
|
+
|
|
25
|
+
* feat(messageprocessor): update process messages to use chain hash
|
|
26
|
+
|
|
27
|
+
* refactor(vkregistry): refactor function call
|
|
28
|
+
|
|
29
|
+
* feat(processmessages.circom): add chainHash feature in circuits and test for that
|
|
30
|
+
|
|
31
|
+
* test(processmessages): rearrange test for key-change
|
|
32
|
+
|
|
33
|
+
* refactor(mergemessages): refactor functions calls which include mergemessages
|
|
34
|
+
|
|
35
|
+
* refactor(mergemessages): add some more changes about functions call which include mergemessages
|
|
36
|
+
|
|
37
|
+
* test(all tests): fixing tests after refactoring code
|
|
38
|
+
|
|
39
|
+
* refactor(accqueue): remove all calls for accqueue
|
|
40
|
+
|
|
41
|
+
* fix(currentmessagebatchindex): fix message batch indexing
|
|
42
|
+
|
|
43
|
+
* refactor(circuit tests): refactor code for circuit testing
|
|
44
|
+
|
|
45
|
+
* test(ceremonyparams.test): correct constants for CeremonyParams test
|
|
46
|
+
|
|
47
|
+
* perf(processmessages.circom + contracts): optimize last batch padding, remove unused inputs
|
|
48
|
+
|
|
49
|
+
* docs(padlastbatch method): update doc comment
|
|
50
|
+
|
|
51
|
+
* docs(poll.ts): remove stale comments
|
|
52
|
+
|
|
53
|
+
* docs(test comments): fix typos
|
|
54
|
+
|
|
55
|
+
* ci(treedepths mock): modify interface for mocked function
|
|
56
|
+
|
|
57
|
+
* fix(ceremony params test): fix circuit inputs
|
|
58
|
+
|
|
59
|
+
* test(messagevalidator): fix function calls for messagevalidator circuit in tests
|
|
60
|
+
|
|
61
|
+
* chore(comments): fix unusefull comments
|
|
62
|
+
|
|
63
|
+
* refactor(poll.sol): replace external contracts with maci only
|
|
64
|
+
|
|
65
|
+
* perf(messageprocessor.sol): hardcode initialization for batchHashes array
|
|
66
|
+
|
|
67
|
+
* docs(comments): fix some more comments
|
|
68
|
+
|
|
69
|
+
* test(test for pr checks): correct some of tests for PR checks
|
|
70
|
+
|
|
71
|
+
* ci: 🎡 renamed old ProcessMessages_10-2-1-2_test
|
|
72
|
+
|
|
73
|
+
* ci: 🎡 correct rapidsnark/build/prover path
|
|
74
|
+
|
|
75
|
+
* style(reviews): solve some reviews for merging
|
|
76
|
+
|
|
77
|
+
* refactor(messageaqq): remove more message merging and message aqq
|
|
78
|
+
|
|
79
|
+
* style(messageaqq): remove more message merging and message aqq
|
|
80
|
+
|
|
81
|
+
* refactor(messageaqq): remove message aqq from subgraph
|
|
82
|
+
|
|
83
|
+
* test(coordinator): hide NOT_MERGED_MESSAGE_TREE error
|
|
84
|
+
|
|
85
|
+
* test(coordinator): fix test about message merging
|
|
86
|
+
|
|
87
|
+
* test(proveonchain): change chainHash calculation
|
|
88
|
+
|
|
89
|
+
* test(proveonchain): fix chainHashes declaration
|
|
90
|
+
|
|
91
|
+
* test(proveonchain): fix chainHash calculation
|
|
92
|
+
|
|
93
|
+
* test(proveonchain): fix chainHashes calculations
|
|
94
|
+
|
|
95
|
+
* test(proveonchain): fix chainHashes calculation
|
|
96
|
+
|
|
97
|
+
* test(proveonchain): fix loop limit
|
|
98
|
+
|
|
99
|
+
* style(review comments): resolve some of review comments
|
|
100
|
+
|
|
101
|
+
* style(review comments): resolve some of review comments
|
|
102
|
+
|
|
103
|
+
* test(lint:ts): fix e2e test because of lint:ts check
|
|
104
|
+
|
|
105
|
+
* docs(wrong changes): fix wrong changes about documentation that is not in our scope
|
|
106
|
+
|
|
107
|
+
* refactor(batchsizes): change batchSizes struct with messageBatchSize variable
|
|
108
|
+
|
|
109
|
+
* refactor(contracts): rollback to provide external contract references
|
|
110
|
+
|
|
111
|
+
* docs(messageprocessor.sol): fix typo
|
|
112
|
+
|
|
113
|
+
* refactor(messagebatchsize): chenge messageBatchSize location from Params.sol to Poll.sol
|
|
114
|
+
|
|
115
|
+
* refactor(maxmessages): remove maxMessages from maxValues
|
|
116
|
+
|
|
117
|
+
* refactor(sltimestemp): remove slTimestamp from circuits
|
|
118
|
+
|
|
119
|
+
* refactor(review comments): resolve more review comments
|
|
120
|
+
|
|
121
|
+
* fix(subgraph): fix bug about maxVoteOptions dunction call
|
|
122
|
+
|
|
123
|
+
* fix(sltimestamp): fix test for removing slTimestap signal
|
|
124
|
+
|
|
125
|
+
* refactor(promise.all): refactor promise.all for only one async call
|
|
126
|
+
|
|
127
|
+
* fix(subgraph): try to fix subgraph build
|
|
128
|
+
|
|
129
|
+
* revert(.nx folder): remove .nx folder from cli folder
|
|
130
|
+
|
|
131
|
+
* fix(merge): tmp-anon-poll-joining merge
|
|
132
|
+
|
|
133
|
+
* fix(merge): tmp-anon-poll-joining merge
|
|
134
|
+
|
|
135
|
+
* test(ceremonyparams): add poll joining in the test
|
|
136
|
+
|
|
137
|
+
* test(processmessages): add poll joining for the test
|
|
138
|
+
|
|
139
|
+
without key-change test
|
|
140
|
+
|
|
141
|
+
* test(polljoining): add poll joining in the test
|
|
142
|
+
|
|
143
|
+
* test(tallyvotes): add poll joining in the test
|
|
144
|
+
|
|
145
|
+
* test(core): add joinPoll function in tests
|
|
146
|
+
|
|
147
|
+
* style(typo): inclusion proof
|
|
148
|
+
|
|
149
|
+
* style(todo): remove finished todo
|
|
150
|
+
|
|
151
|
+
* style(merge): after merge style
|
|
152
|
+
|
|
153
|
+
* style(return): inline return
|
|
154
|
+
|
|
155
|
+
* style(eslint): remove unnecessary eslint-disable
|
|
156
|
+
|
|
157
|
+
* refactor(joiningcircuitargs): add interface IJoiningCircuitArgs
|
|
158
|
+
|
|
159
|
+
* refactor(joinpoll): async read state file
|
|
160
|
+
|
|
161
|
+
* style(genmacisignup): add function description
|
|
162
|
+
|
|
163
|
+
* refactor(gensignuptree): add IGenSignUpTreeArgs interface
|
|
164
|
+
|
|
165
|
+
* style(polljoining): remove extra inlcudes and comments
|
|
166
|
+
|
|
167
|
+
* feat(pollvkkeys): init
|
|
168
|
+
|
|
169
|
+
* feat(vkregistry): separate set functions (process/tally/poll)
|
|
170
|
+
|
|
171
|
+
* test(pollvkkey): adjust test to setPollVkKey
|
|
172
|
+
|
|
173
|
+
* refactor(vkregistry): use setVerifyingKeys in setVerifyingKeysBatch
|
|
174
|
+
|
|
175
|
+
* refactor(poll): add verifier and vkRegystry in constructor
|
|
176
|
+
|
|
177
|
+
* refactor(poll): put verifier and vkRegistry into extContracts
|
|
178
|
+
|
|
179
|
+
* test(core e2e): fix sanity checks test for incorrect signature
|
|
180
|
+
|
|
181
|
+
* refactor(test): removing only from tests
|
|
182
|
+
|
|
183
|
+
* refactor(macistatetree): use LeanIMT instead of QuinTree
|
|
184
|
+
|
|
185
|
+
* refactor(crypto): export hashLeanIMT from index
|
|
186
|
+
|
|
187
|
+
* feat(joinpoll): use genSignUpTree instead of genMaciStateFromContract
|
|
188
|
+
|
|
189
|
+
* feat(joinpoll cli): add optional parameters
|
|
190
|
+
|
|
191
|
+
* test(coordinator): add pollJoiningZkeyPath in app.test
|
|
192
|
+
|
|
193
|
+
* refactor(joinpoll): prettier
|
|
194
|
+
|
|
195
|
+
* test(coordinator): add joinPoll
|
|
196
|
+
|
|
197
|
+
* fix(poll): joiningCircuitInputs with correct siblings, indices and actualStateTreeDepth
|
|
198
|
+
|
|
199
|
+
* test(integration): add joinPoll
|
|
200
|
+
|
|
201
|
+
* build(coordinator): add COORDINATOR_POLL_ZKEY_NAME
|
|
202
|
+
|
|
203
|
+
* refactor(mergestate): remove Maci from MergeState
|
|
204
|
+
|
|
205
|
+
* test(e2e): test:e2e add joinPoll
|
|
206
|
+
|
|
207
|
+
* test(e2e): test:keyChange add joinPoll
|
|
208
|
+
|
|
209
|
+
* docs(complete documentation): complete documentation of the new workflow
|
|
210
|
+
|
|
211
|
+
* docs(documentation): add v3 docs, revert v2 docs
|
|
212
|
+
|
|
213
|
+
* style(docs): prettier
|
|
214
|
+
|
|
215
|
+
* refactor(joinpoll): add generateAndVerifyProof and getStateIndexAndCreditBalance
|
|
216
|
+
|
|
217
|
+
* docs(blogpost): blogpost cuvering the latest updates
|
|
218
|
+
|
|
219
|
+
* docs(blogpost): kudos to our team members!
|
|
220
|
+
|
|
221
|
+
* style(prettier): blog
|
|
222
|
+
|
|
223
|
+
* fix(joinpoll): index value of the user in the state tree leaves
|
|
224
|
+
|
|
225
|
+
* docs(blog): remove poll-joining
|
|
226
|
+
* message processing is changed
|
|
227
|
+
|
|
228
|
+
* fix(ipoll): add missing parameter
|
|
229
|
+
|
|
230
|
+
* fix(poll-tests): add missing parameter maxMessagebatchSize
|
|
231
|
+
|
|
232
|
+
* feat(poll.ts): add chain hash updating
|
|
233
|
+
|
|
234
|
+
* test(poll tests): add test for checking chain hash computation
|
|
235
|
+
|
|
236
|
+
* feat(poll.ts): add batch hashes array computation
|
|
237
|
+
|
|
238
|
+
* feat(poll.sol): pad zeroes to the maximum size of batch
|
|
239
|
+
|
|
240
|
+
* feat(messageprocessor): update process messages to use chain hash
|
|
241
|
+
|
|
242
|
+
* refactor(vkregistry): refactor function call
|
|
243
|
+
|
|
244
|
+
* feat(processmessages.circom): add chainHash feature in circuits and test for that
|
|
245
|
+
|
|
246
|
+
* test(processmessages): rearrange test for key-change
|
|
247
|
+
|
|
248
|
+
* refactor(mergemessages): refactor functions calls which include mergemessages
|
|
249
|
+
|
|
250
|
+
* refactor(mergemessages): add some more changes about functions call which include mergemessages
|
|
251
|
+
|
|
252
|
+
* test(all tests): fixing tests after refactoring code
|
|
253
|
+
|
|
254
|
+
* refactor(accqueue): remove all calls for accqueue
|
|
255
|
+
|
|
256
|
+
* fix(currentmessagebatchindex): fix message batch indexing
|
|
257
|
+
|
|
258
|
+
* refactor(circuit tests): refactor code for circuit testing
|
|
259
|
+
|
|
260
|
+
* test(ceremonyparams.test): correct constants for CeremonyParams test
|
|
261
|
+
|
|
262
|
+
* perf(processmessages.circom + contracts): optimize last batch padding, remove unused inputs
|
|
263
|
+
|
|
264
|
+
* docs(padlastbatch method): update doc comment
|
|
265
|
+
|
|
266
|
+
* docs(poll.ts): remove stale comments
|
|
267
|
+
|
|
268
|
+
* docs(test comments): fix typos
|
|
269
|
+
|
|
270
|
+
* ci(treedepths mock): modify interface for mocked function
|
|
271
|
+
|
|
272
|
+
* fix(ceremony params test): fix circuit inputs
|
|
273
|
+
|
|
274
|
+
* test(messagevalidator): fix function calls for messagevalidator circuit in tests
|
|
275
|
+
|
|
276
|
+
* chore(comments): fix unusefull comments
|
|
277
|
+
|
|
278
|
+
* refactor(poll.sol): replace external contracts with maci only
|
|
279
|
+
|
|
280
|
+
* perf(messageprocessor.sol): hardcode initialization for batchHashes array
|
|
281
|
+
|
|
282
|
+
* docs(comments): fix some more comments
|
|
283
|
+
|
|
284
|
+
* test(test for pr checks): correct some of tests for PR checks
|
|
285
|
+
|
|
286
|
+
* ci: 🎡 renamed old ProcessMessages_10-2-1-2_test
|
|
287
|
+
|
|
288
|
+
* ci: 🎡 correct rapidsnark/build/prover path
|
|
289
|
+
|
|
290
|
+
* style(reviews): solve some reviews for merging
|
|
291
|
+
|
|
292
|
+
* refactor(messageaqq): remove more message merging and message aqq
|
|
293
|
+
|
|
294
|
+
* style(messageaqq): remove more message merging and message aqq
|
|
295
|
+
|
|
296
|
+
* refactor(messageaqq): remove message aqq from subgraph
|
|
297
|
+
|
|
298
|
+
* test(coordinator): hide NOT_MERGED_MESSAGE_TREE error
|
|
299
|
+
|
|
300
|
+
* test(coordinator): fix test about message merging
|
|
301
|
+
|
|
302
|
+
* test(proveonchain): change chainHash calculation
|
|
303
|
+
|
|
304
|
+
* test(proveonchain): fix chainHashes declaration
|
|
305
|
+
|
|
306
|
+
* test(proveonchain): fix chainHash calculation
|
|
307
|
+
|
|
308
|
+
* test(proveonchain): fix chainHashes calculations
|
|
309
|
+
|
|
310
|
+
* test(proveonchain): fix chainHashes calculation
|
|
311
|
+
|
|
312
|
+
* test(proveonchain): fix loop limit
|
|
313
|
+
|
|
314
|
+
* style(review comments): resolve some of review comments
|
|
315
|
+
|
|
316
|
+
* style(review comments): resolve some of review comments
|
|
317
|
+
|
|
318
|
+
* test(lint:ts): fix e2e test because of lint:ts check
|
|
319
|
+
|
|
320
|
+
* docs(wrong changes): fix wrong changes about documentation that is not in our scope
|
|
321
|
+
|
|
322
|
+
* refactor(batchsizes): change batchSizes struct with messageBatchSize variable
|
|
323
|
+
|
|
324
|
+
* refactor(contracts): rollback to provide external contract references
|
|
325
|
+
|
|
326
|
+
* docs(messageprocessor.sol): fix typo
|
|
327
|
+
|
|
328
|
+
* refactor(messagebatchsize): chenge messageBatchSize location from Params.sol to Poll.sol
|
|
329
|
+
|
|
330
|
+
* refactor(maxmessages): remove maxMessages from maxValues
|
|
331
|
+
|
|
332
|
+
* refactor(sltimestemp): remove slTimestamp from circuits
|
|
333
|
+
|
|
334
|
+
* refactor(review comments): resolve more review comments
|
|
335
|
+
|
|
336
|
+
* fix(subgraph): fix bug about maxVoteOptions dunction call
|
|
337
|
+
|
|
338
|
+
* fix(sltimestamp): fix test for removing slTimestap signal
|
|
339
|
+
|
|
340
|
+
* refactor(promise.all): refactor promise.all for only one async call
|
|
341
|
+
|
|
342
|
+
* fix(subgraph): try to fix subgraph build
|
|
343
|
+
|
|
344
|
+
* revert(.nx folder): remove .nx folder from cli folder
|
|
345
|
+
|
|
346
|
+
### Features
|
|
347
|
+
|
|
348
|
+
* add number of valid vote options ([cdba5a3](https://github.com/privacy-scaling-explorations/maci/commit/cdba5a3ca939fab8e51e40b734bd2061a87daa37))
|
|
349
|
+
* add start and end timestmap for poll ([cf67b53](https://github.com/privacy-scaling-explorations/maci/commit/cf67b539d7d5dfd8b83ba3e0becaa20d0292b410))
|
|
350
|
+
* anonymous poll joining milestone 1 ([#1625](https://github.com/privacy-scaling-explorations/maci/issues/1625)) ([5566cfe](https://github.com/privacy-scaling-explorations/maci/commit/5566cfece1ed989ececdaad07edb2fc3a0b4741a))
|
|
351
|
+
* anonymous poll joining milestone 2 and 3 ([#1750](https://github.com/privacy-scaling-explorations/maci/issues/1750)) ([47d6937](https://github.com/privacy-scaling-explorations/maci/commit/47d69371113f2b0f07cc9f60208e0601a4f9a065))
|
|
352
|
+
* **circuits:** add poll joined circuit ([30c4f6a](https://github.com/privacy-scaling-explorations/maci/commit/30c4f6a6edbbe8f2a9685e3bb40b9eaa5e893d84))
|
|
353
|
+
* force the same key for each poll ([#2063](https://github.com/privacy-scaling-explorations/maci/issues/2063)) ([11e5b8a](https://github.com/privacy-scaling-explorations/maci/commit/11e5b8aa577a88aa1dcf5c745dab900352da351d))
|
|
354
|
+
* make nullifier not leak identity between polls ([#1974](https://github.com/privacy-scaling-explorations/maci/issues/1974)) ([c9e7efc](https://github.com/privacy-scaling-explorations/maci/commit/c9e7efc825be2d0aaabae014ae51a97e2adaa413))
|
|
355
|
+
* rebase anon poll joining with dev ([c384a5b](https://github.com/privacy-scaling-explorations/maci/commit/c384a5b8e53706bb00060f684242e8ba9a4d11e8))
|
|
356
|
+
* **relayer:** add auth guard for message publishing ([813bfc7](https://github.com/privacy-scaling-explorations/maci/commit/813bfc7b25e403902e6779ef4304ee48bb5640e9))
|
|
357
|
+
* voice credits per poll ([#1967](https://github.com/privacy-scaling-explorations/maci/issues/1967)) ([f59e9c3](https://github.com/privacy-scaling-explorations/maci/commit/f59e9c350133efb2fbbc37e5139addf5e34c55e6))
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
### Bug Fixes
|
|
361
|
+
|
|
362
|
+
* add missing parts after anon poll joining rebase ([6349806](https://github.com/privacy-scaling-explorations/maci/commit/63498069fce87dd615d5be1db84a69332fcefe6e))
|
|
363
|
+
* anon poll joining ([bc6d4c2](https://github.com/privacy-scaling-explorations/maci/commit/bc6d4c28ce19d7d84d86fb6c96ca6a5f26780558))
|
|
364
|
+
* check if poll joining is withing voting deadline ([539bf95](https://github.com/privacy-scaling-explorations/maci/commit/539bf9525b366d3bf5ef7360bae0b2a155856340))
|
|
365
|
+
* remove max vote options param ([765ca42](https://github.com/privacy-scaling-explorations/maci/commit/765ca42d391afc8026895d0e4d269b71435c3f73))
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
### Code Refactoring
|
|
369
|
+
|
|
370
|
+
* cleanup anon poll joining ([c94bd8e](https://github.com/privacy-scaling-explorations/maci/commit/c94bd8e52713a976d639aaeac3226cc4c2ea9fb5))
|
|
371
|
+
* contract imports and proofs ([#2074](https://github.com/privacy-scaling-explorations/maci/issues/2074)) ([66dfab7](https://github.com/privacy-scaling-explorations/maci/commit/66dfab7e0916f5891f47ae1448b89f7b0fd0ed27))
|
|
372
|
+
|
|
373
|
+
|
|
374
|
+
### Miscellaneous
|
|
375
|
+
|
|
376
|
+
* **deps-dev:** bump @types/mocha from 10.0.8 to 10.0.10 ([a8b029a](https://github.com/privacy-scaling-explorations/maci/commit/a8b029a140b3bc81c639c26e049a766ce67b8886))
|
|
377
|
+
* **deps-dev:** bump @types/node from 20.17.19 to 22.13.9 ([aa7c356](https://github.com/privacy-scaling-explorations/maci/commit/aa7c356469592547f3d60c05077268267d7ea186))
|
|
378
|
+
* **deps-dev:** bump @types/node from 22.10.7 to 22.12.0 ([#2073](https://github.com/privacy-scaling-explorations/maci/issues/2073)) ([1dcb28e](https://github.com/privacy-scaling-explorations/maci/commit/1dcb28e33699ee91f9691c1073d4da0293e406c0))
|
|
379
|
+
* **deps-dev:** bump @types/node from 22.12.0 to 22.13.1 ([5f06af0](https://github.com/privacy-scaling-explorations/maci/commit/5f06af0180f522f552519529c07d2bb660fdd586))
|
|
380
|
+
* **deps-dev:** bump @types/node from 22.13.1 to 22.13.4 ([dba94f4](https://github.com/privacy-scaling-explorations/maci/commit/dba94f4fe6d405eaca655dfdc8ca01d57664b99b))
|
|
381
|
+
* **deps-dev:** bump @types/node from 22.13.9 to 22.13.10 ([#2241](https://github.com/privacy-scaling-explorations/maci/issues/2241)) ([3f50bb6](https://github.com/privacy-scaling-explorations/maci/commit/3f50bb65db4cd83b5ebe9d4fb1b7a6d650bb1c51))
|
|
382
|
+
* **deps-dev:** bump @types/node from 22.9.0 to 22.10.7 ([3e4a5ae](https://github.com/privacy-scaling-explorations/maci/commit/3e4a5ae43cc57d6ebaedeb5ce95ca6dd1c968ffe))
|
|
383
|
+
* **deps-dev:** bump @types/snarkjs from 0.7.8 to 0.7.9 ([5259169](https://github.com/privacy-scaling-explorations/maci/commit/5259169853cd08431f1b6433e578008b356be342))
|
|
384
|
+
* **deps-dev:** bump fast-check from 3.23.1 to 3.23.2 ([b6c6167](https://github.com/privacy-scaling-explorations/maci/commit/b6c616708ce1b3211c9a2f99511d08597b0123d8))
|
|
385
|
+
* **deps-dev:** bump fast-check from 3.23.2 to 4.0.0 ([266738d](https://github.com/privacy-scaling-explorations/maci/commit/266738ddf289c22f7e16ceba5a2fb09b836d7323))
|
|
386
|
+
* **deps-dev:** bump glob from 11.0.0 to 11.0.1 ([0382977](https://github.com/privacy-scaling-explorations/maci/commit/0382977255098a78ed22f42d9f5865b6e21c4d4f))
|
|
387
|
+
* **deps-dev:** bump mocha from 10.7.3 to 11.0.1 ([457a504](https://github.com/privacy-scaling-explorations/maci/commit/457a5048580a5460ad012b10486a65df0dacae0e))
|
|
388
|
+
* **deps-dev:** bump mocha from 10.8.2 to 11.1.0 ([f524a07](https://github.com/privacy-scaling-explorations/maci/commit/f524a07f5a3b1e94eaf6f230ecf16476f4c6810d))
|
|
389
|
+
* **deps-dev:** bump ts-mocha from 10.0.0 to 11.1.0 ([df84193](https://github.com/privacy-scaling-explorations/maci/commit/df84193a1ad0980523aba66f5b43b5a6cdd74307))
|
|
390
|
+
* **deps-dev:** bump typescript and typedoc ([4ee5de5](https://github.com/privacy-scaling-explorations/maci/commit/4ee5de5e29c6326b6728dc2ccd97da3bdea42fd7))
|
|
391
|
+
* **deps-dev:** bump typescript from 5.7.3 to 5.8.2 ([e37f1bf](https://github.com/privacy-scaling-explorations/maci/commit/e37f1bffd8193de316e748d0406cfb606455cb46))
|
|
392
|
+
* **deps:** bump circomkit from 0.3.1 to 0.3.2 ([5ca05bb](https://github.com/privacy-scaling-explorations/maci/commit/5ca05bbadcfba3b4b19be2c358f017723bb40fea))
|
|
393
|
+
* optimize lean imt and minor improvements ([a68701b](https://github.com/privacy-scaling-explorations/maci/commit/a68701b409284a1d6c787aa275a2eaf26b55ee5d))
|
|
394
|
+
* optimize message processing circuits ([145ef3f](https://github.com/privacy-scaling-explorations/maci/commit/145ef3f3f926a9e205486cfcea9157b910d044fd))
|
|
395
|
+
* update the readme ([#2242](https://github.com/privacy-scaling-explorations/maci/issues/2242)) ([ffdceee](https://github.com/privacy-scaling-explorations/maci/commit/ffdceee3074446f81deae5ef4e3df67f98aaada7))
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
## [2.5.0](https://github.com/privacy-scaling-explorations/maci/compare/v2.4.0...v2.5.0) (2024-11-20)
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
### Miscellaneous
|
|
403
|
+
|
|
404
|
+
* **deps-dev:** bump @types/node from 22.4.1 to 22.8.1 ([#1873](https://github.com/privacy-scaling-explorations/maci/issues/1873)) ([c1b9c0e](https://github.com/privacy-scaling-explorations/maci/commit/c1b9c0ed18eb3fae5e189dff952a8ab9dfb2f9b1))
|
|
405
|
+
* **deps-dev:** bump @types/node from 22.8.1 to 22.9.0 ([0e11e5d](https://github.com/privacy-scaling-explorations/maci/commit/0e11e5d668fed2e2168de56e87981b0edcca8cd9))
|
|
406
|
+
* **deps-dev:** bump fast-check from 3.21.0 to 3.23.1 ([fc2ebf9](https://github.com/privacy-scaling-explorations/maci/commit/fc2ebf91a1d70dd13d7b7728bae336b583909ae3))
|
|
407
|
+
* **deps-dev:** bump typescript from 5.5.4 to 5.6.3 ([8058c5d](https://github.com/privacy-scaling-explorations/maci/commit/8058c5de1d865317c79a00508b672091cd7b1eb0))
|
|
408
|
+
* **deps:** bump circomkit from 0.2.1 to 0.3.1 ([222ea35](https://github.com/privacy-scaling-explorations/maci/commit/222ea351d7d70cda2260623bb0c4fde808407ec1))
|
|
409
|
+
* **deps:** bump snarkjs from 0.7.4 to 0.7.5 ([5f5ffa6](https://github.com/privacy-scaling-explorations/maci/commit/5f5ffa67d3448dc25b11ba5ffd111e644662d194))
|
|
410
|
+
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
## [2.4.0](https://github.com/privacy-scaling-explorations/maci/compare/v2.3.0...v2.4.0) (2024-09-30)
|
|
414
|
+
|
|
415
|
+
|
|
416
|
+
### Miscellaneous
|
|
417
|
+
|
|
418
|
+
* **deps-dev:** bump @types/mocha from 10.0.7 to 10.0.8 ([#1827](https://github.com/privacy-scaling-explorations/maci/issues/1827)) ([4deae8b](https://github.com/privacy-scaling-explorations/maci/commit/4deae8bb3a4ea5cf1b4ad16018186a593142adb8))
|
|
419
|
+
* **deps:** bump @zk-kit/baby-jubjub from 1.0.1 to 1.0.3 ([#1825](https://github.com/privacy-scaling-explorations/maci/issues/1825)) ([071806d](https://github.com/privacy-scaling-explorations/maci/commit/071806d43e49db9f9c57f36b4ca80aea8afa29d5))
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
## [2.3.0](https://github.com/privacy-scaling-explorations/maci/compare/v2.2.1...v2.3.0) (2024-09-05)
|
|
424
|
+
|
|
425
|
+
|
|
426
|
+
### Bug Fixes
|
|
427
|
+
|
|
428
|
+
* do not cleanup thread all the time while doing parallel proof gen ([#1808](https://github.com/privacy-scaling-explorations/maci/issues/1808)) ([d683cb3](https://github.com/privacy-scaling-explorations/maci/commit/d683cb35e3b1fb54df05e200be85386fb7328de5))
|
|
429
|
+
|
|
430
|
+
|
|
431
|
+
### Miscellaneous
|
|
432
|
+
|
|
433
|
+
* **ceremony:** update ceremony tests to work with v2 params and keys ([#1807](https://github.com/privacy-scaling-explorations/maci/issues/1807)) ([6bf1ffb](https://github.com/privacy-scaling-explorations/maci/commit/6bf1ffb42e4537dba52fb25b1fc7e370e9a39d76))
|
|
434
|
+
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
## [2.2.0](https://github.com/privacy-scaling-explorations/maci/compare/v2.1.0...v2.2.0) (2024-08-19)
|
|
438
|
+
|
|
439
|
+
|
|
440
|
+
### Miscellaneous
|
|
441
|
+
|
|
442
|
+
* **deps-dev:** bump @types/node from 22.1.0 to 22.2.0 ([ac18985](https://github.com/privacy-scaling-explorations/maci/commit/ac189852bf6abb787736c474ad87927afaa5163c))
|
|
443
|
+
* **deps-dev:** bump @types/node from 22.2.0 to 22.4.1 ([#1779](https://github.com/privacy-scaling-explorations/maci/issues/1779)) ([4a929e0](https://github.com/privacy-scaling-explorations/maci/commit/4a929e0b9a5c4de5ac0345e742668a3400798867))
|
|
444
|
+
* **deps-dev:** bump fast-check from 3.20.0 to 3.21.0 ([63baf2c](https://github.com/privacy-scaling-explorations/maci/commit/63baf2cd3e000f36fd426f4cf65c2f01d6858642))
|
|
445
|
+
* **deps-dev:** bump mocha from 10.7.0 to 10.7.3 ([6ba908f](https://github.com/privacy-scaling-explorations/maci/commit/6ba908f5f78628aa6afe973b3d71ae54ff08c735))
|
|
446
|
+
|
|
447
|
+
|
|
448
|
+
|
|
449
|
+
## [2.1.0](https://github.com/privacy-scaling-explorations/maci/compare/v2.0.0...v2.1.0) (2024-08-07)
|
|
450
|
+
|
|
451
|
+
|
|
452
|
+
### Bug Fixes
|
|
453
|
+
|
|
454
|
+
* **circuits:** use dynamic imports for promisify ([d5c2d11](https://github.com/privacy-scaling-explorations/maci/commit/d5c2d1127bb26f2abb5079dc4afe62f2d491f21c))
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
### Miscellaneous
|
|
458
|
+
|
|
459
|
+
* **circuits:** add constraint info print script ([a9cc93e](https://github.com/privacy-scaling-explorations/maci/commit/a9cc93e975b845419a366a07573c27aabdc1bf35))
|
|
460
|
+
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
## [2.0.0](https://github.com/privacy-scaling-explorations/maci/compare/v1.2.0...v2.0.0) (2024-08-06)
|
|
464
|
+
|
|
465
|
+
|
|
466
|
+
### ⚠ BREAKING CHANGES
|
|
467
|
+
|
|
468
|
+
* **topup:** No more topups
|
|
469
|
+
|
|
470
|
+
### Features
|
|
471
|
+
|
|
472
|
+
* **coordinator:** deploy subgraph from coordinator service ([d04d82c](https://github.com/privacy-scaling-explorations/maci/commit/d04d82cb4a3e022471726f87b24b2ee14b8ae0a2))
|
|
473
|
+
* **coordinator:** update authorization ([47ef8ab](https://github.com/privacy-scaling-explorations/maci/commit/47ef8abf3c433f3992feddcced3a9ac5e1cb2cc4))
|
|
474
|
+
* export merge function and modify package version ([#1584](https://github.com/privacy-scaling-explorations/maci/issues/1584)) ([f6ae34a](https://github.com/privacy-scaling-explorations/maci/commit/f6ae34a3f9ea375cd5dac8f0ce8618e33509f8ad))
|
|
475
|
+
* **multiple-polls:** allow concurrent polls ([14e89ba](https://github.com/privacy-scaling-explorations/maci/commit/14e89baea1ede9bc9bad79fafb5c362d6a6a81e9))
|
|
476
|
+
|
|
477
|
+
|
|
478
|
+
### Bug Fixes
|
|
479
|
+
|
|
480
|
+
* add coordinator public key hash public input ([9766bbf](https://github.com/privacy-scaling-explorations/maci/commit/9766bbfcecd41bd0f39c1422978d959705b1b500))
|
|
481
|
+
* **circuits:** ensure we check index < numSignups ([adeb6b8](https://github.com/privacy-scaling-explorations/maci/commit/adeb6b8fbcca01fdc73168cd73b66301f5268eaf))
|
|
482
|
+
* **circuits:** remove only for circuits tests ([6b6e82b](https://github.com/privacy-scaling-explorations/maci/commit/6b6e82bb026947cf099e70a01f3e6f0fb823222d))
|
|
483
|
+
* typos workflow ([b36898c](https://github.com/privacy-scaling-explorations/maci/commit/b36898c1e5aad05ff77fdf91f0660055ff428fa9))
|
|
484
|
+
|
|
485
|
+
|
|
486
|
+
### Code Refactoring
|
|
487
|
+
|
|
488
|
+
* **circuits:** remove duplicate constraints ([#1644](https://github.com/privacy-scaling-explorations/maci/issues/1644)) ([cd7ea49](https://github.com/privacy-scaling-explorations/maci/commit/cd7ea492aaace4c0aaa0c50ce0449a35eb8013d1))
|
|
489
|
+
* **circuits:** simplify generatePathIndices templates ([2ee32f4](https://github.com/privacy-scaling-explorations/maci/commit/2ee32f470fb8d2dbb02bdea2769166754c480706))
|
|
490
|
+
* enhance MACI circuits readability ([#1337](https://github.com/privacy-scaling-explorations/maci/issues/1337)) ([3770a2a](https://github.com/privacy-scaling-explorations/maci/commit/3770a2ab6626c4beffb71e7b2d9dce595e5e9f53))
|
|
491
|
+
* **maci:** remove subsidy feature to simplify further protocol improvements ([52fc7c5](https://github.com/privacy-scaling-explorations/maci/commit/52fc7c5b8f2d389868bca6171ffd15a94b1d1659))
|
|
492
|
+
* **topup:** remove the topup feature ([67711d4](https://github.com/privacy-scaling-explorations/maci/commit/67711d44058831302d4556f12d1972ffacede653))
|
|
493
|
+
|
|
494
|
+
|
|
495
|
+
### Miscellaneous
|
|
496
|
+
|
|
497
|
+
* add @types/snarkjs package ([57bf0ed](https://github.com/privacy-scaling-explorations/maci/commit/57bf0edf4453d18c7c154ae928c30899b6996ebd))
|
|
498
|
+
* add doc entries for new maci version (currently being developed) ([c72a130](https://github.com/privacy-scaling-explorations/maci/commit/c72a130cf6dcd4e8e5e59b374d8a63c1cfaae8cd))
|
|
499
|
+
* bump to 1.2.2 ([e63278f](https://github.com/privacy-scaling-explorations/maci/commit/e63278f71937a1fa908ec8f4be2d43114701c134))
|
|
500
|
+
* **ceremony:** update ceremony params tests ([b78830d](https://github.com/privacy-scaling-explorations/maci/commit/b78830d921d39952fbbca0fe7529340ee47ca59f))
|
|
501
|
+
* **circuits:** add fuzz tests for incremental quinary tree ([#1520](https://github.com/privacy-scaling-explorations/maci/issues/1520)) ([7a812ef](https://github.com/privacy-scaling-explorations/maci/commit/7a812efc13250cf98754341f772f87ed00da3d09))
|
|
502
|
+
* **circuits:** optimize converting message to command ([#1681](https://github.com/privacy-scaling-explorations/maci/issues/1681)) ([be7a659](https://github.com/privacy-scaling-explorations/maci/commit/be7a6598b7aeab2e11717bea509c697d61b556db))
|
|
503
|
+
* **circuits:** optimize message to command ([#1682](https://github.com/privacy-scaling-explorations/maci/issues/1682)) ([ad04340](https://github.com/privacy-scaling-explorations/maci/commit/ad04340972f3d35a8d4915227d15c5502af7fe63))
|
|
504
|
+
* cleanup circuits folder and update docs ([122c1f7](https://github.com/privacy-scaling-explorations/maci/commit/122c1f72fb3ce309a51479669e8d819a463cb956))
|
|
505
|
+
* **cleanup:** remove references to topup ([1cda690](https://github.com/privacy-scaling-explorations/maci/commit/1cda690ceaaac49525e02fffcbaa11bad77541e8))
|
|
506
|
+
* **deps-dev:** bump @types/mocha from 10.0.6 to 10.0.7 ([07c3480](https://github.com/privacy-scaling-explorations/maci/commit/07c3480efc40ad1d3f651b78cd7c3aaeee8d7f8a))
|
|
507
|
+
* **deps-dev:** bump @types/node from 20.11.20 to 20.11.24 ([c575eca](https://github.com/privacy-scaling-explorations/maci/commit/c575eca7c54c262764ce794a919f3b1d58d7d8e7))
|
|
508
|
+
* **deps-dev:** bump @types/node from 20.11.24 to 20.11.25 ([5eb49f9](https://github.com/privacy-scaling-explorations/maci/commit/5eb49f9090fc6db3a80ad2d63548d93430ff7645))
|
|
509
|
+
* **deps-dev:** bump @types/node from 20.11.25 to 20.11.28 ([81bebaa](https://github.com/privacy-scaling-explorations/maci/commit/81bebaa880cbc15b8c8445d412b9fc9d89580e67))
|
|
510
|
+
* **deps-dev:** bump @types/node from 20.11.28 to 20.11.30 ([5ef4420](https://github.com/privacy-scaling-explorations/maci/commit/5ef44209d16cd441067fb67201daa61cf968382d))
|
|
511
|
+
* **deps-dev:** bump @types/node from 20.11.30 to 20.12.2 ([e7c32d0](https://github.com/privacy-scaling-explorations/maci/commit/e7c32d0ddd506727f229d950239a116961bbe1a0))
|
|
512
|
+
* **deps-dev:** bump @types/node from 20.12.10 to 20.12.11 ([3019c66](https://github.com/privacy-scaling-explorations/maci/commit/3019c66eb70e54b376e9464417e073bd98d96b6a))
|
|
513
|
+
* **deps-dev:** bump @types/node from 20.12.11 to 20.12.12 ([bd0a0a5](https://github.com/privacy-scaling-explorations/maci/commit/bd0a0a5a1ec685542c2af4f6962186176d5453ba))
|
|
514
|
+
* **deps-dev:** bump @types/node from 20.12.2 to 20.12.5 ([588392f](https://github.com/privacy-scaling-explorations/maci/commit/588392f2f773addce0204f236fc26981ead1f7bb))
|
|
515
|
+
* **deps-dev:** bump @types/node from 20.12.5 to 20.12.7 ([f1b00de](https://github.com/privacy-scaling-explorations/maci/commit/f1b00deb29788e390dcecd5b1741339f96f06f73))
|
|
516
|
+
* **deps-dev:** bump @types/node from 20.12.7 to 20.12.10 ([cf5026a](https://github.com/privacy-scaling-explorations/maci/commit/cf5026a42a41c0078467fb477fdd51a2afb31e1f))
|
|
517
|
+
* **deps-dev:** bump @types/node from 20.14.10 to 20.14.11 ([01564c0](https://github.com/privacy-scaling-explorations/maci/commit/01564c0503379ca65ce90ea77fdc5ebcd9ae81c5))
|
|
518
|
+
* **deps-dev:** bump @types/node from 20.14.11 to 22.1.0 ([#1732](https://github.com/privacy-scaling-explorations/maci/issues/1732)) ([3c4b9d9](https://github.com/privacy-scaling-explorations/maci/commit/3c4b9d9c9eb7439c4ea9791e4388ff586530be50))
|
|
519
|
+
* **deps-dev:** bump @types/node from 20.14.2 to 20.14.8 ([636ac22](https://github.com/privacy-scaling-explorations/maci/commit/636ac22bd29d12e5af7f69c7dd639d0223595992))
|
|
520
|
+
* **deps-dev:** bump @types/node from 20.14.8 to 20.14.10 ([add0ce4](https://github.com/privacy-scaling-explorations/maci/commit/add0ce4e406fea4bfe2b839facc6a0a33b3fe3bf))
|
|
521
|
+
* **deps-dev:** bump chai-as-promised from 7.1.1 to 7.1.2 ([6930a1c](https://github.com/privacy-scaling-explorations/maci/commit/6930a1c6590f0b8d9971ac38bf06d44f90b88760))
|
|
522
|
+
* **deps-dev:** bump fast-check from 3.19.0 to 3.20.0 ([5e0796b](https://github.com/privacy-scaling-explorations/maci/commit/5e0796bac212e78a4ebc01b4a78cc4cf66309d8e))
|
|
523
|
+
* **deps-dev:** bump mocha from 10.3.0 to 10.4.0 ([7bf5afe](https://github.com/privacy-scaling-explorations/maci/commit/7bf5afe954bcb6b34dbe7f109c9c7e8d5396f1b2))
|
|
524
|
+
* **deps-dev:** bump mocha from 10.4.0 to 10.5.0 ([e5c14cf](https://github.com/privacy-scaling-explorations/maci/commit/e5c14cf01e9b5beb6232e80345121dbb47190fd0))
|
|
525
|
+
* **deps-dev:** bump mocha from 10.5.0 to 10.6.0 ([6847bb3](https://github.com/privacy-scaling-explorations/maci/commit/6847bb374893672bf7e809fc80d124e2d874b784))
|
|
526
|
+
* **deps-dev:** bump mocha from 10.6.0 to 10.7.0 ([#1687](https://github.com/privacy-scaling-explorations/maci/issues/1687)) ([2cad35b](https://github.com/privacy-scaling-explorations/maci/commit/2cad35bab133af79f77ea9c19098d3561ba06f69))
|
|
527
|
+
* **deps-dev:** bump typescript from 5.3.3 to 5.4.2 ([591c767](https://github.com/privacy-scaling-explorations/maci/commit/591c767308f746fbfc32a9f184192912895f080c))
|
|
528
|
+
* **deps-dev:** bump typescript from 5.4.2 to 5.4.3 ([a2f5c8a](https://github.com/privacy-scaling-explorations/maci/commit/a2f5c8ac32394fc7672051d5342baf7e6f9567ce))
|
|
529
|
+
* **deps-dev:** bump typescript from 5.4.3 to 5.4.4 ([5e047ea](https://github.com/privacy-scaling-explorations/maci/commit/5e047eaa96d508addf34e35764ddaf4deb221593))
|
|
530
|
+
* **deps-dev:** bump typescript from 5.4.4 to 5.4.5 ([ea6339d](https://github.com/privacy-scaling-explorations/maci/commit/ea6339da96dda38a931cb6d39615c9267ca45b81))
|
|
531
|
+
* **deps-dev:** bump typescript from 5.4.5 to 5.5.2 ([e2b4d45](https://github.com/privacy-scaling-explorations/maci/commit/e2b4d45235c82bba349d959a164442cae90ad97f))
|
|
532
|
+
* **deps-dev:** bump typescript from 5.5.2 to 5.5.3 ([c979188](https://github.com/privacy-scaling-explorations/maci/commit/c979188358becfc4b434a2f73331e640ce595846))
|
|
533
|
+
* **deps-dev:** bump typescript from 5.5.3 to 5.5.4 ([8ed2e2b](https://github.com/privacy-scaling-explorations/maci/commit/8ed2e2b109a950137dd289aa7d3eca4268079272))
|
|
534
|
+
* **deps:** bump @zk-kit/circuits from 0.3.0 to 0.4.0 ([49f098f](https://github.com/privacy-scaling-explorations/maci/commit/49f098fcce122589bc9a07cbfd1863878939df2a))
|
|
535
|
+
* **deps:** bump circomkit from 0.0.24 to 0.0.25 ([b3eccf8](https://github.com/privacy-scaling-explorations/maci/commit/b3eccf86587edd9b2f4193894c0608f1a2aec677))
|
|
536
|
+
* **deps:** bump circomkit from 0.0.25 to 0.1.0 ([09a1ccf](https://github.com/privacy-scaling-explorations/maci/commit/09a1ccf3b33b3377d4abc38cb345d2927ff9fc79))
|
|
537
|
+
* **deps:** bump circomkit from 0.1.0 to 0.2.1 ([#1480](https://github.com/privacy-scaling-explorations/maci/issues/1480)) ([9cb775f](https://github.com/privacy-scaling-explorations/maci/commit/9cb775fab5ee8a04e17bcbef533a1ab8d2414446))
|
|
538
|
+
* **deps:** bump snarkjs from 0.7.3 to 0.7.4 ([50642af](https://github.com/privacy-scaling-explorations/maci/commit/50642afa368a91c47ebe32089f4bdb4a159ac1cd))
|
|
539
|
+
* **docs:** fixed broken links ([#1585](https://github.com/privacy-scaling-explorations/maci/issues/1585)) ([4b2012e](https://github.com/privacy-scaling-explorations/maci/commit/4b2012eb3827611e8a7fb0d441e6fd1da8df478e))
|
|
540
|
+
* fuzz testing for circuits ([429bd12](https://github.com/privacy-scaling-explorations/maci/commit/429bd126a73094a6e54f78a3c3817b3fab704be3))
|
|
541
|
+
* optimize message processor and tally ([d75b244](https://github.com/privacy-scaling-explorations/maci/commit/d75b2446c2ee012d146afe8d7bc423f5b94e4579))
|
|
542
|
+
* **release:** publish 1.2.1 ([93564f8](https://github.com/privacy-scaling-explorations/maci/commit/93564f8a98baa0fee65db16e2e40209d9ac1b3ae))
|
|
543
|
+
* **release:** publish 2.0.0 ([04e647d](https://github.com/privacy-scaling-explorations/maci/commit/04e647d231df34952569ad6ff802e0b2333eb658))
|
|
544
|
+
* remove max values ([8f951b0](https://github.com/privacy-scaling-explorations/maci/commit/8f951b0fcc73212d99d3ddc962fbaa9788471fb6))
|
|
545
|
+
* use async fs instead of sync version ([fb8317e](https://github.com/privacy-scaling-explorations/maci/commit/fb8317ef3943a8434083de6e1b0f9469f15dd113))
|
|
546
|
+
|
|
547
|
+
|
|
548
|
+
|
|
549
|
+
## [1.2.0](https://github.com/privacy-scaling-explorations/maci/compare/v1.1.1...v1.2.0) (2024-02-23)
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
### Features
|
|
553
|
+
|
|
554
|
+
* **circuits:** remove circomlib fork in favour of latest and zk-kit ([bf11b40](https://github.com/privacy-scaling-explorations/maci/commit/bf11b4092cd531cf0993534061cf7c24e8de44e2)), closes [#772](https://github.com/privacy-scaling-explorations/maci/issues/772)
|
|
555
|
+
* **circuits:** remove zkey-manager in favour of circomkit ([d79e9c0](https://github.com/privacy-scaling-explorations/maci/commit/d79e9c0ee18df27c3bd3e5e49924db21303d1c45))
|
|
556
|
+
* **contracts:** return contract addresses when deploying the poll contract ([e94998c](https://github.com/privacy-scaling-explorations/maci/commit/e94998c12d8a5f2bde2fb54b4af384d42e35d646))
|
|
557
|
+
* **proofs:** make preferred witness type in circuit's genProof function ([2b95044](https://github.com/privacy-scaling-explorations/maci/commit/2b95044921cd0bed72694d069e2f9ed8fa44e72e))
|
|
558
|
+
* **qv:** add optional flag to use quadratic voting or not in MACI ([86ba854](https://github.com/privacy-scaling-explorations/maci/commit/86ba8548780049245482e5277cc47f4a8776e9e6))
|
|
559
|
+
|
|
560
|
+
|
|
561
|
+
### Bug Fixes
|
|
562
|
+
|
|
563
|
+
* **add safelessthan:** add SafeLessThan in utility.circom and use it in incrementalQuinnTree.circom ([60727d4](https://github.com/privacy-scaling-explorations/maci/commit/60727d4d10406edda32ad28e53d399d41d45ed88))
|
|
564
|
+
* **build:** fix bug that prevented c witness from being compiled ([d22caad](https://github.com/privacy-scaling-explorations/maci/commit/d22caadca15dc6de639720faf1d9a53259714ce8))
|
|
565
|
+
* **circuits:** enforce use of stateIndex from message ([510e6ee](https://github.com/privacy-scaling-explorations/maci/commit/510e6ee365958e8c7f72cfca6cea75d15a89d28b))
|
|
566
|
+
* **circuits:** ensure we account for correct num signups in messageValidator ([04c847c](https://github.com/privacy-scaling-explorations/maci/commit/04c847cbc3f34979f292ec7561109f14e274efaf))
|
|
567
|
+
* **circuits:** fix coordinator censoring by passing currentVoteWeight = 0 ([22e091d](https://github.com/privacy-scaling-explorations/maci/commit/22e091d2941b5e86ecd7df2f228bd0e10b6c4c47))
|
|
568
|
+
* **circuits:** replace execSync with execFileSync ([4c121ca](https://github.com/privacy-scaling-explorations/maci/commit/4c121ca0413495979be7af87da5474a9f0b093bf))
|
|
569
|
+
* **contracts:** save numSignups after merging maciStateAq inside the Poll contract ([4985b2d](https://github.com/privacy-scaling-explorations/maci/commit/4985b2d61655f3b802186fc03c2d85a658c0f0da)), closes [#1091](https://github.com/privacy-scaling-explorations/maci/issues/1091)
|
|
570
|
+
* **crypto:** get rid of potential prototype polution ([9b8a97c](https://github.com/privacy-scaling-explorations/maci/commit/9b8a97cc9661e0ee6f535cdcab19b4aa0fa98136))
|
|
571
|
+
* fixed the maci-circuit package to allow building on circom >2.0.7 ([e954f78](https://github.com/privacy-scaling-explorations/maci/commit/e954f78224d53342826bfe73b082b673e0f147c8))
|
|
572
|
+
* **incrementalquintree:** remove unnecessary condition check in incrementalQuinnTree.circom ([87b3397](https://github.com/privacy-scaling-explorations/maci/commit/87b339790a5d44adb8c5bf447346e16933c48d5c))
|
|
573
|
+
* **publish:** ensure we publish the correct files ([bc42724](https://github.com/privacy-scaling-explorations/maci/commit/bc42724b34cf0c047c5692fbf477ed013a102aee))
|
|
574
|
+
* remove trailing chars ([3101a60](https://github.com/privacy-scaling-explorations/maci/commit/3101a6016ebda3385273b47b2de33f5fd9c1221f))
|
|
575
|
+
* **safelessthan:** replaced several LessThan with SafeLessThan; fixed check on enoughVoiceCredit ([2d7a3a0](https://github.com/privacy-scaling-explorations/maci/commit/2d7a3a0efd33dfc3a5f4d3f95bec3adda7abb963))
|
|
576
|
+
* **topup:** check valid new state leaf balance ([ec12d2b](https://github.com/privacy-scaling-explorations/maci/commit/ec12d2b1ec31b0607f65be49a5679fcae5e3939d))
|
|
577
|
+
|
|
578
|
+
|
|
579
|
+
### Code Refactoring
|
|
580
|
+
|
|
581
|
+
* **circuits:** fix ts types, improve docs ([a849486](https://github.com/privacy-scaling-explorations/maci/commit/a84948685d2e4be426cef50c5c608c107b5142b1))
|
|
582
|
+
* **core:** refactor the core package subsidy and tally functions ([0af7dd2](https://github.com/privacy-scaling-explorations/maci/commit/0af7dd2d448c4796c3872665d43654343f9fc3e3))
|
|
583
|
+
* **core:** refactor the process message functions and general cleanup ([823cacd](https://github.com/privacy-scaling-explorations/maci/commit/823cacd8659281b8390b74c8d765b23ee7a83a80))
|
|
584
|
+
* **core:** remove unnecessary messageAq from Poll ([d3930f7](https://github.com/privacy-scaling-explorations/maci/commit/d3930f706963747903305cce1ee5a716ea28c31d))
|
|
585
|
+
* **core:** remove unnecessary stateAq from MaciState ([22a4f28](https://github.com/privacy-scaling-explorations/maci/commit/22a4f286010ff5add413eee88d933c0e74898346))
|
|
586
|
+
* **crypto:** remove ffjavascript and implement utils functions locally ([0b2986f](https://github.com/privacy-scaling-explorations/maci/commit/0b2986fcaadbfce37ff9fc0007ddeae97573924e)), closes [#458](https://github.com/privacy-scaling-explorations/maci/issues/458)
|
|
587
|
+
* fix ESLint issues ([6c0ed97](https://github.com/privacy-scaling-explorations/maci/commit/6c0ed97c0976a81b5e5506699d550ec93a553cb8))
|
|
588
|
+
* **maci-core:** refactor directory structure for quick core component access ([3aeba77](https://github.com/privacy-scaling-explorations/maci/commit/3aeba77435fbd783e5cecf88a1f2c0d4c58c8022))
|
|
589
|
+
* **nonqv:** optimize tally votes non qv circuit and contracts ([ea632a9](https://github.com/privacy-scaling-explorations/maci/commit/ea632a97862c4304c764f511ab480b3664224b5f))
|
|
590
|
+
* **optimisedmt:** remove dependency and implement locally ([c7d81e2](https://github.com/privacy-scaling-explorations/maci/commit/c7d81e20aaf6308c7d4e1efc09c497729f6a8f10))
|
|
591
|
+
* **remove messageaqfactory:** remove messageAqFactory; remove redundant pollFactory dependency ([dcd1c67](https://github.com/privacy-scaling-explorations/maci/commit/dcd1c67f14f0cb92979d13e7887373ff6e354a6f))
|
|
592
|
+
* **repo:** remove redundant code from certain packages ([d55497a](https://github.com/privacy-scaling-explorations/maci/commit/d55497a9805812b2d2472386caecf75995d6efcf))
|
|
593
|
+
|
|
594
|
+
|
|
595
|
+
### Miscellaneous
|
|
596
|
+
|
|
597
|
+
* add a badges to README.md ([888524b](https://github.com/privacy-scaling-explorations/maci/commit/888524baae82d56edbf0c794e587de174906c34c))
|
|
598
|
+
* add test file routes to circuit test commands ([6f0228f](https://github.com/privacy-scaling-explorations/maci/commit/6f0228f115211f8cf6581d7e80438791f98f6de0))
|
|
599
|
+
* add types check ([69f038f](https://github.com/privacy-scaling-explorations/maci/commit/69f038f55e6c740d43b8b5376db999bcf92de845))
|
|
600
|
+
* apply prettier ([8b905c0](https://github.com/privacy-scaling-explorations/maci/commit/8b905c0948d4a1f950653c6812067ec98ebfcbc8))
|
|
601
|
+
* bundle size optimizations ([18da49c](https://github.com/privacy-scaling-explorations/maci/commit/18da49c791e53350158659df8248d48af8e80f6d))
|
|
602
|
+
* **ceremony:** add circuit tests with ceremony params ([58611db](https://github.com/privacy-scaling-explorations/maci/commit/58611dbf62f2dc01cf978d6bf01cf15bdef77356))
|
|
603
|
+
* **changelog:** add CHANGELOG of v1.1.1 ([f0c315a](https://github.com/privacy-scaling-explorations/maci/commit/f0c315a4c1b86f88839f2dbe4c4b9f59193f7be4))
|
|
604
|
+
* **circuits:** integrate linter ([93e8a65](https://github.com/privacy-scaling-explorations/maci/commit/93e8a657fccb3232b18bf191984c6bea5ccabf85))
|
|
605
|
+
* **circuits:** refactor and add tests for the circom circuits ([4d6419b](https://github.com/privacy-scaling-explorations/maci/commit/4d6419b4962af6e94929721a3008406b6bc29c1e))
|
|
606
|
+
* **circuits:** remove todo messages ([071acc4](https://github.com/privacy-scaling-explorations/maci/commit/071acc42322be736932ef05d6e02356da4808bda))
|
|
607
|
+
* **cli:** optimize bundle size ([39268b2](https://github.com/privacy-scaling-explorations/maci/commit/39268b2ff8e0d27d062c6d3bc52a63ce8038ec5e))
|
|
608
|
+
* **contract:** apply linter for deploy scripts and contracts ([9af9c04](https://github.com/privacy-scaling-explorations/maci/commit/9af9c0497a2491eaf89fbff475cf0f60bc04f59c))
|
|
609
|
+
* **contracts:** add proof generation for task coordinator ([c145883](https://github.com/privacy-scaling-explorations/maci/commit/c145883ecc42b87170a401894b68cd2287d15832))
|
|
610
|
+
* **core:** add `CircuitInputs` type ([c4b72b0](https://github.com/privacy-scaling-explorations/maci/commit/c4b72b0f0b25a1bb147348a728a9550c8b6460a1))
|
|
611
|
+
* **core:** add Typedoc comments ([a8521ee](https://github.com/privacy-scaling-explorations/maci/commit/a8521eea97bca47298bc2c59ae1c31df9533258b))
|
|
612
|
+
* **core:** integrate linter ([614e76b](https://github.com/privacy-scaling-explorations/maci/commit/614e76b1b1de5d2c9876b11f15439e92b86db8f6))
|
|
613
|
+
* **dependencies:** update project dependencies and remove redundant ones ([4c5ac27](https://github.com/privacy-scaling-explorations/maci/commit/4c5ac27767492c9867a6e2ab2acd6b10fe132847))
|
|
614
|
+
* **deps-dev:** bump @types/node from 18.19.6 to 20.10.8 ([6645120](https://github.com/privacy-scaling-explorations/maci/commit/664512038212d36d40799e8c4787847735bd7d82))
|
|
615
|
+
* **deps-dev:** bump @types/node from 20.10.8 to 20.11.0 ([805d253](https://github.com/privacy-scaling-explorations/maci/commit/805d2536a54478c51403362419ecad0b6ab736a7))
|
|
616
|
+
* **deps-dev:** bump @types/node from 20.11.0 to 20.11.2 ([45839e8](https://github.com/privacy-scaling-explorations/maci/commit/45839e8c2668ec56ea06221758605f88029ea8a1))
|
|
617
|
+
* **deps-dev:** bump @types/node from 20.11.10 to 20.11.16 ([8144919](https://github.com/privacy-scaling-explorations/maci/commit/8144919939f7d9a841eb6fce7182628cedbf8746))
|
|
618
|
+
* **deps-dev:** bump @types/node from 20.11.16 to 20.11.17 ([44de5db](https://github.com/privacy-scaling-explorations/maci/commit/44de5db0c25a5fdfd5c13c397f49edb7185bf1f5))
|
|
619
|
+
* **deps-dev:** bump @types/node from 20.11.17 to 20.11.19 ([8d86b32](https://github.com/privacy-scaling-explorations/maci/commit/8d86b32ef70b89f4239aad3903fd36937cf6a90f))
|
|
620
|
+
* **deps-dev:** bump @types/node from 20.11.2 to 20.11.5 ([7698ede](https://github.com/privacy-scaling-explorations/maci/commit/7698edef2b95bc017e54c1fc0d796ccc9da3de85))
|
|
621
|
+
* **deps-dev:** bump @types/node from 20.11.5 to 20.11.10 ([a2c445a](https://github.com/privacy-scaling-explorations/maci/commit/a2c445a295e792e421f6c1537b2b21f8a7648683))
|
|
622
|
+
* **deps-dev:** bump lerna from 6.6.2 to 8.0.2 ([4b150ad](https://github.com/privacy-scaling-explorations/maci/commit/4b150ade7c4fbaf88eb0e1f629cec6749377706d))
|
|
623
|
+
* **deps-dev:** bump mocha from 10.2.0 to 10.3.0 ([2b76e04](https://github.com/privacy-scaling-explorations/maci/commit/2b76e0445f5da5864a335352f66eac33c070ab29))
|
|
624
|
+
* **deps-dev:** bump typescript from 5.2.2 to 5.3.3 ([4ec399d](https://github.com/privacy-scaling-explorations/maci/commit/4ec399dd6e984c12ebd24d0b20c14c1104872500))
|
|
625
|
+
* **deps:** bump circomkit from 0.0.21 to 0.0.22 ([1c4e405](https://github.com/privacy-scaling-explorations/maci/commit/1c4e4051920e84df88a28b1ed908ee8e6d3266b8))
|
|
626
|
+
* **deps:** bump circomkit from 0.0.22 to 0.0.24 ([2ff4d38](https://github.com/privacy-scaling-explorations/maci/commit/2ff4d380d6601e363abd2435d59ac150ca2c190f))
|
|
627
|
+
* **deps:** bump snarkjs from 0.7.2 to 0.7.3 ([cf95b6f](https://github.com/privacy-scaling-explorations/maci/commit/cf95b6ff6f66342e3b75dedd5c70d62f8f0816b1))
|
|
628
|
+
* **deps:** update circomkit to latest version and add console logs ([9f7ec50](https://github.com/privacy-scaling-explorations/maci/commit/9f7ec50dadcfb1a27bccb845f1552a2af2b8b1f2))
|
|
629
|
+
* linter ([42ea4f0](https://github.com/privacy-scaling-explorations/maci/commit/42ea4f0ae8b342f6bd5ca5ac86f1bdd143978324))
|
|
630
|
+
* linter unification ([61a8bcd](https://github.com/privacy-scaling-explorations/maci/commit/61a8bcd915fd3e4b4da3c00d40704d892c02f51b))
|
|
631
|
+
* **maci:** added README for the circuit package and fixed typo in contract's README ([4d0f74b](https://github.com/privacy-scaling-explorations/maci/commit/4d0f74b8480cd2d20e835d43b33c2aab6578d194))
|
|
632
|
+
* **maci:** updated docs after review ([fd0da34](https://github.com/privacy-scaling-explorations/maci/commit/fd0da346406a5c2c6648bbff1b081863039bcf2b)), closes [#531](https://github.com/privacy-scaling-explorations/maci/issues/531) [#556](https://github.com/privacy-scaling-explorations/maci/issues/556)
|
|
633
|
+
* **poll:** unify pollId type ([21d01ef](https://github.com/privacy-scaling-explorations/maci/commit/21d01efc565df74ea8b71dfeeead60be5a07db56))
|
|
634
|
+
* **publishing:** remove bash script for empty ballot roots contract ([025287c](https://github.com/privacy-scaling-explorations/maci/commit/025287c778547e0acb1582532f3412e022cca6fa))
|
|
635
|
+
* **release:** publish 1.1.2 ([10b3a85](https://github.com/privacy-scaling-explorations/maci/commit/10b3a85cc9b53c0fc1ccdf54221a48ec8d6efe0d))
|
|
636
|
+
* remove `gitHead` field from package.json ([d38ba71](https://github.com/privacy-scaling-explorations/maci/commit/d38ba71301469f350b3d80eab5bf94e779dda9cc))
|
|
637
|
+
* run prettier ([d09cd0e](https://github.com/privacy-scaling-explorations/maci/commit/d09cd0e01ac747245307ceec5343d9ed30d7a6f0))
|
|
638
|
+
* run prettier fix after bumping version ([e1f85a5](https://github.com/privacy-scaling-explorations/maci/commit/e1f85a53bbb72696b6998af5406748fd18df4701))
|
|
639
|
+
* **topup:** implement test cases for the topup feature ([7775a8b](https://github.com/privacy-scaling-explorations/maci/commit/7775a8b3295f29b098446d3e78a4200c03c847dd))
|
|
640
|
+
* update circomlib dependency format in package.json ([f0e8d19](https://github.com/privacy-scaling-explorations/maci/commit/f0e8d1978db6a0771d876b828843bc763e397220))
|
|
641
|
+
* update README with build guide for MACI circuits ([77fdb63](https://github.com/privacy-scaling-explorations/maci/commit/77fdb63c9993612117505bc8319555321bf8b9d0))
|
|
642
|
+
|
|
643
|
+
|
|
644
|
+
|
|
645
|
+
## [1.1.2](https://github.com/gurrpi/maci/compare/v1.1.1...v1.1.2) (2023-01-19)
|
|
646
|
+
|
|
647
|
+
### Code Refactoring
|
|
648
|
+
|
|
649
|
+
- **remove messageaqfactory:** remove messageAqFactory; remove redundant pollFactory dependency ([dcd1c67](https://github.com/gurrpi/maci/commit/dcd1c67f14f0cb92979d13e7887373ff6e354a6f))
|
|
650
|
+
|
|
651
|
+
### Miscellaneous
|
|
652
|
+
|
|
653
|
+
- add a badges to README.md ([888524b](https://github.com/gurrpi/maci/commit/888524baae82d56edbf0c794e587de174906c34c))
|
|
654
|
+
- **changelog:** add CHANGELOG of v1.1.1 ([ea1f0ca](https://github.com/gurrpi/maci/commit/ea1f0ca93f1618df0ba046f1f01b2abad57e0ee1))
|
|
655
|
+
- **maci:** added README for the circuit package and fixed typo in contract's README ([4d0f74b](https://github.com/gurrpi/maci/commit/4d0f74b8480cd2d20e835d43b33c2aab6578d194))
|
|
656
|
+
- **maci:** updated docs after review ([fd0da34](https://github.com/gurrpi/maci/commit/fd0da346406a5c2c6648bbff1b081863039bcf2b)), closes [#531](https://github.com/gurrpi/maci/issues/531) [#556](https://github.com/gurrpi/maci/issues/556)
|
|
657
|
+
|
|
658
|
+
## [1.1.1](https://github.com/gurrpi/maci/compare/v1.1.0...v1.1.1) (2022-12-03)
|
|
659
|
+
|
|
660
|
+
### Bug Fixes
|
|
661
|
+
|
|
662
|
+
- **core/ts/macistate.ts:** fix nothing_up_to_my_sleeve bug in MaciState.ts as well as unit tests ([3d2b21f](https://github.com/gurrpi/maci/commit/3d2b21f185c285542b92512a871b0886a3fedc83))
|
|
663
|
+
- **float.circom:** add a\*b overflow check ([c9a24ba](https://github.com/gurrpi/maci/commit/c9a24bac757568d1d46ec0d876d67bdc82f770ba))
|
|
664
|
+
- **float.circom:** rewrite float.circom ([efd4617](https://github.com/gurrpi/maci/commit/efd4617724e956d2566062c6fe882e1d45cba7c4))
|
|
665
|
+
- **maci:** reverted a fix and fixed test suits ([8300cc5](https://github.com/gurrpi/maci/commit/8300cc548e954a80ab6fb39ab9d559c999e07c10))
|
|
666
|
+
- **maci:** upgraded minor version and fixed bug in testnet deployment ([5ef5ed8](https://github.com/gurrpi/maci/commit/5ef5ed842360277ac823c6919e171d0c51ff5702)), closes [#551](https://github.com/gurrpi/maci/issues/551) [#552](https://github.com/gurrpi/maci/issues/552)
|
|
667
|
+
- **maci:** upgraded snarkjs and other dependencies ([0ce643a](https://github.com/gurrpi/maci/commit/0ce643a18704c1a2d9245e8e85032874a11f004e))
|
|
668
|
+
- **processmessages.circom:** data are not fully verified during state update ([6df6a40](https://github.com/gurrpi/maci/commit/6df6a4054da926b07f35c5befab4f1f8af33dcc6))
|
|
669
|
+
- **topupcredit.sol, subsidy.circom:** add comments for upper bound of constants ([c8eb37a](https://github.com/gurrpi/maci/commit/c8eb37ad593ee671652f11458909df2a95db3581))
|
|
670
|
+
|
|
671
|
+
### Reverts
|
|
672
|
+
|
|
673
|
+
- **circuits:** revert snarkjs upgrade ([b045893](https://github.com/gurrpi/maci/commit/b045893e18f105ce2019ab9d010aa57ef896adc8))
|